spec/dummy/log/test.log in openstax_accounts-7.13.0 vs spec/dummy/log/test.log in openstax_accounts-7.13.1

- old
+ new

@@ -162647,5 +162647,19595 @@ OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1810711888, -437134589) Ownership Load (0.4ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (19, 20) OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1810711888, -437134589) Ownership Load (0.3ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (19, 20)  (0.2ms) ROLLBACK +  (392.0ms) DROP DATABASE IF EXISTS "ox_tutor_test" +  (576.4ms) CREATE DATABASE "ox_tutor_test" ENCODING = 'utf8' + SQL (12.0ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" + SQL (44.1ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" + SQL (25.5ms) CREATE EXTENSION IF NOT EXISTS "citext" +  (8.4ms) CREATE TABLE "openstax_accounts_accounts" ("id" serial primary key, "openstax_uid" integer, "username" character varying, "access_token" character varying, "first_name" character varying, "last_name" character varying, "full_name" character varying, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "faculty_status" integer DEFAULT 0 NOT NULL, "salesforce_contact_id" character varying, "uuid" uuid DEFAULT gen_random_uuid(), "role" integer DEFAULT 0 NOT NULL, "support_identifier" citext, "is_test" boolean, "school_type" integer DEFAULT 0 NOT NULL) +  (1.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" USING btree ("access_token") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_faculty_status" ON "openstax_accounts_accounts" USING btree ("faculty_status") +  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" USING btree ("first_name") +  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" USING btree ("full_name") +  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" USING btree ("last_name") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" USING btree ("openstax_uid") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_role" ON "openstax_accounts_accounts" USING btree ("role") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_salesforce_contact_id" ON "openstax_accounts_accounts" USING btree ("salesforce_contact_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_school_type" ON "openstax_accounts_accounts" USING btree ("school_type") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_support_identifier" ON "openstax_accounts_accounts" USING btree ("support_identifier") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" USING btree ("username") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_uuid" ON "openstax_accounts_accounts" USING btree ("uuid") +  (2.5ms) CREATE TABLE "openstax_accounts_group_members" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.2ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" USING btree ("group_id", "user_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" USING btree ("user_id") +  (1.9ms) CREATE TABLE "openstax_accounts_group_nestings" ("id" serial primary key, "member_group_id" integer NOT NULL, "container_group_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.0ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" USING btree ("container_group_id") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" USING btree ("member_group_id") +  (2.0ms) CREATE TABLE "openstax_accounts_group_owners" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" USING btree ("group_id", "user_id") +  (1.3ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" USING btree ("user_id") +  (3.3ms) CREATE TABLE "openstax_accounts_groups" ("id" serial primary key, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" character varying, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.1ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" USING btree ("is_public") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" USING btree ("openstax_uid") +  (2.6ms) CREATE TABLE "ownerships" ("id" serial primary key, "owner_id" integer NOT NULL, "owner_type" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.2ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" USING btree ("owner_id", "owner_type") +  (1.7ms) CREATE TABLE "users" ("id" serial primary key, "account_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" USING btree ("account_id") +  (13.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)  +  (11.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.6ms) SELECT version FROM "schema_migrations" +  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('1001') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('1000') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('4') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('11') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('2') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('7') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('13') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('8') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('1') +  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('10') +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('3') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('6') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0') +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('9') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('12') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('5') + ActiveRecord::SchemaMigration Load (6.7ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) BEGIN +  (6.5ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (1.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 1]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "a82e54"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a82e54' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74c9d19c-3693-4f9f-8095-546ccb279501' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce79ee2b' LIMIT 1 + SQL (9.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "full_name", "salesforce_contact_id", "faculty_status", "role", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING "id" [["openstax_uid", 1], ["username", "a82e54"], ["first_name", "Bob"], ["last_name", "Smith"], ["full_name", "Bob Smith"], ["salesforce_contact_id", "b0b"], ["faculty_status", 3], ["role", 2], ["school_type", 2], ["uuid", "74c9d19c-3693-4f9f-8095-546ccb279501"], ["support_identifier", "cs_ce79ee2b"], ["created_at", "2018-10-16 17:21:37.667382"], ["updated_at", "2018-10-16 17:21:37.667382"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.4ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 18]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "70907a"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 18 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '70907a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c5c819f-d9d9-46e7-98b9-d737fc0f13fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f3b305b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", 18], ["username", "70907a"], ["role", 2], ["uuid", "8c5c819f-d9d9-46e7-98b9-d737fc0f13fe"], ["support_identifier", "cs_6f3b305b"], ["created_at", "2018-10-16 17:21:37.701646"], ["updated_at", "2018-10-16 17:21:37.701646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 19]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 19 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1ebaa86-b8ef-4100-9213-a16ca741d47f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_edc0b069' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 19], ["username", "alice"], ["uuid", "c1ebaa86-b8ef-4100-9213-a16ca741d47f"], ["support_identifier", "cs_edc0b069"], ["created_at", "2018-10-16 17:21:37.713390"], ["updated_at", "2018-10-16 17:21:37.713390"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 20]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice2"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 20 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76c36a75-5b5a-4dbd-8800-5c1916c6f1f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bccb058a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 20], ["username", "alice2"], ["uuid", "76c36a75-5b5a-4dbd-8800-5c1916c6f1f2"], ["support_identifier", "cs_bccb058a"], ["created_at", "2018-10-16 17:21:37.722378"], ["updated_at", "2018-10-16 17:21:37.722378"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce7e730e-4168-438b-a743-68b68fc6a7ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df423204' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "30151734291a5d93f200014be95b81a1"], ["uuid", "ce7e730e-4168-438b-a743-68b68fc6a7ad"], ["support_identifier", "cs_df423204"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.734202"], ["updated_at", "2018-10-16 17:21:37.734202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7e6fc066-0353-492b-88c0-3f11891243da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33daa0b5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "f9a84b77e8f9b9146f7eb7721b87e348"], ["uuid", "7e6fc066-0353-492b-88c0-3f11891243da"], ["support_identifier", "cs_33daa0b5"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.748726"], ["updated_at", "2018-10-16 17:21:37.748726"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 6]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://test.host/ +Completed 302 Found in 10ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ddea8904-a5e4-4adf-a674-1b4320225f6e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a732238f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "64ecb08cea4d70b8e6b404003fa14037"], ["uuid", "ddea8904-a5e4-4adf-a674-1b4320225f6e"], ["support_identifier", "cs_a732238f"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.779574"], ["updated_at", "2018-10-16 17:21:37.779574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML +Redirected to http://test.host/accounts/dev/accounts +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd57c9113-9379-4c85-925b-0d2928012548' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_66c656c3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "157caa44081482bf73eb75d9cac96c6f"], ["uuid", "d57c9113-9379-4c85-925b-0d2928012548"], ["support_identifier", "cs_66c656c3"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.791209"], ["updated_at", "2018-10-16 17:21:37.791209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"http://jimmy"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7adebc5-14d1-4808-9e0d-914e8b73e4bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5434387a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "ba6209e0072bedfa764a40d1443fa793"], ["uuid", "b7adebc5-14d1-4808-9e0d-914e8b73e4bf"], ["support_identifier", "cs_5434387a"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.802084"], ["updated_at", "2018-10-16 17:21:37.802084"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c8d9d6f-de21-4ac4-9a4e-32044fc243ac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd9f585a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "56df2f342756600123d681a2ac47906b"], ["uuid", "4c8d9d6f-de21-4ac4-9a4e-32044fc243ac"], ["support_identifier", "cs_fd9f585a"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.807244"], ["updated_at", "2018-10-16 17:21:37.807244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '56c69db9-9541-4817-9be9-a4176af9d5ae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2176603f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "e57b1ed1dc6f84e4a4f5f1144ef1b1ca"], ["uuid", "56c69db9-9541-4817-9be9-a4176af9d5ae"], ["support_identifier", "cs_2176603f"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:37.818041"], ["updated_at", "2018-10-16 17:21:37.818041"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 11]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://localhost:56124/logout +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2071607797 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89f9ac03-d38e-4541-bd7e-ee6611cb880b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1f213b66' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2071607797], ["username", "jstrav"], ["access_token", "035cb46a530bd289db289e7c0d3ad430"], ["uuid", "89f9ac03-d38e-4541-bd7e-ee6611cb880b"], ["support_identifier", "cs_1f213b66"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.828072"], ["updated_at", "2018-10-16 17:21:37.828072"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1198871567 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c85e5d2-3860-4d2e-bbb9-6411aa00de56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8d6c367' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1198871567], ["username", "mary"], ["access_token", "66049944dd2ea3c887013fe70c86dd83"], ["uuid", "5c85e5d2-3860-4d2e-bbb9-6411aa00de56"], ["support_identifier", "cs_f8d6c367"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.832560"], ["updated_at", "2018-10-16 17:21:37.832560"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1885718767 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '81cf4c29-212a-42a8-93f9-c3c2ac487881' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cd7e920' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1885718767], ["username", "jstead"], ["access_token", "c514e8df3ae80247fa86581b50d103d0"], ["uuid", "81cf4c29-212a-42a8-93f9-c3c2ac487881"], ["support_identifier", "cs_3cd7e920"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.836897"], ["updated_at", "2018-10-16 17:21:37.836897"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1809496420 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fcffc70f-0e07-4fb7-b262-da262cffffb0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f090753' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1809496420], ["username", "bigbear"], ["access_token", "aae96e7ab9c9548381b7586b358d9c0c"], ["uuid", "fcffc70f-0e07-4fb7-b262-da262cffffb0"], ["support_identifier", "cs_9f090753"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.841113"], ["updated_at", "2018-10-16 17:21:37.841113"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.6ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1885718767) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1885718767) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1208999079 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4d3d3e07-ceaa-4ba3-9971-c78c719f4cd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1f2ba04' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1208999079], ["username", "jstrav"], ["access_token", "07eb4e840801f5cf9d95e1b38c29c343"], ["uuid", "4d3d3e07-ceaa-4ba3-9971-c78c719f4cd8"], ["support_identifier", "cs_b1f2ba04"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.853073"], ["updated_at", "2018-10-16 17:21:37.853073"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -315951026 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '866b0f92-eb6c-4394-9282-58d0d085fa22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d08bedb8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -315951026], ["username", "mary"], ["access_token", "a9b045f44639b7d10a54c993ba3a4621"], ["uuid", "866b0f92-eb6c-4394-9282-58d0d085fa22"], ["support_identifier", "cs_d08bedb8"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.857494"], ["updated_at", "2018-10-16 17:21:37.857494"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2077700878 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a5453206-6266-4d42-9ef7-14cb7d9f0f6c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b10c662f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2077700878], ["username", "jstead"], ["access_token", "ffdec5b2d0656b9cb764e1ac78753f4c"], ["uuid", "a5453206-6266-4d42-9ef7-14cb7d9f0f6c"], ["support_identifier", "cs_b10c662f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.862291"], ["updated_at", "2018-10-16 17:21:37.862291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1114118953 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b437c4bc-26c0-4b23-860f-b0b1e6845373' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_17d1e428' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1114118953], ["username", "bigbear"], ["access_token", "78e9cb57c84ae71b15e30e595b586cb8"], ["uuid", "b437c4bc-26c0-4b23-860f-b0b1e6845373"], ["support_identifier", "cs_17d1e428"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.866477"], ["updated_at", "2018-10-16 17:21:37.866477"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1319375129 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2bf3bc53-bb0a-4bfc-bbf0-9f16873393b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7fea3f7a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1319375129], ["username", "jstrav"], ["access_token", "9fbb4331efdd5effbe333c6a92741500"], ["uuid", "2bf3bc53-bb0a-4bfc-bbf0-9f16873393b5"], ["support_identifier", "cs_7fea3f7a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.873791"], ["updated_at", "2018-10-16 17:21:37.873791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1405792665 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7a71af8-2632-4897-8eef-38d8c7dae97b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c8f735e3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1405792665], ["username", "mary"], ["access_token", "f1b24370f07ff8d402028a7a75e4ffec"], ["uuid", "c7a71af8-2632-4897-8eef-38d8c7dae97b"], ["support_identifier", "cs_c8f735e3"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.878414"], ["updated_at", "2018-10-16 17:21:37.878414"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2003992492 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'adace70a-1ad5-41cc-b966-58492260cdb1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d35bcdc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2003992492], ["username", "jstead"], ["access_token", "42dfe5c44af8e6e7c4b38d26b454ca16"], ["uuid", "adace70a-1ad5-41cc-b966-58492260cdb1"], ["support_identifier", "cs_7d35bcdc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.882565"], ["updated_at", "2018-10-16 17:21:37.882565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -346168787 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '19e8e8db-cadb-47ab-89b5-2b89ce9c2714' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0a2067cc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -346168787], ["username", "bigbear"], ["access_token", "958403eb5307605ee5b2a9036bb5e67a"], ["uuid", "19e8e8db-cadb-47ab-89b5-2b89ce9c2714"], ["support_identifier", "cs_0a2067cc"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.886886"], ["updated_at", "2018-10-16 17:21:37.886886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (1.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.2ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -396081485 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '156565a4-c50c-4b1f-a2cb-f5efaab22edf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6583083b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -396081485], ["username", "jstrav"], ["access_token", "5b9605c21551bffd3a507d7d8118e381"], ["uuid", "156565a4-c50c-4b1f-a2cb-f5efaab22edf"], ["support_identifier", "cs_6583083b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.899167"], ["updated_at", "2018-10-16 17:21:37.899167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1971846837 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '49a25f77-bee7-47b4-ae8d-92d3df8da006' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7cc8f078' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1971846837], ["username", "mary"], ["access_token", "2962d9b576dd631c708d3b700ca5dd96"], ["uuid", "49a25f77-bee7-47b4-ae8d-92d3df8da006"], ["support_identifier", "cs_7cc8f078"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.903716"], ["updated_at", "2018-10-16 17:21:37.903716"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864347289 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '149abd95-4eef-4831-aebf-5df5dc8de253' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ef1c8879' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1864347289], ["username", "jstead"], ["access_token", "a4127b65718985175f7e5c5a7753a0a9"], ["uuid", "149abd95-4eef-4831-aebf-5df5dc8de253"], ["support_identifier", "cs_ef1c8879"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.907971"], ["updated_at", "2018-10-16 17:21:37.907971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2116606390 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09026093-d5d7-42d6-88d2-abc4a7b50a85' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_10235148' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2116606390], ["username", "bigbear"], ["access_token", "3103a5b6caf67200b61537bc4e39b02d"], ["uuid", "09026093-d5d7-42d6-88d2-abc4a7b50a85"], ["support_identifier", "cs_10235148"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.912705"], ["updated_at", "2018-10-16 17:21:37.912705"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1162904393 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdb591fb-7174-4f5a-8596-ce709d82fffa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fb26b169' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1162904393], ["username", "jstrav"], ["access_token", "4f8a2ef8dbaeba6d2504ad6c833abaf7"], ["uuid", "fdb591fb-7174-4f5a-8596-ce709d82fffa"], ["support_identifier", "cs_fb26b169"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.920223"], ["updated_at", "2018-10-16 17:21:37.920223"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -501698192 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13a49363-2da8-4a51-ad6e-dfd7aa410a5d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4fd451d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -501698192], ["username", "mary"], ["access_token", "c13f96396204ffeb570034cd48f68fa8"], ["uuid", "13a49363-2da8-4a51-ad6e-dfd7aa410a5d"], ["support_identifier", "cs_b4fd451d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.924454"], ["updated_at", "2018-10-16 17:21:37.924454"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -465124016 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8506b666-4a42-47f6-80dd-f435edf83c28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf82e6dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -465124016], ["username", "jstead"], ["access_token", "a8922866f031e30c156d17ac63149037"], ["uuid", "8506b666-4a42-47f6-80dd-f435edf83c28"], ["support_identifier", "cs_bf82e6dc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.929318"], ["updated_at", "2018-10-16 17:21:37.929318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -231635458 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9cd57ae7-e9d1-4c0e-b34b-d34d7c2022c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1eb5c0f2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -231635458], ["username", "bigbear"], ["access_token", "555ebdf063449974b28eb69652b3b439"], ["uuid", "9cd57ae7-e9d1-4c0e-b34b-d34d7c2022c7"], ["support_identifier", "cs_1eb5c0f2"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.933501"], ["updated_at", "2018-10-16 17:21:37.933501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -949966436 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c534553-8991-4936-8f97-bda37ca7cddb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ffb9baa0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -949966436], ["username", "jstrav"], ["access_token", "75a1fbfd22d6d1e54b84ba851e6bc82d"], ["uuid", "2c534553-8991-4936-8f97-bda37ca7cddb"], ["support_identifier", "cs_ffb9baa0"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.940482"], ["updated_at", "2018-10-16 17:21:37.940482"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -593310843 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '605f69ab-f037-44cc-8e77-3e31cffa8cc6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cbf39642' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -593310843], ["username", "mary"], ["access_token", "f4d8467f94b40f0d0c476e726273a737"], ["uuid", "605f69ab-f037-44cc-8e77-3e31cffa8cc6"], ["support_identifier", "cs_cbf39642"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.948068"], ["updated_at", "2018-10-16 17:21:37.948068"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -631298718 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f8e8f60-d2fe-47c8-a054-e01c781ae0af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c7687684' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -631298718], ["username", "jstead"], ["access_token", "e6bcaf943ce0a6166ff092972dd1244d"], ["uuid", "0f8e8f60-d2fe-47c8-a054-e01c781ae0af"], ["support_identifier", "cs_c7687684"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.952814"], ["updated_at", "2018-10-16 17:21:37.952814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1860988176 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c35fdeeb-ce7d-4a33-aeea-2d05937e07c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4c85fc4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1860988176], ["username", "bigbear"], ["access_token", "35086b4b2400dbf0570b29573a76d1bf"], ["uuid", "c35fdeeb-ce7d-4a33-aeea-2d05937e07c6"], ["support_identifier", "cs_b4c85fc4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.957392"], ["updated_at", "2018-10-16 17:21:37.957392"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1312497751 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2fea8343-c282-4540-9a45-b868784d1689' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bcace7dd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1312497751], ["username", "jstrav"], ["access_token", "514bb2da4a98008e7bd056e9d44186b0"], ["uuid", "2fea8343-c282-4540-9a45-b868784d1689"], ["support_identifier", "cs_bcace7dd"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.969117"], ["updated_at", "2018-10-16 17:21:37.969117"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -930746376 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd5d545c2-47ec-438b-a5a5-bcd71a93321f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_43ba907c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -930746376], ["username", "mary"], ["access_token", "41058a1e6e57ee0fb818616505cf1173"], ["uuid", "d5d545c2-47ec-438b-a5a5-bcd71a93321f"], ["support_identifier", "cs_43ba907c"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.973420"], ["updated_at", "2018-10-16 17:21:37.973420"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1520277945 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ec48b46-d6eb-43f9-9f5a-e6820a9e1135' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2a3a473' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1520277945], ["username", "jstead"], ["access_token", "f63b80d961128d14d6610d3ddcdf964a"], ["uuid", "2ec48b46-d6eb-43f9-9f5a-e6820a9e1135"], ["support_identifier", "cs_c2a3a473"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.978121"], ["updated_at", "2018-10-16 17:21:37.978121"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2054280701 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b9fab1a-5d27-4e4b-93b7-03c5494c799e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a64c561e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2054280701], ["username", "bigbear"], ["access_token", "ed15a88c7603730a98eb5ab03498f4d2"], ["uuid", "7b9fab1a-5d27-4e4b-93b7-03c5494c799e"], ["support_identifier", "cs_a64c561e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:37.982359"], ["updated_at", "2018-10-16 17:21:37.982359"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1813018029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd244419-7a36-470e-b360-77231e844268' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c25dcda' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1813018029], ["username", "jstrav"], ["access_token", "85304cd4e7783357fbe9090567b41a4c"], ["uuid", "bd244419-7a36-470e-b360-77231e844268"], ["support_identifier", "cs_7c25dcda"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:37.989719"], ["updated_at", "2018-10-16 17:21:37.989719"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2003541236 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4971898b-3c4a-4b4b-a58b-014f405bb91a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56ff344c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2003541236], ["username", "mary"], ["access_token", "e73c15317ffabe3164dbbf9d117c8a45"], ["uuid", "4971898b-3c4a-4b4b-a58b-014f405bb91a"], ["support_identifier", "cs_56ff344c"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:37.994730"], ["updated_at", "2018-10-16 17:21:37.994730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1429352789 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '654c152b-abf6-463d-b27f-49522b1dee75' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d57927d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1429352789], ["username", "jstead"], ["access_token", "ff0aa70f22bf46f20dccff4cf5e8b33c"], ["uuid", "654c152b-abf6-463d-b27f-49522b1dee75"], ["support_identifier", "cs_3d57927d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:37.998887"], ["updated_at", "2018-10-16 17:21:37.998887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1971115106 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '268e11b1-1941-4a55-9c89-0e60444b99e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7ca6609f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1971115106], ["username", "bigbear"], ["access_token", "1181364ec52d4ccfb76c5e5999ac86e8"], ["uuid", "268e11b1-1941-4a55-9c89-0e60444b99e7"], ["support_identifier", "cs_7ca6609f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.003018"], ["updated_at", "2018-10-16 17:21:38.003018"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846592639 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8abd2c7-a85b-4239-8b19-b73e0e855186' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_291b3c74' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -846592639], ["username", "jstrav"], ["access_token", "7583fd375d301a3d59c9b3c725491a6b"], ["uuid", "f8abd2c7-a85b-4239-8b19-b73e0e855186"], ["support_identifier", "cs_291b3c74"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.011880"], ["updated_at", "2018-10-16 17:21:38.011880"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -315087491 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '01339a52-b873-4a86-a294-384a590e5459' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5757726f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -315087491], ["username", "mary"], ["access_token", "fc12b690301a7dcb62cc8b6b327bdc73"], ["uuid", "01339a52-b873-4a86-a294-384a590e5459"], ["support_identifier", "cs_5757726f"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.016389"], ["updated_at", "2018-10-16 17:21:38.016389"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -374700934 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '337e50f5-2a9a-44b4-b96f-901ca9c89bd7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2547066a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -374700934], ["username", "jstead"], ["access_token", "c53ce4bdcf2d5d0ce89ab55e56e40a1a"], ["uuid", "337e50f5-2a9a-44b4-b96f-901ca9c89bd7"], ["support_identifier", "cs_2547066a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.020773"], ["updated_at", "2018-10-16 17:21:38.020773"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -926815663 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54cae60d-b087-4d79-aad3-f4a8ba4bc7e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a58eff76' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -926815663], ["username", "bigbear"], ["access_token", "818f0d3c7ece39b7c61b4d7e9f927b6c"], ["uuid", "54cae60d-b087-4d79-aad3-f4a8ba4bc7e6"], ["support_identifier", "cs_a58eff76"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.026224"], ["updated_at", "2018-10-16 17:21:38.026224"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474181029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '43d31b30-0ac9-4c2e-b15b-73cba2a5a73e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1ce825de' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -474181029], ["username", "jstrav"], ["access_token", "d9dc6afb2e13ff22721e675d13718c18"], ["uuid", "43d31b30-0ac9-4c2e-b15b-73cba2a5a73e"], ["support_identifier", "cs_1ce825de"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.034364"], ["updated_at", "2018-10-16 17:21:38.034364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1867987561 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5eb234b7-d394-469d-8443-cb2de45bfa18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71bcc221' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1867987561], ["username", "mary"], ["access_token", "3e43e099508a0197c0df9f90b4021031"], ["uuid", "5eb234b7-d394-469d-8443-cb2de45bfa18"], ["support_identifier", "cs_71bcc221"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.038949"], ["updated_at", "2018-10-16 17:21:38.038949"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1017179370 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9034fdb6-c013-4a1c-af0f-649c22cdf193' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7f7be5da' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1017179370], ["username", "jstead"], ["access_token", "29fe1ff5f8b2a363d3d033afd3ba1375"], ["uuid", "9034fdb6-c013-4a1c-af0f-649c22cdf193"], ["support_identifier", "cs_7f7be5da"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.043708"], ["updated_at", "2018-10-16 17:21:38.043708"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -638163449 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4c7eea3-d305-4a59-b0c0-48e1a67b34bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f21d42c2' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -638163449], ["username", "bigbear"], ["access_token", "f8dec55ebfe62c68703e4c505f34325f"], ["uuid", "e4c7eea3-d305-4a59-b0c0-48e1a67b34bf"], ["support_identifier", "cs_f21d42c2"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.048314"], ["updated_at", "2018-10-16 17:21:38.048314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1732668818 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1cc186b3-345b-477f-bbd1-ce595efff38b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8641b006' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1732668818], ["username", "jstrav"], ["access_token", "b64f4e7a9ffa619b8ae0a3b42f9eb361"], ["uuid", "1cc186b3-345b-477f-bbd1-ce595efff38b"], ["support_identifier", "cs_8641b006"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.056974"], ["updated_at", "2018-10-16 17:21:38.056974"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1080452133 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd97cb63-90fe-4f00-9bfd-e1a9d441da60' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9175bc02' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1080452133], ["username", "mary"], ["access_token", "f070c020aab32a9507d8481e7c125fb5"], ["uuid", "fd97cb63-90fe-4f00-9bfd-e1a9d441da60"], ["support_identifier", "cs_9175bc02"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.061936"], ["updated_at", "2018-10-16 17:21:38.061936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1716978976 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ba257b5-d7fd-4d77-8d59-702b5e741a1b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_62ced35d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1716978976], ["username", "jstead"], ["access_token", "ee87868bab8371a183e38b850cf40e3b"], ["uuid", "3ba257b5-d7fd-4d77-8d59-702b5e741a1b"], ["support_identifier", "cs_62ced35d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.066922"], ["updated_at", "2018-10-16 17:21:38.066922"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083697915 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b0f0dd22-d21f-4d04-bc1b-020fb3521d04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5cff1d26' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1083697915], ["username", "bigbear"], ["access_token", "dbded9ef66f5edbaa8a3dc82c84e0aa7"], ["uuid", "b0f0dd22-d21f-4d04-bc1b-020fb3521d04"], ["support_identifier", "cs_5cff1d26"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.072325"], ["updated_at", "2018-10-16 17:21:38.072325"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '3ba257b5-d7fd-4d77-8d59-702b5e741a1b') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '3ba257b5-d7fd-4d77-8d59-702b5e741a1b') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1164607192 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '667d10a0-57c3-46c9-ae53-29d9ce18cb69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf850b17' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1164607192], ["username", "jstrav"], ["access_token", "763c116e1a888c5f6005e54d8245476a"], ["uuid", "667d10a0-57c3-46c9-ae53-29d9ce18cb69"], ["support_identifier", "cs_bf850b17"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.080743"], ["updated_at", "2018-10-16 17:21:38.080743"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -294202166 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7f3344cb-9b9c-402c-969a-58192c26088b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3a1a7e60' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -294202166], ["username", "mary"], ["access_token", "f926c0e25edb08b48ddefc7cf9603043"], ["uuid", "7f3344cb-9b9c-402c-969a-58192c26088b"], ["support_identifier", "cs_3a1a7e60"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.085217"], ["updated_at", "2018-10-16 17:21:38.085217"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846250537 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7403ce1-f2be-4c19-b5bf-95fd9a380f6b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cdbdd01' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -846250537], ["username", "jstead"], ["access_token", "6aaf18d748592b96c2beb0f24b7e8aa7"], ["uuid", "b7403ce1-f2be-4c19-b5bf-95fd9a380f6b"], ["support_identifier", "cs_3cdbdd01"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.089914"], ["updated_at", "2018-10-16 17:21:38.089914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -546862984 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89329f84-148a-421f-8b73-79532048e5b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_94aac52f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -546862984], ["username", "bigbear"], ["access_token", "46d08942430bd5beb6cb1eaa485d0be4"], ["uuid", "89329f84-148a-421f-8b73-79532048e5b6"], ["support_identifier", "cs_94aac52f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.095042"], ["updated_at", "2018-10-16 17:21:38.095042"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_3cdbdd01') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_3cdbdd01') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1407462634 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a56c7417-1aaa-4ec5-9444-83696e8a4b3b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd28c1b6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1407462634], ["username", "jstrav"], ["access_token", "3ec6e96fcb13d337e3bb84729bb74631"], ["uuid", "a56c7417-1aaa-4ec5-9444-83696e8a4b3b"], ["support_identifier", "cs_fd28c1b6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.103711"], ["updated_at", "2018-10-16 17:21:38.103711"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1571403218 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc2a9de9-a013-46fe-bdef-a93cce0a56e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b8fec6d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1571403218], ["username", "mary"], ["access_token", "485482535890fcd6cdefd2f623c9fcff"], ["uuid", "fc2a9de9-a013-46fe-bdef-a93cce0a56e5"], ["support_identifier", "cs_0b8fec6d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.108735"], ["updated_at", "2018-10-16 17:21:38.108735"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77119504 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb48e7a1-4d24-40ba-9efb-2b0fa5e2e875' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bd1f6b0b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -77119504], ["username", "jstead"], ["access_token", "91acfdbb8c0e8beb8a6e39811ecb9640"], ["uuid", "bb48e7a1-4d24-40ba-9efb-2b0fa5e2e875"], ["support_identifier", "cs_bd1f6b0b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.114405"], ["updated_at", "2018-10-16 17:21:38.114405"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -378298193 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74490877-521a-4e4e-a07e-49818b845717' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c647f8f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -378298193], ["username", "bigbear"], ["access_token", "de729e0912efac6f17728249b6c5dcd9"], ["uuid", "74490877-521a-4e4e-a07e-49818b845717"], ["support_identifier", "cs_c647f8f8"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.118870"], ["updated_at", "2018-10-16 17:21:38.118870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1779906220 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a03ae96b-b6e3-4af2-b8c3-60db6bf0eee8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e34029d0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1779906220], ["username", "jstrav"], ["access_token", "9356fcb65e121949b433b6ddc2e1717a"], ["uuid", "a03ae96b-b6e3-4af2-b8c3-60db6bf0eee8"], ["support_identifier", "cs_e34029d0"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.127443"], ["updated_at", "2018-10-16 17:21:38.127443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -387317340 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20335f0b-c0b9-4b4d-b3d1-65582b51e321' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_061e8fd7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -387317340], ["username", "mary"], ["access_token", "4710a78aec31904c11ff2d72953dcf59"], ["uuid", "20335f0b-c0b9-4b4d-b3d1-65582b51e321"], ["support_identifier", "cs_061e8fd7"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.132052"], ["updated_at", "2018-10-16 17:21:38.132052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -837802883 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '073d6422-a5cf-45b1-a742-9b700aed166d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aa637143' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -837802883], ["username", "jstead"], ["access_token", "2546e151c86689b0c5ec53160d325206"], ["uuid", "073d6422-a5cf-45b1-a742-9b700aed166d"], ["support_identifier", "cs_aa637143"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.136168"], ["updated_at", "2018-10-16 17:21:38.136168"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -760428918 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f2293744-7ed6-4b29-9a63-b28040292051' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0a8c7c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -760428918], ["username", "bigbear"], ["access_token", "48e575ec97b50b84e88b8584e3067108"], ["uuid", "f2293744-7ed6-4b29-9a63-b28040292051"], ["support_identifier", "cs_b0a8c7c8"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.140359"], ["updated_at", "2018-10-16 17:21:38.140359"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -779484692 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89cb5fa1-0cdd-49bd-8e12-51e6ad725bfb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b69c035' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -779484692], ["username", "foo_bb"], ["access_token", "88f48393d379fd8b7c445a7d6e3c405e"], ["uuid", "89cb5fa1-0cdd-49bd-8e12-51e6ad725bfb"], ["support_identifier", "cs_8b69c035"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 17:21:38.148756"], ["updated_at", "2018-10-16 17:21:38.148756"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1266414039 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a5c1c1e-000c-4466-8aaf-681a419e56fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18d10f02' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1266414039], ["username", "foo_bj"], ["access_token", "10fb475d815659c03d02ec5ec40d49a9"], ["uuid", "3a5c1c1e-000c-4466-8aaf-681a419e56fe"], ["support_identifier", "cs_18d10f02"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:21:38.153503"], ["updated_at", "2018-10-16 17:21:38.153503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -444491752 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7d546e1-cb5c-4ef9-bfea-02bd3a6c6398' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ba093820' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -444491752], ["username", "foo_tj"], ["access_token", "6983dedd78627f31e79129311dfa990a"], ["uuid", "f7d546e1-cb5c-4ef9-bfea-02bd3a6c6398"], ["support_identifier", "cs_ba093820"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:21:38.157657"], ["updated_at", "2018-10-16 17:21:38.157657"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886874742 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5eabeeb-0d07-4016-837a-9604c6fa7621' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b388a96f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -886874742], ["username", "jstrav"], ["access_token", "a0389ce3fb2026f588dbcc6f95eb8361"], ["uuid", "e5eabeeb-0d07-4016-837a-9604c6fa7621"], ["support_identifier", "cs_b388a96f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.168641"], ["updated_at", "2018-10-16 17:21:38.168641"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1994374065 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '622ca549-47f6-46d4-89ef-04605d700e26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e872b3b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1994374065], ["username", "mary"], ["access_token", "6f79ef4cfe83f6bec0c02c6d15a28e02"], ["uuid", "622ca549-47f6-46d4-89ef-04605d700e26"], ["support_identifier", "cs_1e872b3b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.172951"], ["updated_at", "2018-10-16 17:21:38.172951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2010735985 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f1af0ab7-e160-4b3c-8014-c5ab9e029ad9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99a56ca7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2010735985], ["username", "jstead"], ["access_token", "74a9990c4b418b3d3e53ed216f70458b"], ["uuid", "f1af0ab7-e160-4b3c-8014-c5ab9e029ad9"], ["support_identifier", "cs_99a56ca7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.177742"], ["updated_at", "2018-10-16 17:21:38.177742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1385642657 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '18283ad7-e18c-46d5-98ce-ab7e4a410e8e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d9bf3980' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1385642657], ["username", "bigbear"], ["access_token", "f031f450439c6797b432c67626b7d323"], ["uuid", "18283ad7-e18c-46d5-98ce-ab7e4a410e8e"], ["support_identifier", "cs_d9bf3980"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.182019"], ["updated_at", "2018-10-16 17:21:38.182019"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1935965376 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73221d78-c22d-4b27-bccc-e9c9247ff93a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a4eb280' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1935965376], ["username", "billy_00"], ["access_token", "b08d82501866b92ae5d9826dd7afc5cc"], ["uuid", "73221d78-c22d-4b27-bccc-e9c9247ff93a"], ["support_identifier", "cs_4a4eb280"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:38.186105"], ["updated_at", "2018-10-16 17:21:38.186105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1970797810 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdb1b1ed-ba1b-47f2-a664-1dd1b9e527da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56e7a9ca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1970797810], ["username", "billy_01"], ["access_token", "3bfa3cdc947b91cf833c2a621fb14070"], ["uuid", "fdb1b1ed-ba1b-47f2-a664-1dd1b9e527da"], ["support_identifier", "cs_56e7a9ca"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:38.190352"], ["updated_at", "2018-10-16 17:21:38.190352"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -593467691 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '605b55c9-4571-4cf9-b7fc-5de9baa5064e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f984aca5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -593467691], ["username", "billy_02"], ["access_token", "2a9c36937f96b166f79c224aa2d02c69"], ["uuid", "605b55c9-4571-4cf9-b7fc-5de9baa5064e"], ["support_identifier", "cs_f984aca5"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:38.197328"], ["updated_at", "2018-10-16 17:21:38.197328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -892066875 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '868c7b65-76f0-42ac-969d-ff2e1cc90432' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bfa79bf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -892066875], ["username", "billy_03"], ["access_token", "3ea11faa2f1f765f1015f93b053c3d7e"], ["uuid", "868c7b65-76f0-42ac-969d-ff2e1cc90432"], ["support_identifier", "cs_4bfa79bf"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:38.202353"], ["updated_at", "2018-10-16 17:21:38.202353"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1566087501 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf562dbc-f2d5-41fa-bcf1-a2babe56b178' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f37415f4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1566087501], ["username", "billy_04"], ["access_token", "811d31dc0f66a7ce702c17d3698ba334"], ["uuid", "bf562dbc-f2d5-41fa-bcf1-a2babe56b178"], ["support_identifier", "cs_f37415f4"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:38.206658"], ["updated_at", "2018-10-16 17:21:38.206658"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1212044819 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '237fa3ae-3641-404c-a28d-2f413a967d80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a4e168de' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1212044819], ["username", "billy_05"], ["access_token", "5db5f13dd90e5ec2a1a8212ac00e5844"], ["uuid", "237fa3ae-3641-404c-a28d-2f413a967d80"], ["support_identifier", "cs_a4e168de"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:38.211473"], ["updated_at", "2018-10-16 17:21:38.211473"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1969436362 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ea69420-09a6-43c9-987b-2fc6e8158938' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2e6d166d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1969436362], ["username", "billy_06"], ["access_token", "aa65ab443990557c34e9e9d22d7e7100"], ["uuid", "3ea69420-09a6-43c9-987b-2fc6e8158938"], ["support_identifier", "cs_2e6d166d"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:38.215837"], ["updated_at", "2018-10-16 17:21:38.215837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1712058292 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a2cf12c-e686-4f52-b821-5ab7d9568bb2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d4a2bb36' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1712058292], ["username", "billy_07"], ["access_token", "220a73f8afb1769417f8d03f58612280"], ["uuid", "6a2cf12c-e686-4f52-b821-5ab7d9568bb2"], ["support_identifier", "cs_d4a2bb36"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:38.220022"], ["updated_at", "2018-10-16 17:21:38.220022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -670879123 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f65e68b-3e78-4f66-89a4-4118a464d022' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d86fa1ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -670879123], ["username", "billy_08"], ["access_token", "3c1b108ed6e6fad361a9c79bcd744c50"], ["uuid", "9f65e68b-3e78-4f66-89a4-4118a464d022"], ["support_identifier", "cs_d86fa1ef"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:38.224323"], ["updated_at", "2018-10-16 17:21:38.224323"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -44065492 LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24fe1fa4-ff53-4e5e-b6cd-0ca0bf8685a5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6397e47b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -44065492], ["username", "billy_09"], ["access_token", "84b22c127788d38bf6d4e857a4ef9450"], ["uuid", "24fe1fa4-ff53-4e5e-b6cd-0ca0bf8685a5"], ["support_identifier", "cs_6397e47b"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:38.232588"], ["updated_at", "2018-10-16 17:21:38.232588"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1674057261 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f865faa9-af4a-4c82-9242-0930b37ff48a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc81394f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1674057261], ["username", "billy_10"], ["access_token", "2653a37f72f224dad83b24e5876645f8"], ["uuid", "f865faa9-af4a-4c82-9242-0930b37ff48a"], ["support_identifier", "cs_cc81394f"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:38.237577"], ["updated_at", "2018-10-16 17:21:38.237577"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -542280768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '02afa86c-e6c1-423c-95e3-0d771e846c65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7598978c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -542280768], ["username", "billy_11"], ["access_token", "29cae46418131f6179d44f404750f3f6"], ["uuid", "02afa86c-e6c1-423c-95e3-0d771e846c65"], ["support_identifier", "cs_7598978c"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:38.241644"], ["updated_at", "2018-10-16 17:21:38.241644"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -216729509 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1e12e33-e1f5-4a4e-ba29-2d31f96708b0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0fdfb9f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -216729509], ["username", "billy_12"], ["access_token", "6064fc3aa65d4f838a5a64fe625664ef"], ["uuid", "c1e12e33-e1f5-4a4e-ba29-2d31f96708b0"], ["support_identifier", "cs_b0fdfb9f"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:38.246507"], ["updated_at", "2018-10-16 17:21:38.246507"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -681233882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '56dee045-38fa-48b2-8ebd-66d6820d57da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3fc07dd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -681233882], ["username", "billy_13"], ["access_token", "8c69657fb5f7fd18999a97979706a513"], ["uuid", "56dee045-38fa-48b2-8ebd-66d6820d57da"], ["support_identifier", "cs_e3fc07dd"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:38.250608"], ["updated_at", "2018-10-16 17:21:38.250608"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1249190079 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '80fface8-dcd8-46a2-83e3-425706a62a1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_84227cbe' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1249190079], ["username", "billy_14"], ["access_token", "dd2a64807ee7189fb1c5a95848095704"], ["uuid", "80fface8-dcd8-46a2-83e3-425706a62a1e"], ["support_identifier", "cs_84227cbe"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:38.254842"], ["updated_at", "2018-10-16 17:21:38.254842"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1125464367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48e0c524-c94c-4edd-b74e-40548da19cdb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e818903' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1125464367], ["username", "billy_15"], ["access_token", "dc384f19cf7f84118bd8fb74d0160d6c"], ["uuid", "48e0c524-c94c-4edd-b74e-40548da19cdb"], ["support_identifier", "cs_7e818903"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:38.259123"], ["updated_at", "2018-10-16 17:21:38.259123"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -736279738 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6369c3d2-f595-47e7-9590-68004d9961e0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ecacf73' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -736279738], ["username", "billy_16"], ["access_token", "9aa35b356b5e6f5cbe3833eaca6c0e75"], ["uuid", "6369c3d2-f595-47e7-9590-68004d9961e0"], ["support_identifier", "cs_2ecacf73"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:38.266408"], ["updated_at", "2018-10-16 17:21:38.266408"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1467279211 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eca95188-8581-4a52-b1cc-dbbf8cb3a1ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_802766a2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1467279211], ["username", "billy_17"], ["access_token", "cc7b982e892aa5550805851b0b77f0cf"], ["uuid", "eca95188-8581-4a52-b1cc-dbbf8cb3a1ad"], ["support_identifier", "cs_802766a2"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:38.270551"], ["updated_at", "2018-10-16 17:21:38.270551"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -453410310 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3469c388-edcc-49aa-abc6-bcd7fd746259' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5762fae4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -453410310], ["username", "billy_18"], ["access_token", "5f6c3fa2364b6a7460c8e207eefb27ea"], ["uuid", "3469c388-edcc-49aa-abc6-bcd7fd746259"], ["support_identifier", "cs_5762fae4"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:38.274735"], ["updated_at", "2018-10-16 17:21:38.274735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309948081 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be6fa7a8-9a17-48b5-9fc8-722f866ea60f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0cbaf9e4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -309948081], ["username", "billy_19"], ["access_token", "4e61b32b3aa5c0e05748a190988f164a"], ["uuid", "be6fa7a8-9a17-48b5-9fc8-722f866ea60f"], ["support_identifier", "cs_0cbaf9e4"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:38.281884"], ["updated_at", "2018-10-16 17:21:38.281884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1067162684 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48de3a85-355f-4cb8-b5d3-91d1ad2e7d65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c48f060c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1067162684], ["username", "billy_20"], ["access_token", "3269bb54b808b419b454317776c6a325"], ["uuid", "48de3a85-355f-4cb8-b5d3-91d1ad2e7d65"], ["support_identifier", "cs_c48f060c"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:38.286412"], ["updated_at", "2018-10-16 17:21:38.286412"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -31643474 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3c4f2b63-9685-4263-830b-29fe6a87f727' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_11edf2ab' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -31643474], ["username", "billy_21"], ["access_token", "7036d22e371dcd7dcc9b3a443dd85e6e"], ["uuid", "3c4f2b63-9685-4263-830b-29fe6a87f727"], ["support_identifier", "cs_11edf2ab"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:38.290517"], ["updated_at", "2018-10-16 17:21:38.290517"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -840993250 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '043415f1-abb0-4de7-9e6b-24c3e52ad891' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ad1e7dda' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -840993250], ["username", "billy_22"], ["access_token", "7161ea3ab8d94cbe02b55b127adb26f8"], ["uuid", "043415f1-abb0-4de7-9e6b-24c3e52ad891"], ["support_identifier", "cs_ad1e7dda"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:38.295079"], ["updated_at", "2018-10-16 17:21:38.295079"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1734880389 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '232832ce-625a-439f-bbce-4bed157bc8b4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56be35a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1734880389], ["username", "billy_23"], ["access_token", "1ca43fff26adb8e5b865f9754b68bbe5"], ["uuid", "232832ce-625a-439f-bbce-4bed157bc8b4"], ["support_identifier", "cs_56be35a6"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:38.299315"], ["updated_at", "2018-10-16 17:21:38.299315"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1377724692 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '154a0daa-2c2d-4975-bcc3-d9f2f1776e67' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38d155cd' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1377724692], ["username", "billy_24"], ["access_token", "72b7b360c3ca61bacb048b2bcfeb0be5"], ["uuid", "154a0daa-2c2d-4975-bcc3-d9f2f1776e67"], ["support_identifier", "cs_38d155cd"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:38.303450"], ["updated_at", "2018-10-16 17:21:38.303450"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2083836387 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '86515ef9-8b7a-4422-bdf6-9619568578b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7346cd89' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2083836387], ["username", "billy_25"], ["access_token", "1115f5c5127b1ad9bff4b1793a652215"], ["uuid", "86515ef9-8b7a-4422-bdf6-9619568578b3"], ["support_identifier", "cs_7346cd89"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:38.307703"], ["updated_at", "2018-10-16 17:21:38.307703"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -477823745 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a01e154-a0d9-46b2-814c-1d5d61cfed3a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_673108de' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -477823745], ["username", "billy_26"], ["access_token", "6a0d09800714f025f7cabacb3715534e"], ["uuid", "1a01e154-a0d9-46b2-814c-1d5d61cfed3a"], ["support_identifier", "cs_673108de"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:38.315572"], ["updated_at", "2018-10-16 17:21:38.315572"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1481347824 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b989a5c8-c948-46b1-95a1-e6d8a8dffcda' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59a9399a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1481347824], ["username", "billy_27"], ["access_token", "6277b572a7f805657a4536df7c769626"], ["uuid", "b989a5c8-c948-46b1-95a1-e6d8a8dffcda"], ["support_identifier", "cs_59a9399a"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:38.319958"], ["updated_at", "2018-10-16 17:21:38.319958"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1669512763 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a04848d8-0535-4f6a-854b-72af3ab3e524' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8d29553' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1669512763], ["username", "billy_28"], ["access_token", "a02fd7c59f7ab0d6ad0c78d7f1155712"], ["uuid", "a04848d8-0535-4f6a-854b-72af3ab3e524"], ["support_identifier", "cs_e8d29553"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:38.323955"], ["updated_at", "2018-10-16 17:21:38.323955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -718828682 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9df8ef8a-c7eb-4ac2-b704-3d32ba82b718' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8c702a3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -718828682], ["username", "billy_29"], ["access_token", "fd06c105c5bf4b2a1e77fcac14d86154"], ["uuid", "9df8ef8a-c7eb-4ac2-b704-3d32ba82b718"], ["support_identifier", "cs_e8c702a3"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:38.328599"], ["updated_at", "2018-10-16 17:21:38.328599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -52152512 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dd6be4ee-3f93-4175-b61a-0984a2150fd3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1d6e5b5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -52152512], ["username", "billy_30"], ["access_token", "040681007d300df7744f3604a192324d"], ["uuid", "dd6be4ee-3f93-4175-b61a-0984a2150fd3"], ["support_identifier", "cs_c1d6e5b5"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:38.332791"], ["updated_at", "2018-10-16 17:21:38.332791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -49076239 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0cd69686-3545-4241-88dd-747d16569f1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cf1447ba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -49076239], ["username", "billy_31"], ["access_token", "e124d6fa2f287e0b826ca128f4cf8307"], ["uuid", "0cd69686-3545-4241-88dd-747d16569f1e"], ["support_identifier", "cs_cf1447ba"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:38.336985"], ["updated_at", "2018-10-16 17:21:38.336985"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -594734245 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '882a532a-bb5d-42ea-a11b-1ff3b1b9bce3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a03ff268' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -594734245], ["username", "billy_32"], ["access_token", "453ead90aa840c170b265171f4c50c83"], ["uuid", "882a532a-bb5d-42ea-a11b-1ff3b1b9bce3"], ["support_identifier", "cs_a03ff268"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:38.341157"], ["updated_at", "2018-10-16 17:21:38.341157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1996418407 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13c199d4-ca02-42e5-ac51-f22175938b3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_45a4af8e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1996418407], ["username", "billy_33"], ["access_token", "93e28780c4c98ee05f42e971d519a8df"], ["uuid", "13c199d4-ca02-42e5-ac51-f22175938b3c"], ["support_identifier", "cs_45a4af8e"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:38.348876"], ["updated_at", "2018-10-16 17:21:38.348876"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1672795847 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd3d5638f-3641-4fd4-a219-5e6084f7df1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b724b53' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1672795847], ["username", "billy_34"], ["access_token", "d625d756b5320c0f6205c6885c8e6061"], ["uuid", "d3d5638f-3641-4fd4-a219-5e6084f7df1c"], ["support_identifier", "cs_1b724b53"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:38.353298"], ["updated_at", "2018-10-16 17:21:38.353298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2005291950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '804119d1-a77a-4eef-815f-290a251c46a2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a82e56a7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2005291950], ["username", "billy_35"], ["access_token", "885d3d1a244898303fd07318d3479d1c"], ["uuid", "804119d1-a77a-4eef-815f-290a251c46a2"], ["support_identifier", "cs_a82e56a7"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:38.357593"], ["updated_at", "2018-10-16 17:21:38.357593"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -115563016 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3901f9bf-acf6-4db0-aab2-44cac45de27e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0c2395d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -115563016], ["username", "billy_36"], ["access_token", "4c739e22b3ed01d7908e16b534380209"], ["uuid", "3901f9bf-acf6-4db0-aab2-44cac45de27e"], ["support_identifier", "cs_0c2395d1"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:38.362334"], ["updated_at", "2018-10-16 17:21:38.362334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1027343982 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b3e7d934-452d-4fe6-846d-662b7b308415' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67f51aa2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1027343982], ["username", "billy_37"], ["access_token", "5fa9021f4292d52656030cf2f926569c"], ["uuid", "b3e7d934-452d-4fe6-846d-662b7b308415"], ["support_identifier", "cs_67f51aa2"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:38.366720"], ["updated_at", "2018-10-16 17:21:38.366720"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480422505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48f19954-87f2-4c55-b26f-66f12091e619' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7791ddc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1480422505], ["username", "billy_38"], ["access_token", "dbaafe559763f521711352c289666a1b"], ["uuid", "48f19954-87f2-4c55-b26f-66f12091e619"], ["support_identifier", "cs_d7791ddc"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:38.370681"], ["updated_at", "2018-10-16 17:21:38.370681"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1817208497 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6bd5e18d-1563-48dc-9718-f8bc91a6153d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bbb87145' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1817208497], ["username", "billy_39"], ["access_token", "e11b6abe3c1490019d25d570361362e9"], ["uuid", "6bd5e18d-1563-48dc-9718-f8bc91a6153d"], ["support_identifier", "cs_bbb87145"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:38.374636"], ["updated_at", "2018-10-16 17:21:38.374636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -278258075 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce1799fc-2026-4b67-a571-07a79af0e0cb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dd671485' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -278258075], ["username", "billy_40"], ["access_token", "ec41e87519abad37248ce3cd9efc0178"], ["uuid", "ce1799fc-2026-4b67-a571-07a79af0e0cb"], ["support_identifier", "cs_dd671485"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:38.379170"], ["updated_at", "2018-10-16 17:21:38.379170"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1251435070 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd65ad5c7-daad-4884-8d80-a04a5f3c0927' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f0ae5488' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1251435070], ["username", "billy_41"], ["access_token", "b1be766e250038a177ac0a084d9ae23a"], ["uuid", "d65ad5c7-daad-4884-8d80-a04a5f3c0927"], ["support_identifier", "cs_f0ae5488"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:38.383332"], ["updated_at", "2018-10-16 17:21:38.383332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1186790317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '56792e97-51ab-4972-914a-00a4e4112609' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1a7c7c4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1186790317], ["username", "billy_42"], ["access_token", "a3689b2d32c0a72c1f60939083a61dda"], ["uuid", "56792e97-51ab-4972-914a-00a4e4112609"], ["support_identifier", "cs_b1a7c7c4"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:38.387443"], ["updated_at", "2018-10-16 17:21:38.387443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1796237256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c5821c69-bf4d-4576-9dce-0f5328fdcb1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1f845386' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1796237256], ["username", "billy_43"], ["access_token", "d45eb49882577cca16c972c90bae2976"], ["uuid", "c5821c69-bf4d-4576-9dce-0f5328fdcb1e"], ["support_identifier", "cs_1f845386"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:38.391500"], ["updated_at", "2018-10-16 17:21:38.391500"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1901010188 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ef3dd76-8709-4d20-a7dc-d496c922bc26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_044ccebb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1901010188], ["username", "billy_44"], ["access_token", "5de501edd35ea2071481942f15f4b92d"], ["uuid", "2ef3dd76-8709-4d20-a7dc-d496c922bc26"], ["support_identifier", "cs_044ccebb"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:38.398460"], ["updated_at", "2018-10-16 17:21:38.398460"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2124405616 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '020b9bbf-83b5-4237-9b51-c0543b912a85' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d62d864' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2124405616], ["username", "billy_45"], ["access_token", "c2783abb1b25c05bd07eb983b3a84cde"], ["uuid", "020b9bbf-83b5-4237-9b51-c0543b912a85"], ["support_identifier", "cs_4d62d864"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:38.402854"], ["updated_at", "2018-10-16 17:21:38.402854"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071338124 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '87bbb2f8-99c3-42d6-b96e-23fe6aeac2cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6cc7fe7a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1071338124], ["username", "jstrav"], ["access_token", "6d206d77697a109f51f8fe3757f30a7e"], ["uuid", "87bbb2f8-99c3-42d6-b96e-23fe6aeac2cc"], ["support_identifier", "cs_6cc7fe7a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.415345"], ["updated_at", "2018-10-16 17:21:38.415345"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1084936493 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7613caa2-27f6-4af1-95e0-f94e097f1df8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6afc3ae' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1084936493], ["username", "mary"], ["access_token", "fd87fab17d303a7a1f5448339b1b20d4"], ["uuid", "7613caa2-27f6-4af1-95e0-f94e097f1df8"], ["support_identifier", "cs_f6afc3ae"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.419491"], ["updated_at", "2018-10-16 17:21:38.419491"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1924954720 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6671f7e7-5016-43ff-9f5d-be2d3b0e35dc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7a22466' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1924954720], ["username", "jstead"], ["access_token", "e19b8a2708216553526a3ea94b85a1ed"], ["uuid", "6671f7e7-5016-43ff-9f5d-be2d3b0e35dc"], ["support_identifier", "cs_d7a22466"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.423487"], ["updated_at", "2018-10-16 17:21:38.423487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1507322894 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b4f87be-b552-4a3b-b2c4-b8cfe78a8802' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efa72bcc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1507322894], ["username", "bigbear"], ["access_token", "1a17236ba8120f71732b137da3ddef0e"], ["uuid", "4b4f87be-b552-4a3b-b2c4-b8cfe78a8802"], ["support_identifier", "cs_efa72bcc"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.430734"], ["updated_at", "2018-10-16 17:21:38.430734"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1225357379 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3014865c-b924-4650-bc96-ebbfef7db44c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8dfff49a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1225357379], ["username", "billy_00"], ["access_token", "3759f3bdc552afb1f5ceed45644cecb6"], ["uuid", "3014865c-b924-4650-bc96-ebbfef7db44c"], ["support_identifier", "cs_8dfff49a"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:38.435478"], ["updated_at", "2018-10-16 17:21:38.435478"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1852323211 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f979556-dd0f-49ac-9227-b8952f578cc2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2d133207' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1852323211], ["username", "billy_01"], ["access_token", "255470ae3c9f962858df3828b6409f40"], ["uuid", "8f979556-dd0f-49ac-9227-b8952f578cc2"], ["support_identifier", "cs_2d133207"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:38.439600"], ["updated_at", "2018-10-16 17:21:38.439600"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -844122108 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b0a0907-9e9e-4b4b-bd29-549631d628e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c269f857' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -844122108], ["username", "billy_02"], ["access_token", "428750739ac4fba8f257ac0d494ab589"], ["uuid", "7b0a0907-9e9e-4b4b-bd29-549631d628e9"], ["support_identifier", "cs_c269f857"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:38.444387"], ["updated_at", "2018-10-16 17:21:38.444387"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -391195081 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c026101-f790-4242-ac81-29b97b4fd682' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b98b5494' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -391195081], ["username", "billy_03"], ["access_token", "6b0962fc65b82710939bbc281e4d3cf4"], ["uuid", "5c026101-f790-4242-ac81-29b97b4fd682"], ["support_identifier", "cs_b98b5494"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:38.448954"], ["updated_at", "2018-10-16 17:21:38.448954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -19349272 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8bd85ca-bcd8-4072-b85b-7fc513dd94f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fb92cc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -19349272], ["username", "billy_04"], ["access_token", "c7b7072c8e6bbbd3b972cbe0ed7a13d5"], ["uuid", "f8bd85ca-bcd8-4072-b85b-7fc513dd94f2"], ["support_identifier", "cs_0fb92cc8"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:38.452994"], ["updated_at", "2018-10-16 17:21:38.452994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1665770004 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e19458e7-3bb2-4538-8b4c-776277b9a85f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_340fc2c0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1665770004], ["username", "billy_05"], ["access_token", "987d899c86afb716ed0d8c4bf5bcfc3a"], ["uuid", "e19458e7-3bb2-4538-8b4c-776277b9a85f"], ["support_identifier", "cs_340fc2c0"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:38.457112"], ["updated_at", "2018-10-16 17:21:38.457112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1692784955 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ced58bc3-46d1-4f8b-9bd3-9a5fb76793d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3165aaf6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1692784955], ["username", "billy_06"], ["access_token", "7b7b442b8c9870e54bf11c39074560f7"], ["uuid", "ced58bc3-46d1-4f8b-9bd3-9a5fb76793d8"], ["support_identifier", "cs_3165aaf6"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:38.465150"], ["updated_at", "2018-10-16 17:21:38.465150"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -282611437 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54801b0a-eb62-4bd2-96fc-0d308ccdc076' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_acef43b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -282611437], ["username", "billy_07"], ["access_token", "e9e8f388068642b990a26bbffe46fc01"], ["uuid", "54801b0a-eb62-4bd2-96fc-0d308ccdc076"], ["support_identifier", "cs_acef43b2"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:38.469756"], ["updated_at", "2018-10-16 17:21:38.469756"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -75480191 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e682ebe4-202a-4c5f-8ea0-3f0a09e1ee6a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_83ec6354' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -75480191], ["username", "billy_08"], ["access_token", "0a41484ba521c05475a5f8719f5af59f"], ["uuid", "e682ebe4-202a-4c5f-8ea0-3f0a09e1ee6a"], ["support_identifier", "cs_83ec6354"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:38.473879"], ["updated_at", "2018-10-16 17:21:38.473879"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2038410905 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7e7b56e8-04ab-4eef-9f2f-37760f31920e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_62db461d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2038410905], ["username", "billy_09"], ["access_token", "58400015698683ba87b2edf778210087"], ["uuid", "7e7b56e8-04ab-4eef-9f2f-37760f31920e"], ["support_identifier", "cs_62db461d"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:38.478733"], ["updated_at", "2018-10-16 17:21:38.478733"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1881674723 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6190106-7df5-456f-9788-b83dfeb6f16f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e83c1472' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1881674723], ["username", "billy_10"], ["access_token", "62b52a0d453685c026b3c217d8b045f4"], ["uuid", "d6190106-7df5-456f-9788-b83dfeb6f16f"], ["support_identifier", "cs_e83c1472"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:38.483046"], ["updated_at", "2018-10-16 17:21:38.483046"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2133187045 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '261e58bc-e9c8-4f2d-a06c-bf6c93d9fb60' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_420fc06f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2133187045], ["username", "billy_11"], ["access_token", "d870ef358d645f2d7c72e18023874794"], ["uuid", "261e58bc-e9c8-4f2d-a06c-bf6c93d9fb60"], ["support_identifier", "cs_420fc06f"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:38.487248"], ["updated_at", "2018-10-16 17:21:38.487248"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1559391850 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c0dd03f-174f-48e8-bbe1-6c0065f3fa56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c1ec770' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1559391850], ["username", "billy_12"], ["access_token", "0cc288bd6124a4243d2e925c51ee27df"], ["uuid", "9c0dd03f-174f-48e8-bbe1-6c0065f3fa56"], ["support_identifier", "cs_6c1ec770"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:38.491360"], ["updated_at", "2018-10-16 17:21:38.491360"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -186153267 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a31570f9-069f-4b08-9595-61c51aa12cf0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_204dbc60' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -186153267], ["username", "billy_13"], ["access_token", "3ed3f8b81e740b1a499138677705b010"], ["uuid", "a31570f9-069f-4b08-9595-61c51aa12cf0"], ["support_identifier", "cs_204dbc60"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:38.495819"], ["updated_at", "2018-10-16 17:21:38.495819"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1908118584 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1fd3d842-353f-479b-882f-00a4c07b1700' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9de1b831' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1908118584], ["username", "billy_14"], ["access_token", "79007c66600f0f3e17e584d887e282c4"], ["uuid", "1fd3d842-353f-479b-882f-00a4c07b1700"], ["support_identifier", "cs_9de1b831"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:38.500096"], ["updated_at", "2018-10-16 17:21:38.500096"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -974894267 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '97305958-4e30-4e25-a6af-f03fabc1478a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_94d1b1d8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -974894267], ["username", "billy_15"], ["access_token", "09010ef9bfcd60cae42445a736db7926"], ["uuid", "97305958-4e30-4e25-a6af-f03fabc1478a"], ["support_identifier", "cs_94d1b1d8"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:38.504189"], ["updated_at", "2018-10-16 17:21:38.504189"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -54316204 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '845b9604-0604-46e7-8488-72e790209c27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb74728a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -54316204], ["username", "billy_16"], ["access_token", "896073720d95f7f95035dafe8b78b385"], ["uuid", "845b9604-0604-46e7-8488-72e790209c27"], ["support_identifier", "cs_eb74728a"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:38.508505"], ["updated_at", "2018-10-16 17:21:38.508505"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1701942883 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '07d78952-d12b-45b7-85ea-a03be375e696' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c5178f0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1701942883], ["username", "billy_17"], ["access_token", "e1e5f856920fdd2b9c1ee339fa6889e4"], ["uuid", "07d78952-d12b-45b7-85ea-a03be375e696"], ["support_identifier", "cs_3c5178f0"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:38.515520"], ["updated_at", "2018-10-16 17:21:38.515520"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -759211379 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '92a2ae27-7550-4bea-bef7-401059c48181' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3293c3e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -759211379], ["username", "billy_18"], ["access_token", "2a2f306f9e02a16db681ec655184c3db"], ["uuid", "92a2ae27-7550-4bea-bef7-401059c48181"], ["support_identifier", "cs_b3293c3e"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:38.519931"], ["updated_at", "2018-10-16 17:21:38.519931"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1580890020 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '823d3917-9b33-4912-aab2-dbe25c9ba109' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0ea927bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1580890020], ["username", "billy_19"], ["access_token", "26231d064a3a4185abf8763543eaa203"], ["uuid", "823d3917-9b33-4912-aab2-dbe25c9ba109"], ["support_identifier", "cs_0ea927bd"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:38.524153"], ["updated_at", "2018-10-16 17:21:38.524153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -972746021 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a3b3f576-87d9-4b37-9126-d9c95a055fa1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca9bb87b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -972746021], ["username", "billy_20"], ["access_token", "d9de206037848dffdf3a87a6a646096e"], ["uuid", "a3b3f576-87d9-4b37-9126-d9c95a055fa1"], ["support_identifier", "cs_ca9bb87b"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:38.528886"], ["updated_at", "2018-10-16 17:21:38.528886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1342655592 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9fea3d74-6ba1-4405-883c-64e0594183a7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_49bff43c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1342655592], ["username", "billy_21"], ["access_token", "9ef93e4f990833ad28fa9e37c60d0a75"], ["uuid", "9fea3d74-6ba1-4405-883c-64e0594183a7"], ["support_identifier", "cs_49bff43c"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:38.533017"], ["updated_at", "2018-10-16 17:21:38.533017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -299840145 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e2f0cc9f-76f9-4bba-b1af-a3a2c7809f56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd0a0dcf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -299840145], ["username", "billy_22"], ["access_token", "81ca7dcae02295d73a26acf2072f4469"], ["uuid", "e2f0cc9f-76f9-4bba-b1af-a3a2c7809f56"], ["support_identifier", "cs_fd0a0dcf"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:38.537224"], ["updated_at", "2018-10-16 17:21:38.537224"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -554323691 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '19fa0999-ec35-4a17-9e35-3d9c9e311853' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_927b4502' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -554323691], ["username", "billy_23"], ["access_token", "290e5511d0be1edbacd84c29f7b62654"], ["uuid", "19fa0999-ec35-4a17-9e35-3d9c9e311853"], ["support_identifier", "cs_927b4502"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:38.541354"], ["updated_at", "2018-10-16 17:21:38.541354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1321342504 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29fa1145-7568-421f-91d0-5c15d73ac2a9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b48b4eb5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1321342504], ["username", "billy_24"], ["access_token", "2a0e64d16c7cf8a5335bde6ec24cc3f1"], ["uuid", "29fa1145-7568-421f-91d0-5c15d73ac2a9"], ["support_identifier", "cs_b48b4eb5"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:38.548679"], ["updated_at", "2018-10-16 17:21:38.548679"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142112255 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be249007-bc0c-41a7-bc74-a7d0c7821b8e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1e4f191' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -142112255], ["username", "billy_25"], ["access_token", "c478abe51a05a69c9886d1af95e1af58"], ["uuid", "be249007-bc0c-41a7-bc74-a7d0c7821b8e"], ["support_identifier", "cs_c1e4f191"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:38.553194"], ["updated_at", "2018-10-16 17:21:38.553194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -39421491 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '80a8eb10-b304-4da1-8670-f89462941ffe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2e7e09f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -39421491], ["username", "billy_26"], ["access_token", "cb7e51facf35735ece080b8f157ece50"], ["uuid", "80a8eb10-b304-4da1-8670-f89462941ffe"], ["support_identifier", "cs_a2e7e09f"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:38.561434"], ["updated_at", "2018-10-16 17:21:38.561434"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -78336864 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2841a4d8-193c-4080-b3b8-5e9463ad5824' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4af1566' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -78336864], ["username", "billy_27"], ["access_token", "03a864c269fe75ac33832bf80476f487"], ["uuid", "2841a4d8-193c-4080-b3b8-5e9463ad5824"], ["support_identifier", "cs_c4af1566"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:38.565791"], ["updated_at", "2018-10-16 17:21:38.565791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1449815344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b77c0b29-ebad-47c8-85e5-167d1855bf84' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_72ddd546' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1449815344], ["username", "billy_28"], ["access_token", "1282d531dabf0a496220c684aa29f2aa"], ["uuid", "b77c0b29-ebad-47c8-85e5-167d1855bf84"], ["support_identifier", "cs_72ddd546"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:38.569735"], ["updated_at", "2018-10-16 17:21:38.569735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -709437183 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f806e5d-427d-49e0-8c25-6682a8fc1068' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_72679a7e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -709437183], ["username", "billy_29"], ["access_token", "efd8049d467d40465366a8abb0a84b17"], ["uuid", "1f806e5d-427d-49e0-8c25-6682a8fc1068"], ["support_identifier", "cs_72679a7e"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:38.573712"], ["updated_at", "2018-10-16 17:21:38.573712"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -683053745 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6aaba417-8f05-4a67-ab40-861541509087' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb55b03f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -683053745], ["username", "billy_30"], ["access_token", "ca538f1a10e70ac7a4cd8734ce718cae"], ["uuid", "6aaba417-8f05-4a67-ab40-861541509087"], ["support_identifier", "cs_eb55b03f"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:38.578252"], ["updated_at", "2018-10-16 17:21:38.578252"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -198124019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0a53a60-792a-4e6b-b4a2-cdf0e97b1a62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_644709d0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -198124019], ["username", "billy_31"], ["access_token", "8e46c9191d92025c8f6b0bfe8a3265a9"], ["uuid", "e0a53a60-792a-4e6b-b4a2-cdf0e97b1a62"], ["support_identifier", "cs_644709d0"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:38.582439"], ["updated_at", "2018-10-16 17:21:38.582439"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416991185 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e7bdfbb-f58b-49bf-b928-ad5a7414f427' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5557d61c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1416991185], ["username", "billy_32"], ["access_token", "e6caa3bf0feb0692a4b955a9a52bc663"], ["uuid", "5e7bdfbb-f58b-49bf-b928-ad5a7414f427"], ["support_identifier", "cs_5557d61c"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:38.586687"], ["updated_at", "2018-10-16 17:21:38.586687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408104918 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f7542d7-7b14-4237-b04e-3c6a094e34a8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a3d090e4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -408104918], ["username", "billy_33"], ["access_token", "d567ed3d5772d9793f69a593988b02dc"], ["uuid", "6f7542d7-7b14-4237-b04e-3c6a094e34a8"], ["support_identifier", "cs_a3d090e4"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:38.590913"], ["updated_at", "2018-10-16 17:21:38.590913"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -114677064 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f50dbbe-e6fa-444d-a972-5cafd1aedf02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9e52e7a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -114677064], ["username", "billy_34"], ["access_token", "9eeb0681cb673710c5a5913c39b1eb0f"], ["uuid", "2f50dbbe-e6fa-444d-a972-5cafd1aedf02"], ["support_identifier", "cs_c9e52e7a"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:38.597659"], ["updated_at", "2018-10-16 17:21:38.597659"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1069256511 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '64f97787-230c-475c-8d94-0b012ec466a1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e008be4a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1069256511], ["username", "billy_35"], ["access_token", "accd0962f54f30d0ec99e9a4538d08d2"], ["uuid", "64f97787-230c-475c-8d94-0b012ec466a1"], ["support_identifier", "cs_e008be4a"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:38.602036"], ["updated_at", "2018-10-16 17:21:38.602036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1009047002 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f5cefcec-8ba4-4c65-9e93-9bed88fcb828' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_401df466' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1009047002], ["username", "billy_36"], ["access_token", "f483eb185bbfa86fc5726dfe23fa8514"], ["uuid", "f5cefcec-8ba4-4c65-9e93-9bed88fcb828"], ["support_identifier", "cs_401df466"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:38.606219"], ["updated_at", "2018-10-16 17:21:38.606219"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -822772979 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'afd69bc5-bff1-4032-819e-e1d6bbb34e59' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af55ff97' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -822772979], ["username", "billy_37"], ["access_token", "e5a2cec1fc63217b498fc7b410cfeec4"], ["uuid", "afd69bc5-bff1-4032-819e-e1d6bbb34e59"], ["support_identifier", "cs_af55ff97"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:38.610679"], ["updated_at", "2018-10-16 17:21:38.610679"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -134216707 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b01af0b4-9c68-4e8a-8b0a-18ad01e849f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4752a66f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -134216707], ["username", "billy_38"], ["access_token", "2189e034841a33471d4f2cb26537afe9"], ["uuid", "b01af0b4-9c68-4e8a-8b0a-18ad01e849f9"], ["support_identifier", "cs_4752a66f"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:38.615032"], ["updated_at", "2018-10-16 17:21:38.615032"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1852699768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f309f8c-21ad-4abd-907f-db12b285ec88' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_89ffd887' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1852699768], ["username", "billy_39"], ["access_token", "8e4ba4ee04309bbe1b8feafcc3ac1f22"], ["uuid", "0f309f8c-21ad-4abd-907f-db12b285ec88"], ["support_identifier", "cs_89ffd887"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:38.619215"], ["updated_at", "2018-10-16 17:21:38.619215"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -531838070 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdf8a568-ab85-4aa6-9bd1-419769699b83' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c820390' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -531838070], ["username", "billy_40"], ["access_token", "e5f4f5a1db984ba7c4fb562c25858288"], ["uuid", "fdf8a568-ab85-4aa6-9bd1-419769699b83"], ["support_identifier", "cs_6c820390"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:38.623198"], ["updated_at", "2018-10-16 17:21:38.623198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433044022 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48d7022f-a76d-4063-9a76-a92aa2f7ca60' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee41fa8c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1433044022], ["username", "billy_41"], ["access_token", "4c2812e0e24c61331c2005c8af5b6c36"], ["uuid", "48d7022f-a76d-4063-9a76-a92aa2f7ca60"], ["support_identifier", "cs_ee41fa8c"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:38.630148"], ["updated_at", "2018-10-16 17:21:38.630148"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2107946163 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bcb4de2c-dc9a-4d5a-b966-ad88a32bfcb0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e523f485' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2107946163], ["username", "billy_42"], ["access_token", "d07990e385830b2c94aea262d35d4b9a"], ["uuid", "bcb4de2c-dc9a-4d5a-b966-ad88a32bfcb0"], ["support_identifier", "cs_e523f485"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:38.635109"], ["updated_at", "2018-10-16 17:21:38.635109"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -359066327 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '10e052b8-f5c7-4b1c-b113-a54a31cdb20b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5dfcbb9a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -359066327], ["username", "billy_43"], ["access_token", "deff8b2ecd66127d45e65f45719e6766"], ["uuid", "10e052b8-f5c7-4b1c-b113-a54a31cdb20b"], ["support_identifier", "cs_5dfcbb9a"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:38.639271"], ["updated_at", "2018-10-16 17:21:38.639271"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -552945175 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '39e57ecf-9d7c-4b1e-b6ee-3035d18d3fae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fab28626' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -552945175], ["username", "billy_44"], ["access_token", "07b940c67d92078f78c9ce88926a88ce"], ["uuid", "39e57ecf-9d7c-4b1e-b6ee-3035d18d3fae"], ["support_identifier", "cs_fab28626"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:38.643802"], ["updated_at", "2018-10-16 17:21:38.643802"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1292339003 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf19412b-3288-410c-969e-b845fbe8ca44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe85fb59' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1292339003], ["username", "billy_45"], ["access_token", "5f6e40c071e0db3a485e287d139c6a66"], ["uuid", "bf19412b-3288-410c-969e-b845fbe8ca44"], ["support_identifier", "cs_fe85fb59"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:38.648012"], ["updated_at", "2018-10-16 17:21:38.648012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1850982539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eaefccbf-6c1d-4e92-9441-5f02a4503b7d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_357e4fff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1850982539], ["username", "jstrav"], ["access_token", "952fa98db6da36d1db1367ff0f240706"], ["uuid", "eaefccbf-6c1d-4e92-9441-5f02a4503b7d"], ["support_identifier", "cs_357e4fff"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:38.656410"], ["updated_at", "2018-10-16 17:21:38.656410"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1215366639 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '532abf31-4e5a-4cc5-b217-0f82ce751abd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_58e3618b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1215366639], ["username", "mary"], ["access_token", "c136fa2416e2c7fcfc946de5e2212a53"], ["uuid", "532abf31-4e5a-4cc5-b217-0f82ce751abd"], ["support_identifier", "cs_58e3618b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:38.661063"], ["updated_at", "2018-10-16 17:21:38.661063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -192226841 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b751feae-e532-41c4-ab0b-ea311ff53bca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c33b2255' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -192226841], ["username", "jstead"], ["access_token", "839e4be19af12cabfcc8afb65186c535"], ["uuid", "b751feae-e532-41c4-ab0b-ea311ff53bca"], ["support_identifier", "cs_c33b2255"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:38.665364"], ["updated_at", "2018-10-16 17:21:38.665364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1811419613 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '45b85841-ca15-494f-976e-b6e3e2b930c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_86aa9e4d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1811419613], ["username", "bigbear"], ["access_token", "2b7a0ceabf235370e3b04b3f4ceb597f"], ["uuid", "45b85841-ca15-494f-976e-b6e3e2b930c6"], ["support_identifier", "cs_86aa9e4d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:38.669365"], ["updated_at", "2018-10-16 17:21:38.669365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1805750337 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a443373b-2256-472c-b16b-b5050458e05f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c921178' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1805750337], ["username", "billy_00"], ["access_token", "b84542fef4bd31ff2706e0eca00e58bf"], ["uuid", "a443373b-2256-472c-b16b-b5050458e05f"], ["support_identifier", "cs_9c921178"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:38.673400"], ["updated_at", "2018-10-16 17:21:38.673400"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1517561687 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8b2eb0b7-1b40-4296-8249-6f609a539cc0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f0bd663c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1517561687], ["username", "billy_01"], ["access_token", "b6eb6cc4d7e54f3e37f903aa240b510f"], ["uuid", "8b2eb0b7-1b40-4296-8249-6f609a539cc0"], ["support_identifier", "cs_f0bd663c"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:38.680065"], ["updated_at", "2018-10-16 17:21:38.680065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1754655455 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '441f77cb-2118-4fa2-97e6-4cfeb65154b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22f7e65a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1754655455], ["username", "billy_02"], ["access_token", "712ff3465575606f72b2fcc7269d9243"], ["uuid", "441f77cb-2118-4fa2-97e6-4cfeb65154b3"], ["support_identifier", "cs_22f7e65a"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:38.684592"], ["updated_at", "2018-10-16 17:21:38.684592"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -780354827 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bbd46877-1b2a-4a1e-9c8f-b07aa73df47c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a512db4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -780354827], ["username", "billy_03"], ["access_token", "fcdc48ce3aeb3c3c809bca3b4f84dbcf"], ["uuid", "bbd46877-1b2a-4a1e-9c8f-b07aa73df47c"], ["support_identifier", "cs_7a512db4"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:38.688741"], ["updated_at", "2018-10-16 17:21:38.688741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -689251510 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1d787995-5420-45ff-a933-0c690c3568d2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f733c8e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -689251510], ["username", "billy_04"], ["access_token", "d83de0b4a41fee5ccd3e068087774d7a"], ["uuid", "1d787995-5420-45ff-a933-0c690c3568d2"], ["support_identifier", "cs_2f733c8e"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:38.692986"], ["updated_at", "2018-10-16 17:21:38.692986"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -296701256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e05e608e-cb9c-4220-95cf-c21dc99da32a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2995cd72' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -296701256], ["username", "billy_05"], ["access_token", "70c12294a45758a3c088e55826392691"], ["uuid", "e05e608e-cb9c-4220-95cf-c21dc99da32a"], ["support_identifier", "cs_2995cd72"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:38.697502"], ["updated_at", "2018-10-16 17:21:38.697502"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1994354011 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c8a3a57-ce09-4532-99ed-dd203146c179' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff020a35' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1994354011], ["username", "billy_06"], ["access_token", "ce76b47521a9efeba04a7af41b7ba5ca"], ["uuid", "8c8a3a57-ce09-4532-99ed-dd203146c179"], ["support_identifier", "cs_ff020a35"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:38.701497"], ["updated_at", "2018-10-16 17:21:38.701497"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1040871919 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e288203b-e080-4c65-9cde-9a0da6353c02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3fcfa95e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1040871919], ["username", "billy_07"], ["access_token", "c792eafaa63526a6cb224823343b06be"], ["uuid", "e288203b-e080-4c65-9cde-9a0da6353c02"], ["support_identifier", "cs_3fcfa95e"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:38.705407"], ["updated_at", "2018-10-16 17:21:38.705407"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -934785361 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d3fe7ad-550e-417c-9553-ba55e84f4881' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5c7fa5e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -934785361], ["username", "billy_08"], ["access_token", "4024e5b71cbe2687d630c27f412ef87a"], ["uuid", "6d3fe7ad-550e-417c-9553-ba55e84f4881"], ["support_identifier", "cs_b5c7fa5e"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:38.709990"], ["updated_at", "2018-10-16 17:21:38.709990"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -589895414 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09769cd6-ff5e-44ae-8a88-f91c41c025ca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b9fff50' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -589895414], ["username", "billy_09"], ["access_token", "4277508e7bf1fcdd0507bd55d915d1c1"], ["uuid", "09769cd6-ff5e-44ae-8a88-f91c41c025ca"], ["support_identifier", "cs_9b9fff50"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:38.714350"], ["updated_at", "2018-10-16 17:21:38.714350"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1332005953 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '84d8117d-9209-41fc-8800-4e091cbd3541' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2b85c28f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1332005953], ["username", "billy_10"], ["access_token", "34c8979556488a321d647ddb186a892c"], ["uuid", "84d8117d-9209-41fc-8800-4e091cbd3541"], ["support_identifier", "cs_2b85c28f"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:38.718487"], ["updated_at", "2018-10-16 17:21:38.718487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1150017207 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dbf37888-0a00-47c3-b9b3-82501c94b59c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d37dc2a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1150017207], ["username", "billy_11"], ["access_token", "18b85ebfeba4fe38e45c27717e0b379e"], ["uuid", "dbf37888-0a00-47c3-b9b3-82501c94b59c"], ["support_identifier", "cs_d37dc2a6"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:38.722510"], ["updated_at", "2018-10-16 17:21:38.722510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -842587256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac231350-3386-4d59-b836-0910a033f37d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b51556b' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -842587256], ["username", "billy_12"], ["access_token", "94f2a4d441857e8c648d4647f7753d99"], ["uuid", "ac231350-3386-4d59-b836-0910a033f37d"], ["support_identifier", "cs_9b51556b"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:38.727437"], ["updated_at", "2018-10-16 17:21:38.727437"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -16811205 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f82535cd-cc0b-433c-b0de-f2cbb9fa1e2e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b723631' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -16811205], ["username", "billy_13"], ["access_token", "9d7413358b533a1450a340c0064f269c"], ["uuid", "f82535cd-cc0b-433c-b0de-f2cbb9fa1e2e"], ["support_identifier", "cs_5b723631"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:38.733939"], ["updated_at", "2018-10-16 17:21:38.733939"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -10797763 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8581136-0382-4f8f-81f5-b32ec6047875' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fea1e3a8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -10797763], ["username", "billy_14"], ["access_token", "f6b57ac2da742e1b424f7c51a8478a8f"], ["uuid", "a8581136-0382-4f8f-81f5-b32ec6047875"], ["support_identifier", "cs_fea1e3a8"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:38.738094"], ["updated_at", "2018-10-16 17:21:38.738094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1816877588 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7b7d58c-5e36-4271-a58d-cc1846ef43b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_70e385d6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1816877588], ["username", "billy_15"], ["access_token", "548b03f03ece2cbd75802a9a842e1d60"], ["uuid", "f7b7d58c-5e36-4271-a58d-cc1846ef43b3"], ["support_identifier", "cs_70e385d6"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:38.742962"], ["updated_at", "2018-10-16 17:21:38.742962"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805697069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fba61332-a19c-4bf8-a4e7-75f8a71c387a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d825cb4d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -805697069], ["username", "billy_16"], ["access_token", "dd4fdf2c07e967f108eb5f5486196a96"], ["uuid", "fba61332-a19c-4bf8-a4e7-75f8a71c387a"], ["support_identifier", "cs_d825cb4d"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:38.747380"], ["updated_at", "2018-10-16 17:21:38.747380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1469863117 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f5ad7d20-9cb8-4fe9-96ee-8f9994dc2464' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c0c3300c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1469863117], ["username", "billy_17"], ["access_token", "67fa2185e2653db9a0299ff04f182941"], ["uuid", "f5ad7d20-9cb8-4fe9-96ee-8f9994dc2464"], ["support_identifier", "cs_c0c3300c"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:38.751367"], ["updated_at", "2018-10-16 17:21:38.751367"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -871476906 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c368d92d-2bbc-483c-b9fa-fb7f46848773' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_745625d3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -871476906], ["username", "billy_18"], ["access_token", "bbe5f647da3947690aae01de1dee50cf"], ["uuid", "c368d92d-2bbc-483c-b9fa-fb7f46848773"], ["support_identifier", "cs_745625d3"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:38.755377"], ["updated_at", "2018-10-16 17:21:38.755377"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1372699019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d8a4d32-0448-492a-9fe4-9285102e2159' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a64a195' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1372699019], ["username", "billy_19"], ["access_token", "aba0dc6df4274587af477dc33cc6495b"], ["uuid", "0d8a4d32-0448-492a-9fe4-9285102e2159"], ["support_identifier", "cs_4a64a195"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:38.760181"], ["updated_at", "2018-10-16 17:21:38.760181"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -994372562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26a18ae9-9cf2-40cd-8507-c13341d6fd78' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_799e1bf0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -994372562], ["username", "billy_20"], ["access_token", "9e2f8e616e4b86daa63506f0844f2f47"], ["uuid", "26a18ae9-9cf2-40cd-8507-c13341d6fd78"], ["support_identifier", "cs_799e1bf0"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:38.767316"], ["updated_at", "2018-10-16 17:21:38.767316"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -15476276 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a258a0ec-5a47-4952-9c95-5085b3b98ced' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57d2674a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -15476276], ["username", "billy_21"], ["access_token", "073f6e343c55b3705d21328618dea3f0"], ["uuid", "a258a0ec-5a47-4952-9c95-5085b3b98ced"], ["support_identifier", "cs_57d2674a"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:38.771436"], ["updated_at", "2018-10-16 17:21:38.771436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -971779151 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f6cbb967-c459-4e7a-83dc-9d0da2e49c9e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c727333' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -971779151], ["username", "billy_22"], ["access_token", "5039a684b57ae2633380b155c013713f"], ["uuid", "f6cbb967-c459-4e7a-83dc-9d0da2e49c9e"], ["support_identifier", "cs_6c727333"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:38.775532"], ["updated_at", "2018-10-16 17:21:38.775532"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -465142909 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '215da6a6-3a3b-4185-b3f8-d90673213ac6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3433dea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -465142909], ["username", "billy_23"], ["access_token", "952bdd93e69d51beb0b572ad8984c381"], ["uuid", "215da6a6-3a3b-4185-b3f8-d90673213ac6"], ["support_identifier", "cs_f3433dea"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:38.780380"], ["updated_at", "2018-10-16 17:21:38.780380"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -603715686 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '88b8ba6e-7962-483d-bf0b-51b33d7b6c00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4a6a577' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -603715686], ["username", "billy_24"], ["access_token", "7c16e556a4bd776de20997f5c187ec73"], ["uuid", "88b8ba6e-7962-483d-bf0b-51b33d7b6c00"], ["support_identifier", "cs_c4a6a577"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:38.784636"], ["updated_at", "2018-10-16 17:21:38.784636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -475333618 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bde2fbf4-43c2-43b3-b9c6-92be99cbe5d4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9faebbc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -475333618], ["username", "billy_25"], ["access_token", "bd5d9d374ed76021fbe3553afb1751a2"], ["uuid", "bde2fbf4-43c2-43b3-b9c6-92be99cbe5d4"], ["support_identifier", "cs_9faebbc8"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:38.788764"], ["updated_at", "2018-10-16 17:21:38.788764"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2068886367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be998a15-5ac6-4f19-bda1-8e049784ed21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a10184d0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2068886367], ["username", "billy_26"], ["access_token", "b64d1dbdfff3b402cf1846b908875cc8"], ["uuid", "be998a15-5ac6-4f19-bda1-8e049784ed21"], ["support_identifier", "cs_a10184d0"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:38.793051"], ["updated_at", "2018-10-16 17:21:38.793051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408442028 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7f41c8f3-b7c2-45e2-afb5-3bb7ccf09b1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67cb3ab4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -408442028], ["username", "billy_27"], ["access_token", "e4c225ebda92d677c021a5af844b187d"], ["uuid", "7f41c8f3-b7c2-45e2-afb5-3bb7ccf09b1d"], ["support_identifier", "cs_67cb3ab4"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:38.797365"], ["updated_at", "2018-10-16 17:21:38.797365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1916245180 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f6f8acd5-fc3d-49df-97c3-623993f5c044' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a997aa67' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1916245180], ["username", "billy_28"], ["access_token", "973c49946bf672e4e849eb3714ff2ddc"], ["uuid", "f6f8acd5-fc3d-49df-97c3-623993f5c044"], ["support_identifier", "cs_a997aa67"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:38.801428"], ["updated_at", "2018-10-16 17:21:38.801428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -499745454 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8cd81498-b979-4276-bef7-73a4817abbcc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f01c5d50' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -499745454], ["username", "billy_29"], ["access_token", "d1a2a4e45bfe05ea55fcfe2fcab54ea0"], ["uuid", "8cd81498-b979-4276-bef7-73a4817abbcc"], ["support_identifier", "cs_f01c5d50"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:38.805503"], ["updated_at", "2018-10-16 17:21:38.805503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1590163629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a564513-6fa4-4530-89f5-757d6a689c36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6ba4f101' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1590163629], ["username", "billy_30"], ["access_token", "9b323fbe1c9b74c95251fc38ab6cb900"], ["uuid", "5a564513-6fa4-4530-89f5-757d6a689c36"], ["support_identifier", "cs_6ba4f101"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:38.810341"], ["updated_at", "2018-10-16 17:21:38.810341"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -432088153 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f5ac292-7c2b-4a0f-8aaf-20016160b805' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ac082ca1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -432088153], ["username", "billy_31"], ["access_token", "e1bb7aa722f044200239c17d0b34a2d7"], ["uuid", "6f5ac292-7c2b-4a0f-8aaf-20016160b805"], ["support_identifier", "cs_ac082ca1"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:38.817122"], ["updated_at", "2018-10-16 17:21:38.817122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2027992791 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cdd1e969-0eaf-4a6c-b22a-5b87fa7551a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_19fb1358' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2027992791], ["username", "billy_32"], ["access_token", "7d2b7ce0bb4d36c2880aa0bc9b0c0b3e"], ["uuid", "cdd1e969-0eaf-4a6c-b22a-5b87fa7551a4"], ["support_identifier", "cs_19fb1358"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:38.821316"], ["updated_at", "2018-10-16 17:21:38.821316"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1994012711 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0a16d26b-899c-454b-a7a7-ed17ac8de1fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_005b7e13' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1994012711], ["username", "billy_33"], ["access_token", "154f7a465ab3f32ce3029c53e6f0f0e7"], ["uuid", "0a16d26b-899c-454b-a7a7-ed17ac8de1fd"], ["support_identifier", "cs_005b7e13"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:38.825600"], ["updated_at", "2018-10-16 17:21:38.825600"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1857107204 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '820c4da8-a246-4ff9-b40b-79724f46ee93' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_72811715' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1857107204], ["username", "billy_34"], ["access_token", "c1304d2e3736510d230a295138f0f74b"], ["uuid", "820c4da8-a246-4ff9-b40b-79724f46ee93"], ["support_identifier", "cs_72811715"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:38.830577"], ["updated_at", "2018-10-16 17:21:38.830577"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1011957109 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c549273-8dbc-4382-822d-de54bbd0c846' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9360ffd8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1011957109], ["username", "billy_35"], ["access_token", "983a3ca5b872d0f7719a9d52e275ded7"], ["uuid", "8c549273-8dbc-4382-822d-de54bbd0c846"], ["support_identifier", "cs_9360ffd8"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:38.837864"], ["updated_at", "2018-10-16 17:21:38.837864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1566260677 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '776eb1d0-73eb-42c2-9d92-7732ac110ca1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30dd0faf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1566260677], ["username", "billy_36"], ["access_token", "80c2c6fa9c31c863f8c97dc6b4a1d4f3"], ["uuid", "776eb1d0-73eb-42c2-9d92-7732ac110ca1"], ["support_identifier", "cs_30dd0faf"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:38.842016"], ["updated_at", "2018-10-16 17:21:38.842016"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -226074129 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd19c5384-9406-4ab5-aa71-ae96bcd7eb60' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4627c0f2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -226074129], ["username", "billy_37"], ["access_token", "b1304dd165d673db8624fc9bc5539832"], ["uuid", "d19c5384-9406-4ab5-aa71-ae96bcd7eb60"], ["support_identifier", "cs_4627c0f2"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:38.849441"], ["updated_at", "2018-10-16 17:21:38.849441"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1640192528 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2923c542-fe3f-4bac-815b-a42d0d7a821e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b27797b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1640192528], ["username", "billy_38"], ["access_token", "65e492be76d502d2c7db461b6d2ebcc3"], ["uuid", "2923c542-fe3f-4bac-815b-a42d0d7a821e"], ["support_identifier", "cs_b27797b2"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:38.853814"], ["updated_at", "2018-10-16 17:21:38.853814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1969856055 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '886aaed6-f522-44a5-ba00-0577b4c77eb5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2609483' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1969856055], ["username", "billy_39"], ["access_token", "7a06fe07e201d3e93bf759a2ecf5631b"], ["uuid", "886aaed6-f522-44a5-ba00-0577b4c77eb5"], ["support_identifier", "cs_a2609483"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:38.858053"], ["updated_at", "2018-10-16 17:21:38.858053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -67208853 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab515b2c-2d2b-4273-ab1f-d7fd896d6446' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04b3ee66' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -67208853], ["username", "billy_40"], ["access_token", "0a3397d06e9ff321512d056d6fd5651f"], ["uuid", "ab515b2c-2d2b-4273-ab1f-d7fd896d6446"], ["support_identifier", "cs_04b3ee66"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:38.862890"], ["updated_at", "2018-10-16 17:21:38.862890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1357346529 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '819d41ba-e6c5-4bb1-9c46-2b371ae4957b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b27e4cb1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1357346529], ["username", "billy_41"], ["access_token", "a7e8192063be93ef397204bfe78f2de4"], ["uuid", "819d41ba-e6c5-4bb1-9c46-2b371ae4957b"], ["support_identifier", "cs_b27e4cb1"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:38.867291"], ["updated_at", "2018-10-16 17:21:38.867291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1117021896 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de272f8c-d1f9-4004-9ec5-4db3c2c3e2e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f97e286d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1117021896], ["username", "billy_42"], ["access_token", "fe2770ad9388b175e51cbbec17560176"], ["uuid", "de272f8c-d1f9-4004-9ec5-4db3c2c3e2e3"], ["support_identifier", "cs_f97e286d"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:38.871308"], ["updated_at", "2018-10-16 17:21:38.871308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -312751404 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b620e9c6-6975-4626-b623-6b8f47d8e249' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1516bcd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -312751404], ["username", "billy_43"], ["access_token", "f92af5eecd3e1201d03b805e5fe2e71e"], ["uuid", "b620e9c6-6975-4626-b623-6b8f47d8e249"], ["support_identifier", "cs_f1516bcd"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:38.875383"], ["updated_at", "2018-10-16 17:21:38.875383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -967296278 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e48804c3-d699-4ceb-b161-12b0512bb8a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5e9eed58' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -967296278], ["username", "billy_44"], ["access_token", "ad1193041945a502dac6f49094127e76"], ["uuid", "e48804c3-d699-4ceb-b161-12b0512bb8a4"], ["support_identifier", "cs_5e9eed58"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:38.879919"], ["updated_at", "2018-10-16 17:21:38.879919"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -772700486 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '078e81bf-183d-457c-96cf-aad2cb54ef18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7171844a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -772700486], ["username", "billy_45"], ["access_token", "e3a523f600670ccc3df70c480b7206c3"], ["uuid", "078e81bf-183d-457c-96cf-aad2cb54ef18"], ["support_identifier", "cs_7171844a"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:38.884164"], ["updated_at", "2018-10-16 17:21:38.884164"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1312446971 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd43d27a006af511660f72250cfb235c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a912ffd-3fed-44c1-a914-d08a0cc89a45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6608c3eb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1312446971], ["username", "d43d27a006af511660f72250cfb235c9"], ["access_token", "14ce767ad9589a9b6b96da8238ee2d06"], ["uuid", "3a912ffd-3fed-44c1-a914-d08a0cc89a45"], ["support_identifier", "cs_6608c3eb"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.895923"], ["updated_at", "2018-10-16 17:21:38.895923"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1312446971 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd43d27a006af511660f72250cfb235c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a912ffd-3fed-44c1-a914-d08a0cc89a45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6608c3eb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1312446971 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd43d27a006af511660f72250cfb235c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3A912FFD-3FED-44C1-A914-D08A0CC89A45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6608c3eb' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -851741174 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f7164b810803430792a916c1db0e74d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a84efe1a-c7c8-465d-a1ea-388eb0c69797' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ff5026c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -851741174], ["username", "f7164b810803430792a916c1db0e74d3"], ["access_token", "c27a00766cbb8b3ed8e6f33a879f5405"], ["uuid", "a84efe1a-c7c8-465d-a1ea-388eb0c69797"], ["support_identifier", "cs_3ff5026c"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.920062"], ["updated_at", "2018-10-16 17:21:38.920062"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -851741174 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f7164b810803430792a916c1db0e74d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a84efe1a-c7c8-465d-a1ea-388eb0c69797' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ff5026c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -851741174 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f7164b810803430792a916c1db0e74d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a84efe1a-c7c8-465d-a1ea-388eb0c69797' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'CS_3FF5026C' LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "support_identifier" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["support_identifier", nil], ["updated_at", "2018-10-16 17:21:38.934277"], ["id", 222]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -851741174 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f7164b810803430792a916c1db0e74d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a84efe1a-c7c8-465d-a1ea-388eb0c69797' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1718899672 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'ff3b5c43ec0ebfecfac02b6bfedb3043' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74e7fa25-b037-4c0f-9963-79dc6b66e0be' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5233449e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1718899672], ["username", "ff3b5c43ec0ebfecfac02b6bfedb3043"], ["access_token", "8cfa836a54dc053bf641dce4e61c52fc"], ["uuid", "74e7fa25-b037-4c0f-9963-79dc6b66e0be"], ["support_identifier", "cs_5233449e"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.942947"], ["updated_at", "2018-10-16 17:21:38.942947"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1718899672 AND "openstax_accounts_accounts"."id" != 223) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'ff3b5c43ec0ebfecfac02b6bfedb3043' AND "openstax_accounts_accounts"."id" != 223) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" IS NULL AND "openstax_accounts_accounts"."id" != 223) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_5233449e' AND "openstax_accounts_accounts"."id" != 223) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -15407185 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a385cd9c55f8c77f1d6efb825cc78048' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20ab4de6-505d-4c79-9580-6c088e3a44ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_41cbbe34' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -15407185], ["username", "a385cd9c55f8c77f1d6efb825cc78048"], ["access_token", "a9cfb857c2a61e2da389776dfaae9bf3"], ["uuid", "20ab4de6-505d-4c79-9580-6c088e3a44ea"], ["support_identifier", "cs_41cbbe34"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.953981"], ["updated_at", "2018-10-16 17:21:38.953981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1796470655 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a385cd9c55f8c77f1d6efb825cc78048' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e263a79-34c6-4f7a-bdb5-adda9fb90943' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8f1b545a' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1984802621 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'b9edad0062d31365a4e6574cc3d56abe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8fa394f-bb28-4dc8-93fb-99d755e40d76' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb97b08a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1984802621], ["username", "b9edad0062d31365a4e6574cc3d56abe"], ["access_token", "c7304b42e3d8fff0c9881c965da2c790"], ["uuid", "b8fa394f-bb28-4dc8-93fb-99d755e40d76"], ["support_identifier", "cs_cb97b08a"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.962926"], ["updated_at", "2018-10-16 17:21:38.962926"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1984802621 AND "openstax_accounts_accounts"."id" != 225) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b8fa394f-bb28-4dc8-93fb-99d755e40d76' AND "openstax_accounts_accounts"."id" != 225) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_cb97b08a' AND "openstax_accounts_accounts"."id" != 225) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -44586483 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '91c76f02e0e3364171f9220d78fb51b8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e6150731-7c30-453a-9fea-791d33577d13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cf4f2a03' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -913315939 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c243e0f-a54b-4bb7-b231-0ff5567a2ffe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63353daa' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -913315939], ["access_token", "eddd240836f49252b93e72fa2a27eb76"], ["uuid", "9c243e0f-a54b-4bb7-b231-0ff5567a2ffe"], ["support_identifier", "cs_63353daa"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.973402"], ["updated_at", "2018-10-16 17:21:38.973402"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -785361729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '65cdbc70-6815-4804-99d7-acda3267c2b0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee4c1dd0' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -785361729], ["access_token", "37f7de5aedec07052650c72a70bbaa1e"], ["uuid", "65cdbc70-6815-4804-99d7-acda3267c2b0"], ["support_identifier", "cs_ee4c1dd0"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.980323"], ["updated_at", "2018-10-16 17:21:38.980323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2035659308 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '4afc62f683d0acd669b0b8423ac8ba80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a7d241a-e31d-4851-9b8d-e4485bfdc141' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25391964' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2035659308], ["username", "4afc62f683d0acd669b0b8423ac8ba80"], ["access_token", "fc56ce5be6919cd235da3239a8442b3c"], ["uuid", "4a7d241a-e31d-4851-9b8d-e4485bfdc141"], ["support_identifier", "cs_25391964"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:38.986805"], ["updated_at", "2018-10-16 17:21:38.986805"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '4afc62f683d0acd669b0b8423ac8ba80' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '4a7d241a-e31d-4851-9b8d-e4485bfdc141' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_25391964' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '4afc62f683d0acd669b0b8423ac8ba80' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '4a7d241a-e31d-4851-9b8d-e4485bfdc141' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_25391964' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + SQL (0.4ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["openstax_uid", -1], ["updated_at", "2018-10-16 17:21:38.992585"], ["id", 228]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd0a4e1ef61b07fe0e7a726a81743114e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b0c7b1d-faef-4d60-bbca-ff09f02e39d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca602551' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -54057201 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '808ca6447bf040ed6d00104d042d52e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a401220a-3d76-4bf3-af09-09f60a3d7129' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e420dd4c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -54057201], ["username", "808ca6447bf040ed6d00104d042d52e2"], ["access_token", "22a3d1d0b2ef662806729517a40f4b8d"], ["uuid", "a401220a-3d76-4bf3-af09-09f60a3d7129"], ["support_identifier", "cs_e420dd4c"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.001426"], ["updated_at", "2018-10-16 17:21:39.001426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Real User' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'a401220a-3d76-4bf3-af09-09f60a3d7129' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_e420dd4c' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Real User"], ["updated_at", "2018-10-16 17:21:39.005360"], ["id", 229]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -815372697 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '9e56cac92d3297c9ce3aac4340280c46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cb5ca949-6ae6-4f0d-9912-05a954fabbfa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_330a2a4e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -815372697], ["username", "9e56cac92d3297c9ce3aac4340280c46"], ["access_token", "9ddc27bf36bb3d4a8f7cbdbd72d3311a"], ["uuid", "cb5ca949-6ae6-4f0d-9912-05a954fabbfa"], ["support_identifier", "cs_330a2a4e"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.010692"], ["updated_at", "2018-10-16 17:21:39.010692"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Nil User' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'cb5ca949-6ae6-4f0d-9912-05a954fabbfa' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_330a2a4e' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", nil], ["username", "Nil User"], ["updated_at", "2018-10-16 17:21:39.014377"], ["id", 230]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 0 AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Zeroth User' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'cb5ca949-6ae6-4f0d-9912-05a954fabbfa' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_330a2a4e' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 0], ["username", "Zeroth User"], ["updated_at", "2018-10-16 17:21:39.018168"], ["id", 230]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Negative User' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'cb5ca949-6ae6-4f0d-9912-05a954fabbfa' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_330a2a4e' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", -1], ["username", "Negative User"], ["updated_at", "2018-10-16 17:21:39.022089"], ["id", 230]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1610452853 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '6544b6875d944c27d91b716f5f1c3b5f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc574aec-0dd1-42ca-976f-04ac108d2846' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c0811e7a' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1610452853], ["username", "6544b6875d944c27d91b716f5f1c3b5f"], ["access_token", "84d970940119a773345061339bc7f64f"], ["uuid", "bc574aec-0dd1-42ca-976f-04ac108d2846"], ["support_identifier", "cs_c0811e7a"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.028654"], ["updated_at", "2018-10-16 17:21:39.028654"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Syncing User' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'bc574aec-0dd1-42ca-976f-04ac108d2846' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_c0811e7a' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Syncing User"], ["updated_at", "2018-10-16 17:21:39.034736"], ["id", 231]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1622474339 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '7387f3be0f50940b9f5689540a7c7a1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b95ea7e8-7c88-49bb-9a74-04baa64609a1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d3daa6e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1622474339], ["username", "7387f3be0f50940b9f5689540a7c7a1d"], ["access_token", "2e776da60547f9328da7ab03b80fb3dd"], ["uuid", "b95ea7e8-7c88-49bb-9a74-04baa64609a1"], ["support_identifier", "cs_4d3daa6e"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.040076"], ["updated_at", "2018-10-16 17:21:39.040076"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Stubbed User' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b95ea7e8-7c88-49bb-9a74-04baa64609a1' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_4d3daa6e' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Stubbed User"], ["updated_at", "2018-10-16 17:21:39.044089"], ["id", 232]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'User' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdc83e68-d3de-42dd-a669-ad4c1c05f5e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0c13817d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "User"], ["access_token", "132830c39af2be21751bf9782100a431"], ["uuid", "fdc83e68-d3de-42dd-a669-ad4c1c05f5e9"], ["support_identifier", "cs_0c13817d"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.065698"], ["updated_at", "2018-10-16 17:21:39.065698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'Fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1cfe8697-7568-4602-8401-479d4e56f5f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34f9693e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 3], ["username", "Fuego"], ["access_token", "4a34c7960c6234b6af83edccf9ec2d89"], ["uuid", "1cfe8697-7568-4602-8401-479d4e56f5f8"], ["support_identifier", "cs_34f9693e"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.069692"], ["updated_at", "2018-10-16 17:21:39.069692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (1.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 2], ["name", "Member Group"], ["created_at", "2018-10-16 17:21:39.081456"], ["updated_at", "2018-10-16 17:21:39.081456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 233 AND "openstax_accounts_group_members"."group_id" = 2) LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 2], ["user_id", 2], ["created_at", "2018-10-16 17:21:39.098327"], ["updated_at", "2018-10-16 17:21:39.098327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 4], ["name", "Container Group"], ["created_at", "2018-10-16 17:21:39.101000"], ["updated_at", "2018-10-16 17:21:39.101000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 233 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 4], ["user_id", 2], ["created_at", "2018-10-16 17:21:39.109808"], ["updated_at", "2018-10-16 17:21:39.109808"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 1 LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2018-10-16 17:21:39.123323"], ["updated_at", "2018-10-16 17:21:39.123323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::Group Load (0.6ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 4]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.3ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 234 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 233 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 3], ["name", "Fuego's Deputies"], ["created_at", "2018-10-16 17:21:39.240270"], ["updated_at", "2018-10-16 17:21:39.240270"]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 234 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 17:21:39.241887"], ["updated_at", "2018-10-16 17:21:39.241887"]] + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 233 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 17:21:39.243816"], ["updated_at", "2018-10-16 17:21:39.243816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 17:21:39.249417"], ["updated_at", "2018-10-16 17:21:39.249417"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "name" = $1, "updated_at" = $2 WHERE "openstax_accounts_groups"."id" = $3 [["name", "M"], ["updated_at", "2018-10-16 17:21:39.251392"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.1ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.5ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.4ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 17:21:39.316511"], ["updated_at", "2018-10-16 17:21:39.316511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.1ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 233 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 17:21:39.321699"], ["updated_at", "2018-10-16 17:21:39.321699"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 234 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 17:21:39.325091"], ["updated_at", "2018-10-16 17:21:39.325091"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:21:39 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 3]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (1.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f2d2e1db-80c4-4f82-a393-7293e0bfa9e1' LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_501a2c52' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "444b077ce3117572b38059f218c3f54a"], ["uuid", "f2d2e1db-80c4-4f82-a393-7293e0bfa9e1"], ["support_identifier", "cs_501a2c52"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.366357"], ["updated_at", "2018-10-16 17:21:39.366357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.6ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 235], ["created_at", "2018-10-16 17:21:39.371334"], ["updated_at", "2018-10-16 17:21:39.371334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 235]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7159c423-9519-40cf-b146-b397d74398e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_893250e7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "8e872891f0dba52fa384be04670d7df7"], ["uuid", "7159c423-9519-40cf-b146-b397d74398e5"], ["support_identifier", "cs_893250e7"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:39.806590"], ["updated_at", "2018-10-16 17:21:39.806590"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.3ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 236], ["created_at", "2018-10-16 17:21:39.808614"], ["updated_at", "2018-10-16 17:21:39.808614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a95b99a-5aba-4a0e-a275-42fff072086e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d12e845' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "f7b17a0faad66a345122c29ef25cd283"], ["uuid", "7a95b99a-5aba-4a0e-a275-42fff072086e"], ["support_identifier", "cs_5d12e845"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:40.237953"], ["updated_at", "2018-10-16 17:21:40.237953"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 237], ["created_at", "2018-10-16 17:21:40.240001"], ["updated_at", "2018-10-16 17:21:40.240001"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 237]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ecace7b-6b01-4f00-92ba-c560aeeea0cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eda68a20' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "af07ff9d32617551faa4dda7ec767645"], ["uuid", "2ecace7b-6b01-4f00-92ba-c560aeeea0cc"], ["support_identifier", "cs_eda68a20"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:40.672980"], ["updated_at", "2018-10-16 17:21:40.672980"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 238], ["created_at", "2018-10-16 17:21:40.674825"], ["updated_at", "2018-10-16 17:21:40.674825"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 238]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 238]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 238]] +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '695d8eac-5a8d-4280-9b35-20933e870c59' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_185f9564' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "481eb8fc6094977004e027b65da52782"], ["uuid", "695d8eac-5a8d-4280-9b35-20933e870c59"], ["support_identifier", "cs_185f9564"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:41.130471"], ["updated_at", "2018-10-16 17:21:41.130471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 239], ["created_at", "2018-10-16 17:21:41.132362"], ["updated_at", "2018-10-16 17:21:41.132362"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 239]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 239]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 239]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 239]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 239]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1871968347 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d5e8d4c-22bd-4d2a-a011-0ff06ea43e13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce97c376' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1871968347], ["username", "jstrav"], ["access_token", "9d5fba431a1641ec9439ee65ed0ca628"], ["uuid", "3d5e8d4c-22bd-4d2a-a011-0ff06ea43e13"], ["support_identifier", "cs_ce97c376"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.589929"], ["updated_at", "2018-10-16 17:21:41.589929"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -358611621 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6a6213e-1d8a-4435-b5b1-3383d790f5e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_abdde26c' LIMIT 1 + SQL (1.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -358611621], ["username", "mary"], ["access_token", "415ecdd9096792f58c05410ac6816dda"], ["uuid", "d6a6213e-1d8a-4435-b5b1-3383d790f5e6"], ["support_identifier", "cs_abdde26c"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.595312"], ["updated_at", "2018-10-16 17:21:41.595312"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1346285479 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7e7f66a-baa6-42ee-b9c4-8e40011c3fe4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a4a8e4fe' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1346285479], ["username", "jstead"], ["access_token", "4f6a578593c02ad3134f0c827cd9fb1d"], ["uuid", "c7e7f66a-baa6-42ee-b9c4-8e40011c3fe4"], ["support_identifier", "cs_a4a8e4fe"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.603118"], ["updated_at", "2018-10-16 17:21:41.603118"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071800292 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a8dc8f4-8e1c-44f5-8a1a-6487d5363f4e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_37511a02' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1071800292], ["username", "bigbear"], ["access_token", "a4a39079bc67b3c662e9339c0e2a83eb"], ["uuid", "4a8dc8f4-8e1c-44f5-8a1a-6487d5363f4e"], ["support_identifier", "cs_37511a02"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.607483"], ["updated_at", "2018-10-16 17:21:41.607483"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1208752125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b2759453-4b35-46b7-ab5e-e89cb095eda3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d918c0d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1208752125], ["username", "jstrav"], ["access_token", "47650379f69f9ec66b834ec90f8e64b5"], ["uuid", "b2759453-4b35-46b7-ab5e-e89cb095eda3"], ["support_identifier", "cs_4d918c0d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.620334"], ["updated_at", "2018-10-16 17:21:41.620334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -635039496 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3133ae8c-ccea-4f7d-9171-3e9d17de2ca8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca9d6000' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -635039496], ["username", "mary"], ["access_token", "fed1fd71f5d3d2dea9d786e958a8d2bf"], ["uuid", "3133ae8c-ccea-4f7d-9171-3e9d17de2ca8"], ["support_identifier", "cs_ca9d6000"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.624792"], ["updated_at", "2018-10-16 17:21:41.624792"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -901306376 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0c0c01c5-b519-4f2f-a4e6-d3f5e514d903' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d24aba84' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -901306376], ["username", "jstead"], ["access_token", "2214f32793111a057eb18f307582f7de"], ["uuid", "0c0c01c5-b519-4f2f-a4e6-d3f5e514d903"], ["support_identifier", "cs_d24aba84"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.629397"], ["updated_at", "2018-10-16 17:21:41.629397"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -180523025 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cbc57057-c9aa-4023-b74a-d135849d1940' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38039e63' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -180523025], ["username", "bigbear"], ["access_token", "76dc0291e7e51ee931aa83e2d7994e6f"], ["uuid", "cbc57057-c9aa-4023-b74a-d135849d1940"], ["support_identifier", "cs_38039e63"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.633679"], ["updated_at", "2018-10-16 17:21:41.633679"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_d24aba84') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_d24aba84') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2041638223 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '255707cd-8452-4075-9213-1d5b45e36b9a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_66dc173b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2041638223], ["username", "jstrav"], ["access_token", "6804c92ec5becf429642ace107f27952"], ["uuid", "255707cd-8452-4075-9213-1d5b45e36b9a"], ["support_identifier", "cs_66dc173b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.641540"], ["updated_at", "2018-10-16 17:21:41.641540"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -480005341 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f82bf66-a8fa-4a0a-933a-0bd88079d17c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c12220a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -480005341], ["username", "mary"], ["access_token", "26bf28990ec4d7e3d0cc585af6767913"], ["uuid", "2f82bf66-a8fa-4a0a-933a-0bd88079d17c"], ["support_identifier", "cs_2c12220a"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.646111"], ["updated_at", "2018-10-16 17:21:41.646111"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -825077797 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '59b082d4-a89d-40c7-9c33-41d88e8b2099' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e5f429a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -825077797], ["username", "jstead"], ["access_token", "a6751d0523bf64021ade9fcaff4d6da0"], ["uuid", "59b082d4-a89d-40c7-9c33-41d88e8b2099"], ["support_identifier", "cs_0e5f429a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.652900"], ["updated_at", "2018-10-16 17:21:41.652900"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -579188539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f211771a-7cd9-4e63-ad28-e6c8b4ebd3a8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_be265ee6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -579188539], ["username", "bigbear"], ["access_token", "a16886799e9b613d2062aaefe0d73f93"], ["uuid", "f211771a-7cd9-4e63-ad28-e6c8b4ebd3a8"], ["support_identifier", "cs_be265ee6"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.657351"], ["updated_at", "2018-10-16 17:21:41.657351"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -195493331 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ed604092-af7f-4823-848c-dc5013175a23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3fe2cdc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -195493331], ["username", "jstrav"], ["access_token", "6d55f3d956d6bf007253d505b7886b01"], ["uuid", "ed604092-af7f-4823-848c-dc5013175a23"], ["support_identifier", "cs_e3fe2cdc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.665590"], ["updated_at", "2018-10-16 17:21:41.665590"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -685279261 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b3193f0-4b5f-4840-830c-c1271dcd5e2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_70271df7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -685279261], ["username", "mary"], ["access_token", "c45494fb36a32e493613ff6c2db9cc6d"], ["uuid", "3b3193f0-4b5f-4840-830c-c1271dcd5e2a"], ["support_identifier", "cs_70271df7"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.669910"], ["updated_at", "2018-10-16 17:21:41.669910"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -943340624 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '93bb5f79-8240-4e49-a258-577ec3eeb0aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c68da7b6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -943340624], ["username", "jstead"], ["access_token", "ddfb35173ac03cd13f6f60108697095d"], ["uuid", "93bb5f79-8240-4e49-a258-577ec3eeb0aa"], ["support_identifier", "cs_c68da7b6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.674269"], ["updated_at", "2018-10-16 17:21:41.674269"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -879454360 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7cc78730-245a-4507-86f4-0b8888433cc4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5046c482' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -879454360], ["username", "bigbear"], ["access_token", "b072c94e8c8a54679e3664ecab1c7de6"], ["uuid", "7cc78730-245a-4507-86f4-0b8888433cc4"], ["support_identifier", "cs_5046c482"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.679253"], ["updated_at", "2018-10-16 17:21:41.679253"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2144389522 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea8a294a-cb53-433a-a7a1-22434ffe00c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b3e7642' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2144389522], ["username", "jstrav"], ["access_token", "f92b80a7006d8455c56c471ca39956f3"], ["uuid", "ea8a294a-cb53-433a-a7a1-22434ffe00c9"], ["support_identifier", "cs_7b3e7642"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.687178"], ["updated_at", "2018-10-16 17:21:41.687178"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433818642 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd7b1cdc-4631-4cf6-9cac-674aded1e70b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57b089a4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1433818642], ["username", "mary"], ["access_token", "c5995bea04c6fdc302e329e7839cd7b5"], ["uuid", "fd7b1cdc-4631-4cf6-9cac-674aded1e70b"], ["support_identifier", "cs_57b089a4"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.691350"], ["updated_at", "2018-10-16 17:21:41.691350"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1300877782 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1bc4c72a-d774-4a8c-8e8d-fe31100d3ef0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d8c800f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1300877782], ["username", "jstead"], ["access_token", "92e7abce35a12e0a6b924d936576a8c2"], ["uuid", "1bc4c72a-d774-4a8c-8e8d-fe31100d3ef0"], ["support_identifier", "cs_6d8c800f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.695673"], ["updated_at", "2018-10-16 17:21:41.695673"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1161241629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4f0c21eb-bbdd-45f3-abe6-735e8b024820' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f5c21a77' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1161241629], ["username", "bigbear"], ["access_token", "8f0690a28519e851aff8db1336ef39e1"], ["uuid", "4f0c21eb-bbdd-45f3-abe6-735e8b024820"], ["support_identifier", "cs_f5c21a77"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.701255"], ["updated_at", "2018-10-16 17:21:41.701255"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1063047844 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a289d98-5a93-4224-aebf-38f9ca9de314' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04d89c01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1063047844], ["username", "jstrav"], ["access_token", "b1143188f56f943dc392fe49a8f2636c"], ["uuid", "4a289d98-5a93-4224-aebf-38f9ca9de314"], ["support_identifier", "cs_04d89c01"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.709497"], ["updated_at", "2018-10-16 17:21:41.709497"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1095174777 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e42a2533-0974-421e-bc00-ae751695ea0a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e5df1630' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1095174777], ["username", "mary"], ["access_token", "c927ec39f3b397d2447179d60ea7bc25"], ["uuid", "e42a2533-0974-421e-bc00-ae751695ea0a"], ["support_identifier", "cs_e5df1630"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.714063"], ["updated_at", "2018-10-16 17:21:41.714063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1915460433 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74951206-b551-409f-8dc5-c8fc84b47dee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b0713e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1915460433], ["username", "jstead"], ["access_token", "72eb7b5bf995172ea555973e35c7d9e7"], ["uuid", "74951206-b551-409f-8dc5-c8fc84b47dee"], ["support_identifier", "cs_9b0713e5"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.718254"], ["updated_at", "2018-10-16 17:21:41.718254"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1954366058 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4dd02e13-70d2-4cba-912b-3d7896a1237c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0308bc8e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1954366058], ["username", "bigbear"], ["access_token", "715f6e080f1942a8e3f6fffd60c101f1"], ["uuid", "4dd02e13-70d2-4cba-912b-3d7896a1237c"], ["support_identifier", "cs_0308bc8e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.722600"], ["updated_at", "2018-10-16 17:21:41.722600"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -864129596 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68c99fc5-aa12-424d-bcc1-1bc9716e73bd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2562ac18' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -864129596], ["username", "jstrav"], ["access_token", "be69318f9975e62eca0666037dd310dd"], ["uuid", "68c99fc5-aa12-424d-bcc1-1bc9716e73bd"], ["support_identifier", "cs_2562ac18"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.734898"], ["updated_at", "2018-10-16 17:21:41.734898"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1675827805 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3fb1628e-987a-4269-8038-4042e0920fc8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b8bdb016' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1675827805], ["username", "mary"], ["access_token", "d3daed5f1d54d05a63a3c1756a8d91a5"], ["uuid", "3fb1628e-987a-4269-8038-4042e0920fc8"], ["support_identifier", "cs_b8bdb016"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.739629"], ["updated_at", "2018-10-16 17:21:41.739629"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -610881466 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab218796-7437-4d07-ba5f-8cc55acb5a49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df597a1b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -610881466], ["username", "jstead"], ["access_token", "977dec227dbe6d14722d0ee1ea706373"], ["uuid", "ab218796-7437-4d07-ba5f-8cc55acb5a49"], ["support_identifier", "cs_df597a1b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.743802"], ["updated_at", "2018-10-16 17:21:41.743802"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1527125360 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '328b5f7b-4e74-4c2e-b532-78deba82d261' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6842e9b7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1527125360], ["username", "bigbear"], ["access_token", "ea34c7fb144ab45799cab43f66d7b669"], ["uuid", "328b5f7b-4e74-4c2e-b532-78deba82d261"], ["support_identifier", "cs_6842e9b7"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.748265"], ["updated_at", "2018-10-16 17:21:41.748265"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -131572154 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b17107e3-7fd6-4db2-a9a2-95fc41e021c3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_692974c6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -131572154], ["username", "jstrav"], ["access_token", "9100e28a123555475cc581a1fe59b741"], ["uuid", "b17107e3-7fd6-4db2-a9a2-95fc41e021c3"], ["support_identifier", "cs_692974c6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.755933"], ["updated_at", "2018-10-16 17:21:41.755933"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2017821153 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd724c018-2c35-4cca-bdc5-b648b36a3b29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f68e329b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2017821153], ["username", "mary"], ["access_token", "07db0ad0aed83b2a708fb41117b640d1"], ["uuid", "d724c018-2c35-4cca-bdc5-b648b36a3b29"], ["support_identifier", "cs_f68e329b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.760023"], ["updated_at", "2018-10-16 17:21:41.760023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1259585643 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e0c9e54-8667-4177-ae10-17ab4c6c5d2f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b578069' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1259585643], ["username", "jstead"], ["access_token", "d9579166b79544d25ca9eccfc48bc2f3"], ["uuid", "9e0c9e54-8667-4177-ae10-17ab4c6c5d2f"], ["support_identifier", "cs_5b578069"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.764772"], ["updated_at", "2018-10-16 17:21:41.764772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1722642536 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8e648c7b-206f-433a-9c00-956bf5ea0aa4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b261ba8d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1722642536], ["username", "bigbear"], ["access_token", "16714600a8092d2342448e522e671af9"], ["uuid", "8e648c7b-206f-433a-9c00-956bf5ea0aa4"], ["support_identifier", "cs_b261ba8d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.768801"], ["updated_at", "2018-10-16 17:21:41.768801"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1259585643) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1259585643) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2030000975 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba6c1aa3-6b54-4297-b484-5964f1ddf847' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d85025c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2030000975], ["username", "jstrav"], ["access_token", "af4bc97adf29e683389af7bd72f20b55"], ["uuid", "ba6c1aa3-6b54-4297-b484-5964f1ddf847"], ["support_identifier", "cs_7d85025c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.776112"], ["updated_at", "2018-10-16 17:21:41.776112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2119115006 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dc28e6d5-bc06-48e7-bf17-09ba68bee399' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4587b045' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2119115006], ["username", "mary"], ["access_token", "eb7a8c5be2edff56390348438f076dc4"], ["uuid", "dc28e6d5-bc06-48e7-bf17-09ba68bee399"], ["support_identifier", "cs_4587b045"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.780959"], ["updated_at", "2018-10-16 17:21:41.780959"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1719941461 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f978c4e5-01da-4c62-90a0-a8c94bb41c34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4993e6ab' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1719941461], ["username", "jstead"], ["access_token", "6e6c969c1a81c76ef417cc20ebae8073"], ["uuid", "f978c4e5-01da-4c62-90a0-a8c94bb41c34"], ["support_identifier", "cs_4993e6ab"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.785147"], ["updated_at", "2018-10-16 17:21:41.785147"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -420376456 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f2e9a56a-7380-4d17-8b4d-fdbd2e88fe53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a201419' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -420376456], ["username", "bigbear"], ["access_token", "4ecfed27c41a52e16b3b40f21ed524dd"], ["uuid", "f2e9a56a-7380-4d17-8b4d-fdbd2e88fe53"], ["support_identifier", "cs_6a201419"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.789300"], ["updated_at", "2018-10-16 17:21:41.789300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2012314478 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c52ccb04-60e4-491d-bef8-c83eb2079f75' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6b09b135' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2012314478], ["username", "jstrav"], ["access_token", "a16affaaabd8775f9538134050a737ea"], ["uuid", "c52ccb04-60e4-491d-bef8-c83eb2079f75"], ["support_identifier", "cs_6b09b135"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.796705"], ["updated_at", "2018-10-16 17:21:41.796705"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1935176564 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '744d3095-cbd1-464f-b959-e40eb3f4ddb8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d9bd66d9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1935176564], ["username", "mary"], ["access_token", "c84cfb38685f916ad58eef7738ca9c75"], ["uuid", "744d3095-cbd1-464f-b959-e40eb3f4ddb8"], ["support_identifier", "cs_d9bd66d9"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.804657"], ["updated_at", "2018-10-16 17:21:41.804657"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -971773415 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9733ea07-65c2-461d-b726-0a83d73cd5b7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c1ccf49' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -971773415], ["username", "jstead"], ["access_token", "d0c23e3f31f44e00c3933b7e6d8a51f8"], ["uuid", "9733ea07-65c2-461d-b726-0a83d73cd5b7"], ["support_identifier", "cs_7c1ccf49"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.809565"], ["updated_at", "2018-10-16 17:21:41.809565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2033308409 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cf5b4533-8190-4883-bcca-b7e3aeb766ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5ba2ff03' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2033308409], ["username", "bigbear"], ["access_token", "e4b128a6f116a327439c006b0ec2267f"], ["uuid", "cf5b4533-8190-4883-bcca-b7e3aeb766ab"], ["support_identifier", "cs_5ba2ff03"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.814669"], ["updated_at", "2018-10-16 17:21:41.814669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2123007250 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5cc0ab9-6a44-480f-b384-37565aa72647' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_52269d31' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2123007250], ["username", "jstrav"], ["access_token", "7aeda2c4ccd05defa56bbbd8ae6d5be6"], ["uuid", "b5cc0ab9-6a44-480f-b384-37565aa72647"], ["support_identifier", "cs_52269d31"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.822471"], ["updated_at", "2018-10-16 17:21:41.822471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1366919062 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cc73e551-9e02-4d1b-87b4-18eb23a7e823' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1edd7be' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1366919062], ["username", "mary"], ["access_token", "65c5b02b15d187036d54e90f7c7c9ba6"], ["uuid", "cc73e551-9e02-4d1b-87b4-18eb23a7e823"], ["support_identifier", "cs_b1edd7be"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.826810"], ["updated_at", "2018-10-16 17:21:41.826810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1908678911 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5625bf40-ea71-48ef-ab24-bf29f3819b52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_031d6bb8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1908678911], ["username", "jstead"], ["access_token", "5a42d2c8ea7bc91ddcc694ac888b548d"], ["uuid", "5625bf40-ea71-48ef-ab24-bf29f3819b52"], ["support_identifier", "cs_031d6bb8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.831301"], ["updated_at", "2018-10-16 17:21:41.831301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1651309297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30828e1a-293c-4464-b7ab-1cc84929ee5e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4397884' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1651309297], ["username", "bigbear"], ["access_token", "9c61ef95b1b0ab325349635f3d9d8199"], ["uuid", "30828e1a-293c-4464-b7ab-1cc84929ee5e"], ["support_identifier", "cs_c4397884"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.835919"], ["updated_at", "2018-10-16 17:21:41.835919"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1840406286 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d786511-17fa-4f2a-a9b8-cd21e6ad89fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ba1ddc99' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1840406286], ["username", "jstrav"], ["access_token", "588d27ae0b9a6bb4f3eed47527047c32"], ["uuid", "3d786511-17fa-4f2a-a9b8-cd21e6ad89fb"], ["support_identifier", "cs_ba1ddc99"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.843306"], ["updated_at", "2018-10-16 17:21:41.843306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -111103323 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '88847d17-e4cd-4924-8236-256824f7652f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18d68e84' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -111103323], ["username", "mary"], ["access_token", "00dc53700046e4d94a5f3f15cfbcc0be"], ["uuid", "88847d17-e4cd-4924-8236-256824f7652f"], ["support_identifier", "cs_18d68e84"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.848443"], ["updated_at", "2018-10-16 17:21:41.848443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -663837428 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5ac80aa-bb36-4de5-baca-2359386ad273' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5dc4016' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -663837428], ["username", "jstead"], ["access_token", "f80e91244c3d62ace332eead4bad3f2b"], ["uuid", "b5ac80aa-bb36-4de5-baca-2359386ad273"], ["support_identifier", "cs_c5dc4016"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.852980"], ["updated_at", "2018-10-16 17:21:41.852980"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -751528715 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f30eb235-7037-474a-bfbd-c6a417df2f74' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56441248' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -751528715], ["username", "bigbear"], ["access_token", "7c6026dc1ea1c53692e0f749cec2d52b"], ["uuid", "f30eb235-7037-474a-bfbd-c6a417df2f74"], ["support_identifier", "cs_56441248"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.857424"], ["updated_at", "2018-10-16 17:21:41.857424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b5ac80aa-bb36-4de5-baca-2359386ad273') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b5ac80aa-bb36-4de5-baca-2359386ad273') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -944709974 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9af7c7c8-0994-4591-8ef2-c34a359ff26e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ba1a04e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -944709974], ["username", "jstrav"], ["access_token", "17047a15d481db6595ee7ebba5b2779f"], ["uuid", "9af7c7c8-0994-4591-8ef2-c34a359ff26e"], ["support_identifier", "cs_3ba1a04e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.865595"], ["updated_at", "2018-10-16 17:21:41.865595"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -535176271 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a72178ed-2666-4163-879e-3e54cd901f4b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f69e2789' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -535176271], ["username", "mary"], ["access_token", "39bc5160196304a4835bf2c300da1f69"], ["uuid", "a72178ed-2666-4163-879e-3e54cd901f4b"], ["support_identifier", "cs_f69e2789"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.870169"], ["updated_at", "2018-10-16 17:21:41.870169"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -88155400 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a0b1d35-00e1-49dc-ba49-16f46659c801' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a989ecc4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -88155400], ["username", "jstead"], ["access_token", "4f119a1622a7d7cca5a5b7af7eb37725"], ["uuid", "6a0b1d35-00e1-49dc-ba49-16f46659c801"], ["support_identifier", "cs_a989ecc4"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.876921"], ["updated_at", "2018-10-16 17:21:41.876921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1046905511 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '558af366-2aa0-4a21-bd17-a8ee538da3f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0724cb2' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1046905511], ["username", "bigbear"], ["access_token", "4f49103e6decb8b9d14f271b942ec5a3"], ["uuid", "558af366-2aa0-4a21-bd17-a8ee538da3f6"], ["support_identifier", "cs_a0724cb2"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.882928"], ["updated_at", "2018-10-16 17:21:41.882928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -340847297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ae64467d-3642-4fac-ad0e-bcd92216668b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2227ddaf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -340847297], ["username", "jstrav"], ["access_token", "fe4a8e24fd0c1716fe753bfbce830535"], ["uuid", "ae64467d-3642-4fac-ad0e-bcd92216668b"], ["support_identifier", "cs_2227ddaf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:41.892672"], ["updated_at", "2018-10-16 17:21:41.892672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1490390875 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68715385-775e-4d2f-87a2-ef197f6aac18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2fa487ca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1490390875], ["username", "mary"], ["access_token", "9d7202780ad9a3b270585c5a917db983"], ["uuid", "68715385-775e-4d2f-87a2-ef197f6aac18"], ["support_identifier", "cs_2fa487ca"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:41.897797"], ["updated_at", "2018-10-16 17:21:41.897797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1325010499 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '987b6cc3-bb9a-4cdb-ae89-b127ed043317' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0ee10aa1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1325010499], ["username", "jstead"], ["access_token", "c704c9794e79494e33bf2300ce942881"], ["uuid", "987b6cc3-bb9a-4cdb-ae89-b127ed043317"], ["support_identifier", "cs_0ee10aa1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:41.902179"], ["updated_at", "2018-10-16 17:21:41.902179"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -814999332 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f41ea674-5961-435e-bbf0-ff68b720dfa3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4b226c5e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -814999332], ["username", "bigbear"], ["access_token", "420957738d94bb335de2b8e0652f78e1"], ["uuid", "f41ea674-5961-435e-bbf0-ff68b720dfa3"], ["support_identifier", "cs_4b226c5e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:41.906274"], ["updated_at", "2018-10-16 17:21:41.906274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1714030984 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1e259f80-3d4b-4045-bdee-5cd4dcf20790' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d823db9d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1714030984], ["username", "billy_00"], ["access_token", "b7f3c05d96e27fa9406fbc1299cc1d70"], ["uuid", "1e259f80-3d4b-4045-bdee-5cd4dcf20790"], ["support_identifier", "cs_d823db9d"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:41.910459"], ["updated_at", "2018-10-16 17:21:41.910459"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -345837370 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd82f7700-68ef-48e5-8d05-4cbec1a295c1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35110bd3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -345837370], ["username", "billy_01"], ["access_token", "10be5822b2d84079fbf4020bef54d5c3"], ["uuid", "d82f7700-68ef-48e5-8d05-4cbec1a295c1"], ["support_identifier", "cs_35110bd3"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:41.915226"], ["updated_at", "2018-10-16 17:21:41.915226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -542964835 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a01107fb-063c-4e92-b569-fcf39f88fec4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0705daff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -542964835], ["username", "billy_02"], ["access_token", "96e11c2d823e4de073d10de6eac442cf"], ["uuid", "a01107fb-063c-4e92-b569-fcf39f88fec4"], ["support_identifier", "cs_0705daff"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:41.919376"], ["updated_at", "2018-10-16 17:21:41.919376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -616680848 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f19fbd1c-9bca-476f-801f-9023efe5bc82' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5ab5076d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -616680848], ["username", "billy_03"], ["access_token", "e76db4e3766fe4150760f88cfc822105"], ["uuid", "f19fbd1c-9bca-476f-801f-9023efe5bc82"], ["support_identifier", "cs_5ab5076d"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:41.923579"], ["updated_at", "2018-10-16 17:21:41.923579"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1493293112 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1f473e2-c872-400c-89fb-7e51f094364f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ed1f16c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1493293112], ["username", "billy_04"], ["access_token", "34ed3c2e7cbc7a7afe323d04f8517144"], ["uuid", "d1f473e2-c872-400c-89fb-7e51f094364f"], ["support_identifier", "cs_3ed1f16c"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:41.927806"], ["updated_at", "2018-10-16 17:21:41.927806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1025815215 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a53c7b75-4741-471f-b778-9231ba196c3f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_858576b4' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1025815215], ["username", "billy_05"], ["access_token", "9007284bd15266dd2b78ca6d840b2755"], ["uuid", "a53c7b75-4741-471f-b778-9231ba196c3f"], ["support_identifier", "cs_858576b4"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:41.933110"], ["updated_at", "2018-10-16 17:21:41.933110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1982350142 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c317f3b2-3607-499d-8832-0f71e7500876' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_86d1114e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1982350142], ["username", "billy_06"], ["access_token", "0886568698ecfab13bb24c5d72564064"], ["uuid", "c317f3b2-3607-499d-8832-0f71e7500876"], ["support_identifier", "cs_86d1114e"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:41.938067"], ["updated_at", "2018-10-16 17:21:41.938067"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -596608968 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd7cfc300-0040-42f1-bf46-3abe1a0e47a1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_724bee2d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -596608968], ["username", "billy_07"], ["access_token", "33d2dc8a0dea875a88ec4c0a5f75c0c1"], ["uuid", "d7cfc300-0040-42f1-bf46-3abe1a0e47a1"], ["support_identifier", "cs_724bee2d"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:41.942097"], ["updated_at", "2018-10-16 17:21:41.942097"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -968074928 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ecc42aae-d142-46b6-a17b-b3f0cad058f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c0029b4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -968074928], ["username", "billy_08"], ["access_token", "059c0b61517e20edc875d091ed0c454b"], ["uuid", "ecc42aae-d142-46b6-a17b-b3f0cad058f6"], ["support_identifier", "cs_9c0029b4"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:41.946577"], ["updated_at", "2018-10-16 17:21:41.946577"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1758538480 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f31b115f-c982-491d-98e2-ff802e0d7bfd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_07976852' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1758538480], ["username", "billy_09"], ["access_token", "011383145e74c24a0ae622e3b8ed18f0"], ["uuid", "f31b115f-c982-491d-98e2-ff802e0d7bfd"], ["support_identifier", "cs_07976852"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:41.950967"], ["updated_at", "2018-10-16 17:21:41.950967"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488771475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b73a420b-9118-4562-b262-cf1a26b5758c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_08b6c885' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -488771475], ["username", "billy_10"], ["access_token", "0ffe90890b14783760e003389ac402f4"], ["uuid", "b73a420b-9118-4562-b262-cf1a26b5758c"], ["support_identifier", "cs_08b6c885"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:41.955200"], ["updated_at", "2018-10-16 17:21:41.955200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -266873208 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd3ffcfb1-9559-425f-9a39-8c80315d2383' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5c961cba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -266873208], ["username", "billy_11"], ["access_token", "b952aadca601440f08a770cad816a974"], ["uuid", "d3ffcfb1-9559-425f-9a39-8c80315d2383"], ["support_identifier", "cs_5c961cba"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:41.959289"], ["updated_at", "2018-10-16 17:21:41.959289"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -877079004 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a80accdd-506e-41ab-a2ba-2f9c1c25c8c5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a3e4dcd' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -877079004], ["username", "billy_12"], ["access_token", "4ea4f0d742830c616c35bbbf3c49381f"], ["uuid", "a80accdd-506e-41ab-a2ba-2f9c1c25c8c5"], ["support_identifier", "cs_6a3e4dcd"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:41.964588"], ["updated_at", "2018-10-16 17:21:41.964588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1093375317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '404b121a-4e72-4d32-980f-6dbf754dac17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59b9e154' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1093375317], ["username", "billy_13"], ["access_token", "5cf3dca55c67160ec249c3ec8d39711f"], ["uuid", "404b121a-4e72-4d32-980f-6dbf754dac17"], ["support_identifier", "cs_59b9e154"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:41.970887"], ["updated_at", "2018-10-16 17:21:41.970887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -779234540 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '06ecca28-8278-452a-891a-9640aac7863b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96e752f1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -779234540], ["username", "billy_14"], ["access_token", "8a49cb61015d1009e598414384588f2a"], ["uuid", "06ecca28-8278-452a-891a-9640aac7863b"], ["support_identifier", "cs_96e752f1"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:41.975232"], ["updated_at", "2018-10-16 17:21:41.975232"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1521658614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47dbf995-6fcb-4c4c-951e-a273ffbd6963' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1ed76f6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1521658614], ["username", "billy_15"], ["access_token", "e4e9cd36df2263ed9e2bcaf0fa07d7bc"], ["uuid", "47dbf995-6fcb-4c4c-951e-a273ffbd6963"], ["support_identifier", "cs_b1ed76f6"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:41.979926"], ["updated_at", "2018-10-16 17:21:41.979926"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -75895843 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dfdf51b1-c8af-458b-889b-6dfaefbb1b56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aa0af851' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -75895843], ["username", "billy_16"], ["access_token", "4e5022e89e46f0fa04edf147b98cbdd4"], ["uuid", "dfdf51b1-c8af-458b-889b-6dfaefbb1b56"], ["support_identifier", "cs_aa0af851"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:41.984444"], ["updated_at", "2018-10-16 17:21:41.984444"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -366321745 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e7596288-cf0c-4d06-8cd6-cda892050ac1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e4a9d7d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -366321745], ["username", "billy_17"], ["access_token", "01e8535addb59247fcdbdc02184810ad"], ["uuid", "e7596288-cf0c-4d06-8cd6-cda892050ac1"], ["support_identifier", "cs_0e4a9d7d"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:41.988558"], ["updated_at", "2018-10-16 17:21:41.988558"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1490467306 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f735a7f-04c6-45ee-b000-faabd8ac184d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c59c701' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1490467306], ["username", "billy_18"], ["access_token", "dca000d2e6d4d65bac8eb237d969e40e"], ["uuid", "5f735a7f-04c6-45ee-b000-faabd8ac184d"], ["support_identifier", "cs_7c59c701"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:41.992772"], ["updated_at", "2018-10-16 17:21:41.992772"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1054642768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd154c062-0472-4292-95e5-bc985cbc4608' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1679f130' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1054642768], ["username", "billy_19"], ["access_token", "eb0afcc656004f3de31546796d8da663"], ["uuid", "d154c062-0472-4292-95e5-bc985cbc4608"], ["support_identifier", "cs_1679f130"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:41.997410"], ["updated_at", "2018-10-16 17:21:41.997410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2014965849 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14feccba-e9b8-4b48-966c-27abfcf44e78' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1174b2c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2014965849], ["username", "billy_20"], ["access_token", "c5ac4e33388f6c9f678f35cdbd639f2f"], ["uuid", "14feccba-e9b8-4b48-966c-27abfcf44e78"], ["support_identifier", "cs_d1174b2c"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:42.001918"], ["updated_at", "2018-10-16 17:21:42.001918"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1013831729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29883a00-3dda-41e8-9f59-67391fc8544d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1c7f809' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1013831729], ["username", "billy_21"], ["access_token", "eb9b550c2656270c732547a5163d7c7e"], ["uuid", "29883a00-3dda-41e8-9f59-67391fc8544d"], ["support_identifier", "cs_c1c7f809"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:42.006937"], ["updated_at", "2018-10-16 17:21:42.006937"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1893727375 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcd76628-e4de-43a0-92b2-cc85eba8a620' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33a57250' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1893727375], ["username", "billy_22"], ["access_token", "590d5d8b76a398c6101807fdfe7a1b8f"], ["uuid", "dcd76628-e4de-43a0-92b2-cc85eba8a620"], ["support_identifier", "cs_33a57250"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:42.011774"], ["updated_at", "2018-10-16 17:21:42.011774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -209502349 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '04388426-359c-42b2-9661-757ca73197c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5cc2696d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -209502349], ["username", "billy_23"], ["access_token", "c4b549e8290de81f26702d62f1d86bcb"], ["uuid", "04388426-359c-42b2-9661-757ca73197c4"], ["support_identifier", "cs_5cc2696d"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:42.016301"], ["updated_at", "2018-10-16 17:21:42.016301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -355786782 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0afa6f3d-e740-4490-a2d3-24522b3f8d3a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35edad56' LIMIT 1 + SQL (1.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -355786782], ["username", "billy_24"], ["access_token", "779a30729922f7dc545eb83b29a98f81"], ["uuid", "0afa6f3d-e740-4490-a2d3-24522b3f8d3a"], ["support_identifier", "cs_35edad56"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:42.020808"], ["updated_at", "2018-10-16 17:21:42.020808"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -529783149 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e240950f-b92b-4422-95f6-cb7b21e27103' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aa70f8d9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -529783149], ["username", "billy_25"], ["access_token", "3c90d5ce6e2ce917402532ccb7697a43"], ["uuid", "e240950f-b92b-4422-95f6-cb7b21e27103"], ["support_identifier", "cs_aa70f8d9"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:42.026807"], ["updated_at", "2018-10-16 17:21:42.026807"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1031838167 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad40fc12-db2a-421e-b0cf-47c2627ac96d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e91d3777' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1031838167], ["username", "billy_26"], ["access_token", "294c1fa7270add0d87e2fcb878122c39"], ["uuid", "ad40fc12-db2a-421e-b0cf-47c2627ac96d"], ["support_identifier", "cs_e91d3777"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:42.031327"], ["updated_at", "2018-10-16 17:21:42.031327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2072711371 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6dfb9f75-50b8-43ee-bcd7-7fa72f0b9e88' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01fd5dc6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2072711371], ["username", "billy_27"], ["access_token", "33a1b2fa5f4aeb34a7c8fc0087b6ea77"], ["uuid", "6dfb9f75-50b8-43ee-bcd7-7fa72f0b9e88"], ["support_identifier", "cs_01fd5dc6"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:42.035654"], ["updated_at", "2018-10-16 17:21:42.035654"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2144554780 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '78480e9f-afc7-4ebb-aa07-2ef1e83477ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d35d2aa3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2144554780], ["username", "billy_28"], ["access_token", "1886fa429a5afbb2316165ca9dcb0f9c"], ["uuid", "78480e9f-afc7-4ebb-aa07-2ef1e83477ef"], ["support_identifier", "cs_d35d2aa3"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:42.040035"], ["updated_at", "2018-10-16 17:21:42.040035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -753138259 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef946111-b39f-473e-93a6-9b40fa0353a3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e231f725' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -753138259], ["username", "billy_29"], ["access_token", "b6e5227d7f04f5e14279870544e6ae03"], ["uuid", "ef946111-b39f-473e-93a6-9b40fa0353a3"], ["support_identifier", "cs_e231f725"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:42.044590"], ["updated_at", "2018-10-16 17:21:42.044590"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1396051866 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '144b5e82-63c2-42ab-bcce-ac1ca503d66b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d2b0e439' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1396051866], ["username", "billy_30"], ["access_token", "1e1604f8be6d01c5d957470019fa6200"], ["uuid", "144b5e82-63c2-42ab-bcce-ac1ca503d66b"], ["support_identifier", "cs_d2b0e439"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:42.049134"], ["updated_at", "2018-10-16 17:21:42.049134"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1390780013 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d39bca7-0b25-4ac6-9f02-258c83be247e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4dd1a75' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1390780013], ["username", "billy_31"], ["access_token", "5da7af5cb7859086706ca5dad7ee43a0"], ["uuid", "7d39bca7-0b25-4ac6-9f02-258c83be247e"], ["support_identifier", "cs_b4dd1a75"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:42.053625"], ["updated_at", "2018-10-16 17:21:42.053625"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1766166650 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a297a303-cdb2-4e17-a6e4-9fb053d921ed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f32d7228' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1766166650], ["username", "billy_32"], ["access_token", "a841a314e9f09cfb96e96ebaa7d938c7"], ["uuid", "a297a303-cdb2-4e17-a6e4-9fb053d921ed"], ["support_identifier", "cs_f32d7228"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:42.058328"], ["updated_at", "2018-10-16 17:21:42.058328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -7967901 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7993b368-c9dc-4ee4-a65e-26554c333ef3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fb932e96' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -7967901], ["username", "billy_33"], ["access_token", "2fb4aa7eabcbdfd7662cc61f64285c6e"], ["uuid", "7993b368-c9dc-4ee4-a65e-26554c333ef3"], ["support_identifier", "cs_fb932e96"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:42.063255"], ["updated_at", "2018-10-16 17:21:42.063255"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1765336489 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cbfe9c62-0cef-43a1-9404-6679deafb512' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4972a62' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1765336489], ["username", "billy_34"], ["access_token", "73924cde5ebf81a796480d43125456e6"], ["uuid", "cbfe9c62-0cef-43a1-9404-6679deafb512"], ["support_identifier", "cs_c4972a62"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:42.067997"], ["updated_at", "2018-10-16 17:21:42.067997"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -176589006 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09101e2a-20d4-4868-9e82-3abcebe18f1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca14069d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -176589006], ["username", "billy_35"], ["access_token", "fdbc0270e35425899eefd121c91a2323"], ["uuid", "09101e2a-20d4-4868-9e82-3abcebe18f1c"], ["support_identifier", "cs_ca14069d"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:42.072597"], ["updated_at", "2018-10-16 17:21:42.072597"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561458034 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2fac4c6a-09c2-43ed-b125-fed98afa71c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99771e54' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1561458034], ["username", "billy_36"], ["access_token", "eb7f214be4b85e0d9086cccaa2ead257"], ["uuid", "2fac4c6a-09c2-43ed-b125-fed98afa71c6"], ["support_identifier", "cs_99771e54"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:42.077162"], ["updated_at", "2018-10-16 17:21:42.077162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -266083730 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd43ba96f-0e6f-4d69-9899-ea040d31d17f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3495763f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -266083730], ["username", "billy_37"], ["access_token", "5f8e58667344235b2c8a753e3e6cb189"], ["uuid", "d43ba96f-0e6f-4d69-9899-ea040d31d17f"], ["support_identifier", "cs_3495763f"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:42.081794"], ["updated_at", "2018-10-16 17:21:42.081794"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1715652568 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a75d9382-a7fe-4bfc-af87-1ec997011c1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bfa63b47' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1715652568], ["username", "billy_38"], ["access_token", "6ca733334655d12d15353dd3e2fa4518"], ["uuid", "a75d9382-a7fe-4bfc-af87-1ec997011c1e"], ["support_identifier", "cs_bfa63b47"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:42.086568"], ["updated_at", "2018-10-16 17:21:42.086568"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -716971892 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'acb05ee3-cf9f-449c-ab28-95695efdcaab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e26d107f' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -716971892], ["username", "billy_39"], ["access_token", "7b362b77a86965f7db8d170cb01916eb"], ["uuid", "acb05ee3-cf9f-449c-ab28-95695efdcaab"], ["support_identifier", "cs_e26d107f"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:42.091515"], ["updated_at", "2018-10-16 17:21:42.091515"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -722508055 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33a3faab-64d4-4246-b155-4b2da8016454' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e6b01bb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -722508055], ["username", "billy_40"], ["access_token", "1921d656466b7eb66b7ff22480396e57"], ["uuid", "33a3faab-64d4-4246-b155-4b2da8016454"], ["support_identifier", "cs_0e6b01bb"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:42.096748"], ["updated_at", "2018-10-16 17:21:42.096748"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -942625834 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad578dba-2d20-4b59-85b9-db795c173574' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1b9ac4d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -942625834], ["username", "billy_41"], ["access_token", "45b5e2f874cd660bfba4945b1922b6e2"], ["uuid", "ad578dba-2d20-4b59-85b9-db795c173574"], ["support_identifier", "cs_c1b9ac4d"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:42.101961"], ["updated_at", "2018-10-16 17:21:42.101961"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2008839468 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f19348e-34eb-4e53-9336-19c6e41eb33e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e7fa808' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2008839468], ["username", "billy_42"], ["access_token", "d6bf1f0f73d58186a5e5d662f40788af"], ["uuid", "0f19348e-34eb-4e53-9336-19c6e41eb33e"], ["support_identifier", "cs_1e7fa808"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:42.107063"], ["updated_at", "2018-10-16 17:21:42.107063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -376052989 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a019757c-5037-49cb-8428-9e1ab0b836b9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b492b145' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -376052989], ["username", "billy_43"], ["access_token", "9a5af19fe3661d748e4714be5e3a5003"], ["uuid", "a019757c-5037-49cb-8428-9e1ab0b836b9"], ["support_identifier", "cs_b492b145"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:42.111551"], ["updated_at", "2018-10-16 17:21:42.111551"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1947772344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c9c8583-d42d-42bd-aa8c-f9847ec1cc02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_251c9e23' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1947772344], ["username", "billy_44"], ["access_token", "4de959725fa05c6d1bd0a62af87af6a2"], ["uuid", "9c9c8583-d42d-42bd-aa8c-f9847ec1cc02"], ["support_identifier", "cs_251c9e23"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:42.119063"], ["updated_at", "2018-10-16 17:21:42.119063"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -908328422 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea370f4e-2f0f-4e50-a487-4a495f5f3434' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a86fffcc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -908328422], ["username", "billy_45"], ["access_token", "2b979b234d114ab421541a8019f21a1c"], ["uuid", "ea370f4e-2f0f-4e50-a487-4a495f5f3434"], ["support_identifier", "cs_a86fffcc"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:42.126919"], ["updated_at", "2018-10-16 17:21:42.126919"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1487681324 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ecd55e1-f1aa-40ca-ada7-d661d8917e8c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9a99ac8a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1487681324], ["username", "jstrav"], ["access_token", "2d6d3bacba81242314a1975e2140c2c2"], ["uuid", "8ecd55e1-f1aa-40ca-ada7-d661d8917e8c"], ["support_identifier", "cs_9a99ac8a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:42.136307"], ["updated_at", "2018-10-16 17:21:42.136307"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -987137552 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b638f8e-4c7a-4086-9daf-ab87e4edcbd1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_863039df' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -987137552], ["username", "mary"], ["access_token", "a588d761176978c2f368c4a6b138a17f"], ["uuid", "3b638f8e-4c7a-4086-9daf-ab87e4edcbd1"], ["support_identifier", "cs_863039df"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:42.140565"], ["updated_at", "2018-10-16 17:21:42.140565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1098959078 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e01bb436-54b9-4c42-ad91-a5ba92715aa1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e33b44da' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1098959078], ["username", "jstead"], ["access_token", "2bce549978a7e5362d2bddbe7d776636"], ["uuid", "e01bb436-54b9-4c42-ad91-a5ba92715aa1"], ["support_identifier", "cs_e33b44da"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:42.145081"], ["updated_at", "2018-10-16 17:21:42.145081"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2133823485 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '00f7caca-5ff4-42d9-83fa-f5e9f586b013' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3462d2f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2133823485], ["username", "bigbear"], ["access_token", "ed4c0d018f0fba08e5b123b9a57c7287"], ["uuid", "00f7caca-5ff4-42d9-83fa-f5e9f586b013"], ["support_identifier", "cs_c3462d2f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:42.149817"], ["updated_at", "2018-10-16 17:21:42.149817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219110553 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f5242b7-abbe-49f1-a9ca-59104cd7ebbb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_275606af' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1219110553], ["username", "billy_00"], ["access_token", "8970f6919b1ad45e5857e569a8573cfc"], ["uuid", "6f5242b7-abbe-49f1-a9ca-59104cd7ebbb"], ["support_identifier", "cs_275606af"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:42.153945"], ["updated_at", "2018-10-16 17:21:42.153945"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96428056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '31aee496-ac34-4a45-bd4c-3c692b8ee47b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5520dc30' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -96428056], ["username", "billy_01"], ["access_token", "cf6b469e67df256a3584200e7c8e5b02"], ["uuid", "31aee496-ac34-4a45-bd4c-3c692b8ee47b"], ["support_identifier", "cs_5520dc30"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:42.158138"], ["updated_at", "2018-10-16 17:21:42.158138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2138983974 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73cc9e6a-3c8b-410b-966c-53deab0a883e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f340b966' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2138983974], ["username", "billy_02"], ["access_token", "f30fec5cf8d27e0f378410ed11426f8c"], ["uuid", "73cc9e6a-3c8b-410b-966c-53deab0a883e"], ["support_identifier", "cs_f340b966"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:42.162798"], ["updated_at", "2018-10-16 17:21:42.162798"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1555521380 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b3cb9e8-2b30-4d0c-8749-6b1901bd1f14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_de9485aa' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1555521380], ["username", "billy_03"], ["access_token", "c7573eab36a4252585e0faaece0f4cb6"], ["uuid", "1b3cb9e8-2b30-4d0c-8749-6b1901bd1f14"], ["support_identifier", "cs_de9485aa"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:42.170335"], ["updated_at", "2018-10-16 17:21:42.170335"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561889448 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9708d290-ff2b-4e59-a37b-fa31d9f627a8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1147c35c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1561889448], ["username", "billy_04"], ["access_token", "8516f2dfd49aa32798cd5e48625b4693"], ["uuid", "9708d290-ff2b-4e59-a37b-fa31d9f627a8"], ["support_identifier", "cs_1147c35c"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:42.174542"], ["updated_at", "2018-10-16 17:21:42.174542"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -494720779 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b69ad155-43a2-4c22-98e3-2cf7c4082e97' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aef27845' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -494720779], ["username", "billy_05"], ["access_token", "5a5f177b4c1b37bb8f0dd1bcbcf880ad"], ["uuid", "b69ad155-43a2-4c22-98e3-2cf7c4082e97"], ["support_identifier", "cs_aef27845"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:42.178710"], ["updated_at", "2018-10-16 17:21:42.178710"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1894300887 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e921afa4-394e-4f76-83b0-917ae3659f75' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01a22c4c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1894300887], ["username", "billy_06"], ["access_token", "ff07439afc870899130a45680383e875"], ["uuid", "e921afa4-394e-4f76-83b0-917ae3659f75"], ["support_identifier", "cs_01a22c4c"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:42.183563"], ["updated_at", "2018-10-16 17:21:42.183563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992551651 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcda42a5-6b27-41ac-b1c1-85a36fa139e8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efd7bad4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -992551651], ["username", "billy_07"], ["access_token", "69d75d572321b837a3e924d23169f1ba"], ["uuid", "dcda42a5-6b27-41ac-b1c1-85a36fa139e8"], ["support_identifier", "cs_efd7bad4"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:42.187699"], ["updated_at", "2018-10-16 17:21:42.187699"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -365700615 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5da6ba3a-42ae-4d95-ab97-535ca3978758' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_13d2a46b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -365700615], ["username", "billy_08"], ["access_token", "bfe5132142ef6336eed6054f2ab165a4"], ["uuid", "5da6ba3a-42ae-4d95-ab97-535ca3978758"], ["support_identifier", "cs_13d2a46b"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:42.192152"], ["updated_at", "2018-10-16 17:21:42.192152"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805383407 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c30d4d41-72ec-4154-8d90-21111023d64f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d7ada95' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -805383407], ["username", "billy_09"], ["access_token", "96423d9214ecdeb947fba939b65d7b60"], ["uuid", "c30d4d41-72ec-4154-8d90-21111023d64f"], ["support_identifier", "cs_1d7ada95"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:42.196747"], ["updated_at", "2018-10-16 17:21:42.196747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1402176442 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd56faa68-d1ed-47aa-b4a9-aec0f1bf1a2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_51d795b7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1402176442], ["username", "billy_10"], ["access_token", "d572fc677c85bca5e7d401f1852bc049"], ["uuid", "d56faa68-d1ed-47aa-b4a9-aec0f1bf1a2a"], ["support_identifier", "cs_51d795b7"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:42.201014"], ["updated_at", "2018-10-16 17:21:42.201014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1574210709 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea09dbe1-aeeb-47bd-9a1a-abf513cffc0d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a021859b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1574210709], ["username", "billy_11"], ["access_token", "b93dd1cd06b773209f4079f4cfadbe82"], ["uuid", "ea09dbe1-aeeb-47bd-9a1a-abf513cffc0d"], ["support_identifier", "cs_a021859b"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:42.205103"], ["updated_at", "2018-10-16 17:21:42.205103"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1918578766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2eb7734a-1f96-4a1e-9719-c3c0ecff587f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_55f25eb3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1918578766], ["username", "billy_12"], ["access_token", "d6b4fbeeac010cbfd4a36d19904ce29e"], ["uuid", "2eb7734a-1f96-4a1e-9719-c3c0ecff587f"], ["support_identifier", "cs_55f25eb3"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:42.209129"], ["updated_at", "2018-10-16 17:21:42.209129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1700863281 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7ffeb908-7d13-4a85-a1a5-77a90721bee1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c8df6dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1700863281], ["username", "billy_13"], ["access_token", "6419fc5ff3c9d7570829a987d646b467"], ["uuid", "7ffeb908-7d13-4a85-a1a5-77a90721bee1"], ["support_identifier", "cs_3c8df6dc"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:42.213446"], ["updated_at", "2018-10-16 17:21:42.213446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -713419962 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b62390cd-1f0b-4c6b-ba50-9e2f7c39854f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_37f8beeb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -713419962], ["username", "billy_14"], ["access_token", "8e3c067de00acd39d1ecd8407c2538bd"], ["uuid", "b62390cd-1f0b-4c6b-ba50-9e2f7c39854f"], ["support_identifier", "cs_37f8beeb"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:42.217612"], ["updated_at", "2018-10-16 17:21:42.217612"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2057738617 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '794b7a71-273e-4211-ab6e-4423bf44e7af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5c20882' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2057738617], ["username", "billy_15"], ["access_token", "23c83afc096dc10c05c6a4c8fd354fd0"], ["uuid", "794b7a71-273e-4211-ab6e-4423bf44e7af"], ["support_identifier", "cs_b5c20882"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:42.221677"], ["updated_at", "2018-10-16 17:21:42.221677"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1368381302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68cb5753-2c53-4634-bc07-9a29f7e58074' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_594f1880' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1368381302], ["username", "billy_16"], ["access_token", "64d85f531316360c5fd012c7abc1d0f6"], ["uuid", "68cb5753-2c53-4634-bc07-9a29f7e58074"], ["support_identifier", "cs_594f1880"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:42.225739"], ["updated_at", "2018-10-16 17:21:42.225739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -338458624 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'acde40f1-26fa-42b1-91f5-75113cc7a9ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56465bf6' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -338458624], ["username", "billy_17"], ["access_token", "16b66a6800b08c734b0cde6822283000"], ["uuid", "acde40f1-26fa-42b1-91f5-75113cc7a9ec"], ["support_identifier", "cs_56465bf6"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:42.232359"], ["updated_at", "2018-10-16 17:21:42.232359"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -544074297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aee4a188-ed67-42a4-a7d5-ebf24a7b44ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fbd7c41' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -544074297], ["username", "billy_18"], ["access_token", "88f9cc12ca27694869865b53c8eb1e8b"], ["uuid", "aee4a188-ed67-42a4-a7d5-ebf24a7b44ee"], ["support_identifier", "cs_0fbd7c41"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:42.237819"], ["updated_at", "2018-10-16 17:21:42.237819"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1267113510 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0ff2fc78-aaab-4464-933a-7c24d654630f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12ad711f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1267113510], ["username", "billy_19"], ["access_token", "b9a2810b11068264ba452d60102d0dc3"], ["uuid", "0ff2fc78-aaab-4464-933a-7c24d654630f"], ["support_identifier", "cs_12ad711f"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:42.241985"], ["updated_at", "2018-10-16 17:21:42.241985"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2042146541 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8ea236e-5aff-479c-923f-c3ecf7716219' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3b3732e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2042146541], ["username", "billy_20"], ["access_token", "67d86f07886f69d1fd4d06bca88ce120"], ["uuid", "f8ea236e-5aff-479c-923f-c3ecf7716219"], ["support_identifier", "cs_c3b3732e"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:42.246436"], ["updated_at", "2018-10-16 17:21:42.246436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1570422209 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b7a10d0-8721-4e4d-85e8-d078cfefcb6f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a27e7219' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1570422209], ["username", "billy_21"], ["access_token", "e77036b12572fbb354a03d6b5080421b"], ["uuid", "3b7a10d0-8721-4e4d-85e8-d078cfefcb6f"], ["support_identifier", "cs_a27e7219"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:42.251306"], ["updated_at", "2018-10-16 17:21:42.251306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2144888274 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c0473e3-2098-4b73-9b4a-a1ba0991ca23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_afaa98ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2144888274], ["username", "billy_22"], ["access_token", "0db21e09d5e1aafe99bdbcd1ae13befa"], ["uuid", "5c0473e3-2098-4b73-9b4a-a1ba0991ca23"], ["support_identifier", "cs_afaa98ec"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:42.255430"], ["updated_at", "2018-10-16 17:21:42.255430"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -429837351 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '67dc310b-250f-434f-816d-c2692f3f3b6f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af44ac0a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -429837351], ["username", "billy_23"], ["access_token", "72b39d5de0d365b051f2108b0cbf47f4"], ["uuid", "67dc310b-250f-434f-816d-c2692f3f3b6f"], ["support_identifier", "cs_af44ac0a"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:42.259495"], ["updated_at", "2018-10-16 17:21:42.259495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1101316766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aca01fcd-5a13-44c3-9f0f-84fd7540290f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf625385' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1101316766], ["username", "billy_24"], ["access_token", "611f9e070b1602df3babff8e59201241"], ["uuid", "aca01fcd-5a13-44c3-9f0f-84fd7540290f"], ["support_identifier", "cs_bf625385"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:42.264002"], ["updated_at", "2018-10-16 17:21:42.264002"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1078586038 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c47f5a2a-0fef-4c47-8e30-b882bab45cc0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bfb917d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1078586038], ["username", "billy_25"], ["access_token", "ff78a9cc78858dba62664cf7ece434a8"], ["uuid", "c47f5a2a-0fef-4c47-8e30-b882bab45cc0"], ["support_identifier", "cs_bfb917d1"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:42.268329"], ["updated_at", "2018-10-16 17:21:42.268329"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -136331927 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'efd68bea-96b4-4f57-b93c-70aea35ce8ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d53a6578' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -136331927], ["username", "billy_26"], ["access_token", "2d3d9252a9c79dfefc046415ab949abb"], ["uuid", "efd68bea-96b4-4f57-b93c-70aea35ce8ab"], ["support_identifier", "cs_d53a6578"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:42.272559"], ["updated_at", "2018-10-16 17:21:42.272559"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -547285932 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ceab6a36-5c4d-4132-ad53-bc1b348c5df0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bc28f85b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -547285932], ["username", "billy_27"], ["access_token", "49f647a7d521df6de7c63a67d2ebeeaa"], ["uuid", "ceab6a36-5c4d-4132-ad53-bc1b348c5df0"], ["support_identifier", "cs_bc28f85b"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:42.276771"], ["updated_at", "2018-10-16 17:21:42.276771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1060168924 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ddf48d6-bd11-4b77-9d8c-d423aa19b03f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e05469fa' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1060168924], ["username", "billy_28"], ["access_token", "1745d67d770d86581203a82cf04f367a"], ["uuid", "4ddf48d6-bd11-4b77-9d8c-d423aa19b03f"], ["support_identifier", "cs_e05469fa"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:42.283444"], ["updated_at", "2018-10-16 17:21:42.283444"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2123688947 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b5a42ab-78ad-4e8a-b98f-d4f2d8c63c85' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4fae1474' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2123688947], ["username", "billy_29"], ["access_token", "b0dcf788a8930a4d9e7eb49330e38e23"], ["uuid", "9b5a42ab-78ad-4e8a-b98f-d4f2d8c63c85"], ["support_identifier", "cs_4fae1474"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:42.287915"], ["updated_at", "2018-10-16 17:21:42.287915"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1411255252 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '46806bab-57ca-448b-a41b-55eb0b75d5b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ffa1ec75' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1411255252], ["username", "billy_30"], ["access_token", "afd465f06a3b090a6eaa09c20b688f5f"], ["uuid", "46806bab-57ca-448b-a41b-55eb0b75d5b3"], ["support_identifier", "cs_ffa1ec75"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:42.291968"], ["updated_at", "2018-10-16 17:21:42.291968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1650267520 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8afea425-5989-4b7c-9e1b-45edf0c0de56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bab95f9b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1650267520], ["username", "billy_31"], ["access_token", "5a8bc9cc28282d882b666789d3b18986"], ["uuid", "8afea425-5989-4b7c-9e1b-45edf0c0de56"], ["support_identifier", "cs_bab95f9b"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:42.296498"], ["updated_at", "2018-10-16 17:21:42.296498"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -747774310 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a512d9a-5918-412c-b701-6ea66b1ace3d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3b3e8117' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -747774310], ["username", "billy_32"], ["access_token", "d6ada2fc55a13909e459ebcecca34269"], ["uuid", "6a512d9a-5918-412c-b701-6ea66b1ace3d"], ["support_identifier", "cs_3b3e8117"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:42.300955"], ["updated_at", "2018-10-16 17:21:42.300955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -36905786 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '044149a6-d538-4e52-b56b-9ef54875ee63' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6cd08a4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -36905786], ["username", "billy_33"], ["access_token", "79ce048985a0fb7e9a983f2c4d2d8146"], ["uuid", "044149a6-d538-4e52-b56b-9ef54875ee63"], ["support_identifier", "cs_f6cd08a4"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:42.305180"], ["updated_at", "2018-10-16 17:21:42.305180"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2053138436 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e02d3d4e-746d-4e85-8808-ac6a0e93b43b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dcdd0228' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2053138436], ["username", "billy_34"], ["access_token", "bc60b08cfb74aea4462c933fbdd20659"], ["uuid", "e02d3d4e-746d-4e85-8808-ac6a0e93b43b"], ["support_identifier", "cs_dcdd0228"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:42.309208"], ["updated_at", "2018-10-16 17:21:42.309208"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -70223340 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd61ec501-d3f2-434c-911c-2f61cf614a30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9a297cf' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -70223340], ["username", "billy_35"], ["access_token", "006ee99edd31e65c0feace72fe84f896"], ["uuid", "d61ec501-d3f2-434c-911c-2f61cf614a30"], ["support_identifier", "cs_b9a297cf"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:42.314925"], ["updated_at", "2018-10-16 17:21:42.314925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1357857704 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b57f36c-1944-439d-8be3-a53cdf2363cb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c762cfb3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1357857704], ["username", "billy_36"], ["access_token", "84ee0636e43632646855cf338797788b"], ["uuid", "3b57f36c-1944-439d-8be3-a53cdf2363cb"], ["support_identifier", "cs_c762cfb3"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:42.320963"], ["updated_at", "2018-10-16 17:21:42.320963"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1297606066 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cac08106-3f01-4fd4-918a-1a220f6d06d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_618259e4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1297606066], ["username", "billy_37"], ["access_token", "68acc082c1fbe5b94d15570ecbe38f40"], ["uuid", "cac08106-3f01-4fd4-918a-1a220f6d06d1"], ["support_identifier", "cs_618259e4"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:42.325084"], ["updated_at", "2018-10-16 17:21:42.325084"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1427128848 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '19b9a908-d74d-477f-93e1-af8b1b575289' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_048d1839' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1427128848], ["username", "billy_38"], ["access_token", "e50f66ee622ef3823e5d4a491d5034ea"], ["uuid", "19b9a908-d74d-477f-93e1-af8b1b575289"], ["support_identifier", "cs_048d1839"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:42.329814"], ["updated_at", "2018-10-16 17:21:42.329814"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -623669709 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '439d3078-53a6-4033-89d0-c1275e0d2445' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01e6c17e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -623669709], ["username", "billy_39"], ["access_token", "4d89382e00d0bcaf0fddfad5d78e8c92"], ["uuid", "439d3078-53a6-4033-89d0-c1275e0d2445"], ["support_identifier", "cs_01e6c17e"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:42.334443"], ["updated_at", "2018-10-16 17:21:42.334443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -595711525 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2de658a9-d8f0-4d7d-bbce-c98b65a1a121' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b36cade' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -595711525], ["username", "billy_40"], ["access_token", "e635f77e40b141546d1084407378743d"], ["uuid", "2de658a9-d8f0-4d7d-bbce-c98b65a1a121"], ["support_identifier", "cs_7b36cade"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:42.338613"], ["updated_at", "2018-10-16 17:21:42.338613"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -919794528 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '82c462c2-84ee-4ad5-9d7a-24a463c543fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a1cac4b' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -919794528], ["username", "billy_41"], ["access_token", "08911b32dc6edcd2b8a9e78d7c7a014f"], ["uuid", "82c462c2-84ee-4ad5-9d7a-24a463c543fa"], ["support_identifier", "cs_4a1cac4b"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:42.342719"], ["updated_at", "2018-10-16 17:21:42.342719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2127660256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6379f929-212e-40a9-851b-42cbb98046a7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0949d86f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2127660256], ["username", "billy_42"], ["access_token", "7621f7e62883ffeb6208f7aa0c5bf29f"], ["uuid", "6379f929-212e-40a9-851b-42cbb98046a7"], ["support_identifier", "cs_0949d86f"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:42.350091"], ["updated_at", "2018-10-16 17:21:42.350091"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1290190576 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54ec8fd0-dbfa-4679-a9f3-af4363d4407e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6e64f95d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1290190576], ["username", "billy_43"], ["access_token", "3e7c6bc50f3f83e5a1a71e23bff5520a"], ["uuid", "54ec8fd0-dbfa-4679-a9f3-af4363d4407e"], ["support_identifier", "cs_6e64f95d"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:42.354950"], ["updated_at", "2018-10-16 17:21:42.354950"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -199430821 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c850a5f-c100-4246-b38c-2ed96405febc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_300350ba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -199430821], ["username", "billy_44"], ["access_token", "61b964829af3b44f18ee7d41d21a486d"], ["uuid", "7c850a5f-c100-4246-b38c-2ed96405febc"], ["support_identifier", "cs_300350ba"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:42.359165"], ["updated_at", "2018-10-16 17:21:42.359165"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -738898081 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f9b8663-01ad-4387-8abb-4931dfdedb82' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_83e13174' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -738898081], ["username", "billy_45"], ["access_token", "5c0d6be1e62a52b254f41814499d3af5"], ["uuid", "8f9b8663-01ad-4387-8abb-4931dfdedb82"], ["support_identifier", "cs_83e13174"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:42.367770"], ["updated_at", "2018-10-16 17:21:42.367770"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2036827466 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '07289c58-4f39-41ab-9359-e5d2ea763914' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f5aca24' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2036827466], ["username", "jstrav"], ["access_token", "4b8448e4b0a43b5de5264ebf333c66c0"], ["uuid", "07289c58-4f39-41ab-9359-e5d2ea763914"], ["support_identifier", "cs_9f5aca24"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:42.377169"], ["updated_at", "2018-10-16 17:21:42.377169"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2111088119 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f9219db-7798-4aef-9f38-e67d1d8faffd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a43f9f1a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2111088119], ["username", "mary"], ["access_token", "0b868ff408735a2999703d7717e51bbe"], ["uuid", "5f9219db-7798-4aef-9f38-e67d1d8faffd"], ["support_identifier", "cs_a43f9f1a"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:42.382195"], ["updated_at", "2018-10-16 17:21:42.382195"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -485613145 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '98402f33-db60-47b0-8a8b-522421e741e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b10e02e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -485613145], ["username", "jstead"], ["access_token", "5ebcc8a7965cc40d3a27d46c030eda50"], ["uuid", "98402f33-db60-47b0-8a8b-522421e741e5"], ["support_identifier", "cs_b10e02e1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:42.386382"], ["updated_at", "2018-10-16 17:21:42.386382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1558395615 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38bac4ac-3001-4f68-b5bb-ede050c10b82' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f19eb38' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1558395615], ["username", "bigbear"], ["access_token", "bd14e3a39cd9d954c3495e50f99caf81"], ["uuid", "38bac4ac-3001-4f68-b5bb-ede050c10b82"], ["support_identifier", "cs_6f19eb38"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:42.390389"], ["updated_at", "2018-10-16 17:21:42.390389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -893035832 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '83f5fae2-9964-48d2-b2e1-35d4cb18f247' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5dd6bd6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -893035832], ["username", "billy_00"], ["access_token", "e9525dbd7830b07d9533d4c291d50d58"], ["uuid", "83f5fae2-9964-48d2-b2e1-35d4cb18f247"], ["support_identifier", "cs_c5dd6bd6"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:42.394483"], ["updated_at", "2018-10-16 17:21:42.394483"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1297038544 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a39ca45a-99dd-4934-a791-a98ecb9f2ab4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0b51212' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1297038544], ["username", "billy_01"], ["access_token", "b09c196ecc60fd2ed01e9f48830da286"], ["uuid", "a39ca45a-99dd-4934-a791-a98ecb9f2ab4"], ["support_identifier", "cs_b0b51212"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:42.401423"], ["updated_at", "2018-10-16 17:21:42.401423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1099894302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '347d4167-898e-45c8-92c1-0207ae07ec08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_abcf94b9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1099894302], ["username", "billy_02"], ["access_token", "e85e238f96376e6ef6207373022b911a"], ["uuid", "347d4167-898e-45c8-92c1-0207ae07ec08"], ["support_identifier", "cs_abcf94b9"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:42.406032"], ["updated_at", "2018-10-16 17:21:42.406032"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1131450716 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aa138b83-051c-42cd-978a-a811895d94b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3720455' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1131450716], ["username", "billy_03"], ["access_token", "b992bdea7baf7731a8d43a1fbbf5f1bc"], ["uuid", "aa138b83-051c-42cd-978a-a811895d94b5"], ["support_identifier", "cs_b3720455"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:42.410457"], ["updated_at", "2018-10-16 17:21:42.410457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1061303924 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f97ebb9-3f62-417d-8124-1ea6e2b995fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a79ba403' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1061303924], ["username", "billy_04"], ["access_token", "02e258024d9ed97cac1046de4a5df925"], ["uuid", "8f97ebb9-3f62-417d-8124-1ea6e2b995fe"], ["support_identifier", "cs_a79ba403"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:42.415384"], ["updated_at", "2018-10-16 17:21:42.415384"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -212277528 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3888cc7d-9fa2-46c9-830b-7443cf6f08fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88bc79b4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -212277528], ["username", "billy_05"], ["access_token", "6c8b1d953140f023b95629fc7b631959"], ["uuid", "3888cc7d-9fa2-46c9-830b-7443cf6f08fb"], ["support_identifier", "cs_88bc79b4"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:42.420283"], ["updated_at", "2018-10-16 17:21:42.420283"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1452867312 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a06be011-5c20-42e1-82b0-c4b6072ff081' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a1abcf9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1452867312], ["username", "billy_06"], ["access_token", "c2e774d9574b69cce4c94d5d88f8a83d"], ["uuid", "a06be011-5c20-42e1-82b0-c4b6072ff081"], ["support_identifier", "cs_8a1abcf9"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:42.424356"], ["updated_at", "2018-10-16 17:21:42.424356"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -632716183 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '22923b13-ab6d-4e3b-a186-bacab04d864d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_05f74f72' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -632716183], ["username", "billy_07"], ["access_token", "4b993e37fcb8ee7e72db5164d66f5548"], ["uuid", "22923b13-ab6d-4e3b-a186-bacab04d864d"], ["support_identifier", "cs_05f74f72"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:42.428608"], ["updated_at", "2018-10-16 17:21:42.428608"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -317679364 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2be1b160-14bd-4777-af51-3a935d606f3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d09ca06c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -317679364], ["username", "billy_08"], ["access_token", "d6beb0de6a1bab6ff4ed033976d7a52e"], ["uuid", "2be1b160-14bd-4777-af51-3a935d606f3c"], ["support_identifier", "cs_d09ca06c"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:42.435901"], ["updated_at", "2018-10-16 17:21:42.435901"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2020769685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '751a1140-7c6d-455a-b1cf-3773bb586201' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87612130' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2020769685], ["username", "billy_09"], ["access_token", "6a4cc370c804966360b734fe01b92796"], ["uuid", "751a1140-7c6d-455a-b1cf-3773bb586201"], ["support_identifier", "cs_87612130"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:42.440362"], ["updated_at", "2018-10-16 17:21:42.440362"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1443432826 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11f811c4-5da9-4a88-94b1-ba810de1c1ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc3efce4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1443432826], ["username", "billy_10"], ["access_token", "d3633750dc265a908fb21b228b0399a8"], ["uuid", "11f811c4-5da9-4a88-94b1-ba810de1c1ec"], ["support_identifier", "cs_cc3efce4"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:42.444417"], ["updated_at", "2018-10-16 17:21:42.444417"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1934886993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '015b72a7-2c4e-4428-b010-4b1bd16caf5b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff0c8166' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1934886993], ["username", "billy_11"], ["access_token", "5389313908a7d88e6c857c73cbd92f86"], ["uuid", "015b72a7-2c4e-4428-b010-4b1bd16caf5b"], ["support_identifier", "cs_ff0c8166"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:42.449114"], ["updated_at", "2018-10-16 17:21:42.449114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -43351186 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b75feb82-3bd3-4b52-af97-fb0bc44ec7be' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_459b09c7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -43351186], ["username", "billy_12"], ["access_token", "350fb8d72d13ef0c92a1c7ac29f098c4"], ["uuid", "b75feb82-3bd3-4b52-af97-fb0bc44ec7be"], ["support_identifier", "cs_459b09c7"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:42.453322"], ["updated_at", "2018-10-16 17:21:42.453322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -204692762 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa4898a7-ee8f-4a66-b9e2-44bcb8be8c01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b65ec9bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -204692762], ["username", "billy_13"], ["access_token", "c22a8a25c3853ec72b878165a745fa64"], ["uuid", "fa4898a7-ee8f-4a66-b9e2-44bcb8be8c01"], ["support_identifier", "cs_b65ec9bd"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:42.457288"], ["updated_at", "2018-10-16 17:21:42.457288"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -953960656 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea1352a1-6afa-40a0-b155-ea4271afe168' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b685906' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -953960656], ["username", "billy_14"], ["access_token", "024edcfdd1c6abf574e2ef6c654fcf38"], ["uuid", "ea1352a1-6afa-40a0-b155-ea4271afe168"], ["support_identifier", "cs_1b685906"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:42.461528"], ["updated_at", "2018-10-16 17:21:42.461528"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1790848816 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d2aac51-d7a8-4d6e-b895-8137e8f2f678' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0a128f4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1790848816], ["username", "billy_15"], ["access_token", "024870aac0b436b69bd8e315217b7561"], ["uuid", "7d2aac51-d7a8-4d6e-b895-8137e8f2f678"], ["support_identifier", "cs_e0a128f4"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:42.466020"], ["updated_at", "2018-10-16 17:21:42.466020"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1678051131 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0a6d92f7-67d1-4822-8f2f-305323a3bcb1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb3009bc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1678051131], ["username", "billy_16"], ["access_token", "4d6dcdbeaf20ee3db8c282d9ef0c13e0"], ["uuid", "0a6d92f7-67d1-4822-8f2f-305323a3bcb1"], ["support_identifier", "cs_eb3009bc"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:42.470257"], ["updated_at", "2018-10-16 17:21:42.470257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -539416829 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '351e49e7-1441-4f2d-83e7-698907185505' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78ff48d7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -539416829], ["username", "billy_17"], ["access_token", "1b359364aea667da687b64990f28e3d6"], ["uuid", "351e49e7-1441-4f2d-83e7-698907185505"], ["support_identifier", "cs_78ff48d7"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:42.474356"], ["updated_at", "2018-10-16 17:21:42.474356"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -182079522 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f7565c2-5ee9-4008-a431-9e9b2d32d80a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c768868' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -182079522], ["username", "billy_18"], ["access_token", "5acbbcc692ddca9550970cb57843ea40"], ["uuid", "2f7565c2-5ee9-4008-a431-9e9b2d32d80a"], ["support_identifier", "cs_7c768868"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:42.478607"], ["updated_at", "2018-10-16 17:21:42.478607"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1813982368 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2bbb7d90-9cff-461b-938a-a40bd0a1cb65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9462c1cc' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1813982368], ["username", "billy_19"], ["access_token", "8b80e2da491c0b5f3bb21c987a609a36"], ["uuid", "2bbb7d90-9cff-461b-938a-a40bd0a1cb65"], ["support_identifier", "cs_9462c1cc"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:42.485373"], ["updated_at", "2018-10-16 17:21:42.485373"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -356848724 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fb498d8d-5f98-4873-b0c5-12969902e0bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_43151062' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -356848724], ["username", "billy_20"], ["access_token", "c7b1de5db96c319a703ebdf345883de0"], ["uuid", "fb498d8d-5f98-4873-b0c5-12969902e0bf"], ["support_identifier", "cs_43151062"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:42.489789"], ["updated_at", "2018-10-16 17:21:42.489789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -849358271 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4180ad6a-35aa-4741-b145-ebb6ab914ebb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6fbb7c9c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -849358271], ["username", "billy_21"], ["access_token", "5365f3b1cb8fa39381253f2dee54a01e"], ["uuid", "4180ad6a-35aa-4741-b145-ebb6ab914ebb"], ["support_identifier", "cs_6fbb7c9c"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:42.493781"], ["updated_at", "2018-10-16 17:21:42.493781"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -60595557 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c17b2607-d2b2-4e50-a082-d32138f27b15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d9ff8fa0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -60595557], ["username", "billy_22"], ["access_token", "ff6354e479e6d396492b83dcfc78fc2c"], ["uuid", "c17b2607-d2b2-4e50-a082-d32138f27b15"], ["support_identifier", "cs_d9ff8fa0"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:42.498476"], ["updated_at", "2018-10-16 17:21:42.498476"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1040953849 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd03ffa6b-3968-4b60-8ee8-c52f68d755da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_016b0954' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1040953849], ["username", "billy_23"], ["access_token", "cc9397cd9523e597c9ae11f984cef3c2"], ["uuid", "d03ffa6b-3968-4b60-8ee8-c52f68d755da"], ["support_identifier", "cs_016b0954"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:42.502890"], ["updated_at", "2018-10-16 17:21:42.502890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1299778349 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd9d3c93e-0741-40b7-bd5c-4afaf61cfeef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57015686' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1299778349], ["username", "billy_24"], ["access_token", "df3c3de573075d07777a6c0f1d5aab0e"], ["uuid", "d9d3c93e-0741-40b7-bd5c-4afaf61cfeef"], ["support_identifier", "cs_57015686"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:42.507023"], ["updated_at", "2018-10-16 17:21:42.507023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -803853116 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5fdae422-66f3-4e3a-8569-c15e60a338e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_baf3bf64' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -803853116], ["username", "billy_25"], ["access_token", "3fab84ebe594c73ff5c2359f893bbffa"], ["uuid", "5fdae422-66f3-4e3a-8569-c15e60a338e2"], ["support_identifier", "cs_baf3bf64"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:42.511200"], ["updated_at", "2018-10-16 17:21:42.511200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137529227 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e27f801b-7a30-432b-b894-768213708ce4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2bd4f419' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2137529227], ["username", "billy_26"], ["access_token", "fbeaefb987d1acf6e7bc7fcdd7fe760d"], ["uuid", "e27f801b-7a30-432b-b894-768213708ce4"], ["support_identifier", "cs_2bd4f419"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:42.518629"], ["updated_at", "2018-10-16 17:21:42.518629"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -226556317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b83b9904-0b4b-4255-a846-1f16cb835187' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4dcfe7b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -226556317], ["username", "billy_27"], ["access_token", "3b1d3ebb60a98d19df2cbd0ca2496f2c"], ["uuid", "b83b9904-0b4b-4255-a846-1f16cb835187"], ["support_identifier", "cs_c4dcfe7b"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:42.523120"], ["updated_at", "2018-10-16 17:21:42.523120"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563206180 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '756f3066-9836-4404-9968-6ade5ebef5a9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99dc0ad4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1563206180], ["username", "billy_28"], ["access_token", "42429dfebb87c71da927ec64c9e11d94"], ["uuid", "756f3066-9836-4404-9968-6ade5ebef5a9"], ["support_identifier", "cs_99dc0ad4"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:42.527376"], ["updated_at", "2018-10-16 17:21:42.527376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2042354457 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7274a024-dbbd-4a29-8cf8-f73a95bd0082' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3736f9ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2042354457], ["username", "billy_29"], ["access_token", "57dd25e87fc0acad5246fd053af62e8d"], ["uuid", "7274a024-dbbd-4a29-8cf8-f73a95bd0082"], ["support_identifier", "cs_3736f9ec"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:42.532279"], ["updated_at", "2018-10-16 17:21:42.532279"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1587042993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '69f9c8b3-0626-459b-b1e7-b2f91752ec88' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2feb92c5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1587042993], ["username", "billy_30"], ["access_token", "3526532a46a9a60c7ee7d550ac2d0e84"], ["uuid", "69f9c8b3-0626-459b-b1e7-b2f91752ec88"], ["support_identifier", "cs_2feb92c5"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:42.536535"], ["updated_at", "2018-10-16 17:21:42.536535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2011800490 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6cf74021-5961-4176-8ca0-fa3a2592e5ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30e69cbb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2011800490], ["username", "billy_31"], ["access_token", "ea56857eda6e0bdec9d2b3584618a785"], ["uuid", "6cf74021-5961-4176-8ca0-fa3a2592e5ab"], ["support_identifier", "cs_30e69cbb"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:42.540588"], ["updated_at", "2018-10-16 17:21:42.540588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -278056321 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a210f5d9-459c-45a0-9fa3-74f1f21654fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df035bf5' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -278056321], ["username", "billy_32"], ["access_token", "81d7682b2af6440a82834489b1cda6e3"], ["uuid", "a210f5d9-459c-45a0-9fa3-74f1f21654fb"], ["support_identifier", "cs_df035bf5"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:42.544677"], ["updated_at", "2018-10-16 17:21:42.544677"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -744901815 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5da152de-cfad-4c93-bd66-dced5d62225b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0199e0a9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -744901815], ["username", "billy_33"], ["access_token", "15653feed39960b8874c624397e9d073"], ["uuid", "5da152de-cfad-4c93-bd66-dced5d62225b"], ["support_identifier", "cs_0199e0a9"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:42.549378"], ["updated_at", "2018-10-16 17:21:42.549378"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -710159532 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e434808-7fd4-4ea7-ac43-d1b54fdce5fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efb63cc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -710159532], ["username", "billy_34"], ["access_token", "d548d176408bc75e1541acf67e88ad19"], ["uuid", "2e434808-7fd4-4ea7-ac43-d1b54fdce5fb"], ["support_identifier", "cs_efb63cc8"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:42.553790"], ["updated_at", "2018-10-16 17:21:42.553790"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1515687641 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9a190af7-71e1-4977-b2af-9ff1ed185d06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0053c18e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1515687641], ["username", "billy_35"], ["access_token", "a37f7b328dbc2be90e6c0224a44a3694"], ["uuid", "9a190af7-71e1-4977-b2af-9ff1ed185d06"], ["support_identifier", "cs_0053c18e"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:42.558030"], ["updated_at", "2018-10-16 17:21:42.558030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1081337475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '06f78a27-b613-40d2-8a7c-f1a1c868af2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8d216b4' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1081337475], ["username", "billy_36"], ["access_token", "5d13c3d87acb586fa05f49008c9d40d9"], ["uuid", "06f78a27-b613-40d2-8a7c-f1a1c868af2a"], ["support_identifier", "cs_f8d216b4"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:42.562623"], ["updated_at", "2018-10-16 17:21:42.562623"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2095231017 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c4962a7-4433-4402-aa85-d83adea7b5d2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cfebc0e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2095231017], ["username", "billy_37"], ["access_token", "9b196304b98f9a1f2f65184043c107d6"], ["uuid", "5c4962a7-4433-4402-aa85-d83adea7b5d2"], ["support_identifier", "cs_3cfebc0e"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:42.569222"], ["updated_at", "2018-10-16 17:21:42.569222"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1987670222 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f0b1421-bcac-42dc-bf28-f417484feac9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c7209978' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1987670222], ["username", "billy_38"], ["access_token", "4278edd41bde86af2ed830bb8fd8b0dc"], ["uuid", "1f0b1421-bcac-42dc-bf28-f417484feac9"], ["support_identifier", "cs_c7209978"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:42.573577"], ["updated_at", "2018-10-16 17:21:42.573577"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1359580293 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd9ef5fff-43db-4d89-aa8b-3b3e0ebc8e10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71b69828' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1359580293], ["username", "billy_39"], ["access_token", "0ce5dc22d18d68a4c0cc96a9e6e75566"], ["uuid", "d9ef5fff-43db-4d89-aa8b-3b3e0ebc8e10"], ["support_identifier", "cs_71b69828"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:42.577914"], ["updated_at", "2018-10-16 17:21:42.577914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1248609961 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '90427ae1-8c86-4143-ad7f-947a1f3c216c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a8bea0f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1248609961], ["username", "billy_40"], ["access_token", "b5955aa751f2b5a169f0d71703cfd124"], ["uuid", "90427ae1-8c86-4143-ad7f-947a1f3c216c"], ["support_identifier", "cs_5a8bea0f"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:42.582823"], ["updated_at", "2018-10-16 17:21:42.582823"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -178220375 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ffec4d3f-fc42-4980-9a84-6cac575d2d09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29da4981' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -178220375], ["username", "billy_41"], ["access_token", "09388c5b043e20ce54d4c01a76f44bd9"], ["uuid", "ffec4d3f-fc42-4980-9a84-6cac575d2d09"], ["support_identifier", "cs_29da4981"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:42.587074"], ["updated_at", "2018-10-16 17:21:42.587074"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -668120141 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab676c59-fc24-4998-bade-a49152e23da9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_177e1306' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -668120141], ["username", "billy_42"], ["access_token", "de68953e48a81196b62fc059f6e6ba29"], ["uuid", "ab676c59-fc24-4998-bade-a49152e23da9"], ["support_identifier", "cs_177e1306"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:42.591245"], ["updated_at", "2018-10-16 17:21:42.591245"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1124212549 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9073473f-8d03-4c07-b6e4-ae650be4604f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_21fca808' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1124212549], ["username", "billy_43"], ["access_token", "355e97dd45b72d6ab924fb76fe6fef06"], ["uuid", "9073473f-8d03-4c07-b6e4-ae650be4604f"], ["support_identifier", "cs_21fca808"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:42.596056"], ["updated_at", "2018-10-16 17:21:42.596056"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -399645366 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e433cf0e-883f-4fe7-a1e2-c571b1a7127a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59c1f76d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -399645366], ["username", "billy_44"], ["access_token", "b27ba80635f917e6b432036231b33b9c"], ["uuid", "e433cf0e-883f-4fe7-a1e2-c571b1a7127a"], ["support_identifier", "cs_59c1f76d"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:42.606491"], ["updated_at", "2018-10-16 17:21:42.606491"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433629058 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1cfebc76-f63b-4c8c-9f47-4ebebe398900' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6ec980b2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1433629058], ["username", "billy_45"], ["access_token", "f286df5242a0d8d380684657fb7946fd"], ["uuid", "1cfebc76-f63b-4c8c-9f47-4ebebe398900"], ["support_identifier", "cs_6ec980b2"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:42.610711"], ["updated_at", "2018-10-16 17:21:42.610711"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -931942933 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be8be53b-ac99-44f2-8b10-dbdc22865f42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7f4baab7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -931942933], ["username", "jstrav"], ["access_token", "c66bf11fff0d3eecd88a8169ac69e110"], ["uuid", "be8be53b-ac99-44f2-8b10-dbdc22865f42"], ["support_identifier", "cs_7f4baab7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:42.621075"], ["updated_at", "2018-10-16 17:21:42.621075"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -696144113 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5ef349a-bf22-481d-bcb0-5e9b69c847ba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ba8b1b58' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -696144113], ["username", "mary"], ["access_token", "55053a5db88245f6378270a17681ff8a"], ["uuid", "e5ef349a-bf22-481d-bcb0-5e9b69c847ba"], ["support_identifier", "cs_ba8b1b58"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:42.625274"], ["updated_at", "2018-10-16 17:21:42.625274"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1933503422 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8773aa8d-0e11-4af8-b5e1-97b3e5184eaa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c72976b' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1933503422], ["username", "jstead"], ["access_token", "d443fcc8dce8b2bab450f1a74e1869fc"], ["uuid", "8773aa8d-0e11-4af8-b5e1-97b3e5184eaa"], ["support_identifier", "cs_6c72976b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:42.630270"], ["updated_at", "2018-10-16 17:21:42.630270"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -244077058 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c316b5d2-2832-4f51-8848-6139ef54379e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e70096e6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -244077058], ["username", "bigbear"], ["access_token", "6a6978a485245f4868cbb9c7f1ca9c06"], ["uuid", "c316b5d2-2832-4f51-8848-6139ef54379e"], ["support_identifier", "cs_e70096e6"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:42.637464"], ["updated_at", "2018-10-16 17:21:42.637464"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -900740175 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '648230a3-7dba-49a2-8fa0-a8a09ea45d99' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbfeda15' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -900740175], ["username", "foo_bb"], ["access_token", "2089a761a241123a2bfc87f4605f969c"], ["uuid", "648230a3-7dba-49a2-8fa0-a8a09ea45d99"], ["support_identifier", "cs_fbfeda15"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 17:21:42.641757"], ["updated_at", "2018-10-16 17:21:42.641757"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2129198216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '18557ba0-a374-4300-9ef3-c510f85d7a1b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60cd1d3f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2129198216], ["username", "foo_bj"], ["access_token", "cc7dc2d183c67b070a586e935c2e9279"], ["uuid", "18557ba0-a374-4300-9ef3-c510f85d7a1b"], ["support_identifier", "cs_60cd1d3f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:21:42.646208"], ["updated_at", "2018-10-16 17:21:42.646208"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -97349262 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38145740-15e6-4d3f-8e43-b814d484bfd9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_23749b47' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -97349262], ["username", "foo_tj"], ["access_token", "22803b36f7dba8cbb9854309f1147b5c"], ["uuid", "38145740-15e6-4d3f-8e43-b814d484bfd9"], ["support_identifier", "cs_23749b47"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:21:42.650865"], ["updated_at", "2018-10-16 17:21:42.650865"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +Started POST "/api/dummy?test=true" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::DummyController#dummy as application/vnd.accounts.openstax.v1 + Parameters: {"test"=>"true", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -957130737 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '82db38ed9d53b3479cce4924d912059b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a579c805-4c94-4ada-9d69-51187775637a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5147058' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -957130737], ["username", "82db38ed9d53b3479cce4924d912059b"], ["access_token", "c8b053db743cf49ea0241ebfa90b9fc0"], ["uuid", "a579c805-4c94-4ada-9d69-51187775637a"], ["support_identifier", "cs_c5147058"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.689258"], ["updated_at", "2018-10-16 17:21:42.689258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/user" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"82db38ed9d53b3479cce4924d912059b", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil, "dummy"=>{"username"=>"82db38ed9d53b3479cce4924d912059b", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -553798471 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '05072161ddba32df9869f1537265517e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60c7ef4b-7b34-44f5-b63f-c59bbcb8043a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1814fb03' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -553798471], ["username", "05072161ddba32df9869f1537265517e"], ["access_token", "081e8a28110708a991c1b5f343f746c5"], ["uuid", "60c7ef4b-7b34-44f5-b63f-c59bbcb8043a"], ["support_identifier", "cs_1814fb03"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.712173"], ["updated_at", "2018-10-16 17:21:42.712173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"email"=>"dummy@dum.my", "dummy"=>{"email"=>"dummy@dum.my"}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -50064161 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'ee54b1e213c690a90eb75539c65e36da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '71ce6a81-fa20-47d7-8597-e9feb610d9a2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d0345feb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -50064161], ["username", "ee54b1e213c690a90eb75539c65e36da"], ["access_token", "c04687eb1326e8e2186d6275f6a07907"], ["uuid", "71ce6a81-fa20-47d7-8597-e9feb610d9a2"], ["support_identifier", "cs_d0345feb"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.734756"], ["updated_at", "2018-10-16 17:21:42.734756"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"dummy", "dummy"=>{"username"=>"dummy"}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -628741980 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'c4645e51e66b18dedb19b70541a044e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '178c518f-f8c5-4acb-b3de-e9ec930487e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_83f6b06b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -628741980], ["username", "c4645e51e66b18dedb19b70541a044e3"], ["access_token", "5a1c4d9fb56afebccf72e83bb4e0781a"], ["uuid", "178c518f-f8c5-4acb-b3de-e9ec930487e3"], ["support_identifier", "cs_83f6b06b"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.755925"], ["updated_at", "2018-10-16 17:21:42.755925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/users?q=something" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1183337976 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '18bacbf912e0c766e8b0c401a3dd7740' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '695c0ba8-68c0-47b2-af93-1f00e9da0056' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8dc1a7e6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1183337976], ["username", "18bacbf912e0c766e8b0c401a3dd7740"], ["access_token", "b42bc8f944aa79d53cdcb528e52c472e"], ["uuid", "695c0ba8-68c0-47b2-af93-1f00e9da0056"], ["support_identifier", "cs_8dc1a7e6"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.778000"], ["updated_at", "2018-10-16 17:21:42.778000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2147136406 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -2147136406], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.785687"], ["updated_at", "2018-10-16 17:21:42.785687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -212764440 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'b8d81a5ebed37ca4139c9bcc7c354ce7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7250237c-0352-42eb-98a8-b59413e1e634' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60a2f9b1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -212764440], ["username", "b8d81a5ebed37ca4139c9bcc7c354ce7"], ["access_token", "fee9cfed771414c12325cc411774e6b9"], ["uuid", "7250237c-0352-42eb-98a8-b59413e1e634"], ["support_identifier", "cs_60a2f9b1"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.789952"], ["updated_at", "2018-10-16 17:21:42.789952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 454 AND "openstax_accounts_group_owners"."group_id" = -2147136406) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -2147136406], ["user_id", -212764440], ["created_at", "2018-10-16 17:21:42.792372"], ["updated_at", "2018-10-16 17:21:42.792372"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-2147136406/owners/-212764440" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-2147136406", "user_id"=>"-212764440", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1934759572 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bc552d0a094cce95835aca42ffc48f0b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c5655c7-1bb5-4501-ada9-b170c86cc8ff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a33e0ccf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1934759572], ["username", "bc552d0a094cce95835aca42ffc48f0b"], ["access_token", "d6394ae9c8bb626bb06c1b4658f7982e"], ["uuid", "8c5655c7-1bb5-4501-ada9-b170c86cc8ff"], ["support_identifier", "cs_a33e0ccf"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.807644"], ["updated_at", "2018-10-16 17:21:42.807644"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -291725329 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -291725329], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.811160"], ["updated_at", "2018-10-16 17:21:42.811160"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1297878374 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'c633bba1dcb9f4571179d2ba5ccfce74' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5ea1c315-5ce2-4806-8c73-3fda1fa0b4ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5be5d9c9' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1297878374], ["username", "c633bba1dcb9f4571179d2ba5ccfce74"], ["access_token", "bd908a462fadbe337dbe55881fca2a87"], ["uuid", "5ea1c315-5ce2-4806-8c73-3fda1fa0b4ee"], ["support_identifier", "cs_5be5d9c9"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.816903"], ["updated_at", "2018-10-16 17:21:42.816903"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-291725329/owners/-1297878374" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-291725329", "user_id"=>"-1297878374", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1088489300 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '6e00e1203b318196a035e1bac4554b55' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '85d14047-875c-4877-8886-2e58407b135f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ca3bb33' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1088489300], ["username", "6e00e1203b318196a035e1bac4554b55"], ["access_token", "19af0e61c6821479e8dd207933772417"], ["uuid", "85d14047-875c-4877-8886-2e58407b135f"], ["support_identifier", "cs_3ca3bb33"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.836092"], ["updated_at", "2018-10-16 17:21:42.836092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -378342953 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -378342953], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.844278"], ["updated_at", "2018-10-16 17:21:42.844278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1645761178 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1645761178], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.847009"], ["updated_at", "2018-10-16 17:21:42.847009"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-378342953/nestings/-1645761178" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-378342953", "member_group_id"=>"-1645761178", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -396913366 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '3b9e4ccf8144ba4b1fc7f9ab0e6e9aad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ff6f90bf-42c9-436f-9ab7-a92775ac4a22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3fe5ca48' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -396913366], ["username", "3b9e4ccf8144ba4b1fc7f9ab0e6e9aad"], ["access_token", "5fa6c86bf03e0f9b954f1ae0100ebddc"], ["uuid", "ff6f90bf-42c9-436f-9ab7-a92775ac4a22"], ["support_identifier", "cs_3fe5ca48"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.865462"], ["updated_at", "2018-10-16 17:21:42.865462"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1499697086 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1499697086], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.867967"], ["updated_at", "2018-10-16 17:21:42.867967"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -828556600 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -828556600], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.870032"], ["updated_at", "2018-10-16 17:21:42.870032"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 9 LIMIT 1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 9]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -828556600 + SQL (0.3ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -828556600 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 9]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.6ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1499697086 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -1499697086 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 8]] + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -828556600 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1499697086 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -1499697086], ["member_group_id", -828556600], ["created_at", "2018-10-16 17:21:42.872936"], ["updated_at", "2018-10-16 17:21:42.872936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1499697086/nestings/-828556600" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-1499697086", "member_group_id"=>"-828556600", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657748808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '5d4578b8fb27102e90f9ad066ef1a1bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3da75855-eb3a-40dc-bb05-3f923e813132' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88b9b3f4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -657748808], ["username", "5d4578b8fb27102e90f9ad066ef1a1bf"], ["access_token", "2b75a1bbe851c392897f3cde12c75001"], ["uuid", "3da75855-eb3a-40dc-bb05-3f923e813132"], ["support_identifier", "cs_88b9b3f4"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.903773"], ["updated_at", "2018-10-16 17:21:42.903773"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1935428888 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1935428888], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.911246"], ["updated_at", "2018-10-16 17:21:42.911246"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1935428888 AND "openstax_accounts_groups"."id" != 10) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/groups/-1935428888" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "id"=>"-1935428888", "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108699769 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2002add22864a6ef011897428a08dcd3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c623e255-35ed-400b-8ef7-ef233fcc722a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3eb64308' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2108699769], ["username", "2002add22864a6ef011897428a08dcd3"], ["access_token", "f719647a14b67eb30b51a68314cbe0f5"], ["uuid", "c623e255-35ed-400b-8ef7-ef233fcc722a"], ["support_identifier", "cs_3eb64308"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.927010"], ["updated_at", "2018-10-16 17:21:42.927010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -368225951 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -368225951], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.929720"], ["updated_at", "2018-10-16 17:21:42.929720"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -776333488 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '76ae340c5d7da34fd9fb972210ffda6c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6376ea82-ca32-45de-a0e7-0818d27d39a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8fb09bee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -776333488], ["username", "76ae340c5d7da34fd9fb972210ffda6c"], ["access_token", "047cd5992a3f4e02fe868e5b5b10d40c"], ["uuid", "6376ea82-ca32-45de-a0e7-0818d27d39a4"], ["support_identifier", "cs_8fb09bee"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:42.943873"], ["updated_at", "2018-10-16 17:21:42.943873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1780554850 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1780554850], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:42.946549"], ["updated_at", "2018-10-16 17:21:42.946549"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1780554850 AND "openstax_accounts_groups"."id" != 12) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1780554850" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"id"=>"-1780554850", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "application_group"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:21:42 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users?q=something" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "dummy"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1991031963 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '3e5cfafb0081b19b72a05986587ef1e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '062ab5c7-4c55-4788-b9a4-898c27b3ae75' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_205a1bb6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1991031963], ["username", "3e5cfafb0081b19b72a05986587ef1e2"], ["access_token", "8c26f2e459c3f67e274af4c81ea0a3c7"], ["uuid", "062ab5c7-4c55-4788-b9a4-898c27b3ae75"], ["support_identifier", "cs_205a1bb6"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.094921"], ["updated_at", "2018-10-16 17:21:43.094921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1370841163 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1370841163], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.103162"], ["updated_at", "2018-10-16 17:21:43.103162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1554275413 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'cf4f3c6a17007442105be3704fce6b1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b42db74-804b-4605-83d8-0f10571b0100' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea243941' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1554275413], ["username", "cf4f3c6a17007442105be3704fce6b1c"], ["access_token", "cedd84fb83758192945d75f28cfa78ef"], ["uuid", "7b42db74-804b-4605-83d8-0f10571b0100"], ["support_identifier", "cs_ea243941"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.107459"], ["updated_at", "2018-10-16 17:21:43.107459"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-1370841163/members/-1554275413" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-1370841163", "user_id"=>"-1554275413", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -904137375 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e9f5fb55ec77df788409fc3023d7dda3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0d40df2-879b-4fed-a488-ca2a3dfd0772' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_41d48c95' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -904137375], ["username", "e9f5fb55ec77df788409fc3023d7dda3"], ["access_token", "11c9ba8dff048876009d8a40623f943e"], ["uuid", "d0d40df2-879b-4fed-a488-ca2a3dfd0772"], ["support_identifier", "cs_41d48c95"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.125072"], ["updated_at", "2018-10-16 17:21:43.125072"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -390558157 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -390558157], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.127479"], ["updated_at", "2018-10-16 17:21:43.127479"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1680974437 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '867f9e62f212cfae65b1ab90ee111bf4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60abf274-0902-4040-b113-a301e4cb9be5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ebb14f71' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1680974437], ["username", "867f9e62f212cfae65b1ab90ee111bf4"], ["access_token", "43027129c8e641ff76ba465a11df6b42"], ["uuid", "60abf274-0902-4040-b113-a301e4cb9be5"], ["support_identifier", "cs_ebb14f71"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.132603"], ["updated_at", "2018-10-16 17:21:43.132603"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 465 AND "openstax_accounts_group_members"."group_id" = -390558157) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -390558157], ["user_id", -1680974437], ["created_at", "2018-10-16 17:21:43.137681"], ["updated_at", "2018-10-16 17:21:43.137681"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-390558157/members/-1680974437" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-390558157", "user_id"=>"-1680974437", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Processing by AnonymousController#action_needing_authentication as +Redirected to http://test.host/accounts/login +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3adb4d22-a127-4978-a610-29396f3e5337' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_570e0993' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "d545ac688eea0c32c96ca02814441155"], ["uuid", "3adb4d22-a127-4978-a610-29396f3e5337"], ["support_identifier", "cs_570e0993"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.163190"], ["updated_at", "2018-10-16 17:21:43.163190"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 466], ["created_at", "2018-10-16 17:21:43.165304"], ["updated_at", "2018-10-16 17:21:43.165304"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'another_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a592667-9910-4ffd-a53d-fe1a6e76247b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d358f25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "another_user"], ["access_token", "0112ba1925872a23be1b35f2595e43e1"], ["uuid", "7a592667-9910-4ffd-a53d-fe1a6e76247b"], ["support_identifier", "cs_4d358f25"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.169169"], ["updated_at", "2018-10-16 17:21:43.169169"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 467], ["created_at", "2018-10-16 17:21:43.170817"], ["updated_at", "2018-10-16 17:21:43.170817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -777440351 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -777440351], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.172925"], ["updated_at", "2018-10-16 17:21:43.172925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -785204220 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -785204220], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.174927"], ["updated_at", "2018-10-16 17:21:43.174927"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 16 LIMIT 1 + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 16]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -785204220 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -785204220 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 16]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 15]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -777440351 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.4ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -777440351 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 15]] + SQL (0.3ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -785204220 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -777440351 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -777440351], ["member_group_id", -785204220], ["created_at", "2018-10-16 17:21:43.176948"], ["updated_at", "2018-10-16 17:21:43.176948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 466 AND "openstax_accounts_group_members"."group_id" = -785204220) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 466 AND "openstax_accounts_group_members"."group_id" = -785204220) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -785204220], ["user_id", 1], ["created_at", "2018-10-16 17:21:43.188661"], ["updated_at", "2018-10-16 17:21:43.188661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 466 AND "openstax_accounts_group_members"."id" != 5 AND "openstax_accounts_group_members"."group_id" = -785204220) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + Ownership Load (0.4ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 466]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 16]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -785204220 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -785204220 +- -777440351 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 16]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.4ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.5ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 7], ["owner_type", "User"], ["created_at", "2018-10-16 17:21:43.219540"], ["updated_at", "2018-10-16 17:21:43.219540"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 466]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 6], ["owner_type", "User"], ["created_at", "2018-10-16 17:21:43.226319"], ["updated_at", "2018-10-16 17:21:43.226319"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 466]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.7ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) +  (0.5ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 16], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 17:21:43.235318"], ["updated_at", "2018-10-16 17:21:43.235318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 466]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.3ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 15], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 17:21:43.243809"], ["updated_at", "2018-10-16 17:21:43.243809"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 466]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-785204220, -777440351) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (15, 16) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1460593211 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '81c5182e7e97c1873bc0819446b6ed53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27d91a6b-cd3a-4fa0-92dd-606fb8355741' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e108667' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1460593211], ["username", "81c5182e7e97c1873bc0819446b6ed53"], ["access_token", "8203cc42ac95506b6f6b9c511d943b34"], ["uuid", "27d91a6b-cd3a-4fa0-92dd-606fb8355741"], ["support_identifier", "cs_3e108667"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.258038"], ["updated_at", "2018-10-16 17:21:43.258038"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -551735297 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -551735297], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.261178"], ["updated_at", "2018-10-16 17:21:43.261178"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1593280707 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '701f5289c29e72d365b37aeb3cb5b968' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd13039b7-b811-474a-b1c3-f9f174b043ba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9acd5b83' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1593280707], ["username", "701f5289c29e72d365b37aeb3cb5b968"], ["access_token", "2ca379e9004de6e0e368e83bd4842608"], ["uuid", "d13039b7-b811-474a-b1c3-f9f174b043ba"], ["support_identifier", "cs_9acd5b83"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.266359"], ["updated_at", "2018-10-16 17:21:43.266359"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -121737857 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'fc33a2f3634b9d7214585f72eac9b669' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '914421c1-bd59-47b0-81ab-711cf89e942c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4544552' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -121737857], ["username", "fc33a2f3634b9d7214585f72eac9b669"], ["access_token", "211d9f6b47b97e482f4b203ab52965f6"], ["uuid", "914421c1-bd59-47b0-81ab-711cf89e942c"], ["support_identifier", "cs_e4544552"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.272262"], ["updated_at", "2018-10-16 17:21:43.272262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1531384996 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1531384996], ["name", "MyGroup"], ["created_at", "2018-10-16 17:21:43.275196"], ["updated_at", "2018-10-16 17:21:43.275196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2018-10-16 17:21:43.280525"], ["updated_at", "2018-10-16 17:21:43.280525"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'u' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '69d1b964-ae62-4eea-a5cf-01ac98691f59' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a9a0b50d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "u"], ["access_token", "b99538395ee5e4db066e731485005dfd"], ["uuid", "69d1b964-ae62-4eea-a5cf-01ac98691f59"], ["support_identifier", "cs_a9a0b50d"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.292030"], ["updated_at", "2018-10-16 17:21:43.292030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 471]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "dummy"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '5d68c573-4e79-4ea4-a51c-5c11d1d0f73f' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_9f6d9e45' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "role" = $2, "uuid" = $3, "support_identifier" = $4, "updated_at" = $5 WHERE "openstax_accounts_accounts"."id" = $6 [["username", "user"], ["role", 2], ["uuid", "5d68c573-4e79-4ea4-a51c-5c11d1d0f73f"], ["support_identifier", "cs_9f6d9e45"], ["updated_at", "2018-10-16 17:21:43.323945"], ["id", 471]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0c4947b1-ab7d-4c68-bd5a-68dd932c40cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_64391966' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 4], ["username", "fuego"], ["uuid", "0c4947b1-ab7d-4c68-bd5a-68dd932c40cd"], ["support_identifier", "cs_64391966"], ["created_at", "2018-10-16 17:21:43.328412"], ["updated_at", "2018-10-16 17:21:43.328412"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "dummy"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 471]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "dummy"=>{}} +Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '5d68c573-4e79-4ea4-a51c-5c11d1d0f73f' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_9f6d9e45' AND "openstax_accounts_accounts"."id" != 471) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 472) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'fuego' AND "openstax_accounts_accounts"."id" != 472) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '0c4947b1-ab7d-4c68-bd5a-68dd932c40cd' AND "openstax_accounts_accounts"."id" != 472) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_64391966' AND "openstax_accounts_accounts"."id" != 472) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:21:43 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "dummy"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 471]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 472]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5ef6c6ad-ea06-4e08-bf79-9036ccddcff7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_845fd31d' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "14dc3a9d6c9d7e12f15878fda33631aa"], ["uuid", "5ef6c6ad-ea06-4e08-bf79-9036ccddcff7"], ["support_identifier", "cs_845fd31d"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.408620"], ["updated_at", "2018-10-16 17:21:43.408620"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML + Parameters: {"id"=>"10"} + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 10]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 473]] +Redirected to http://test.host/ +Completed 302 Found in 2ms (ActiveRecord: 0.4ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a01ff11c-7aa1-4aee-9283-c1c6efebcebf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0c28ae0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "836078cdfb1fa0d5540ba3d71f04b872"], ["uuid", "a01ff11c-7aa1-4aee-9283-c1c6efebcebf"], ["support_identifier", "cs_e0c28ae0"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.420283"], ["updated_at", "2018-10-16 17:21:43.420283"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#index as HTML + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. + Rendered /Users/dante/Desktop/accounts-rails/app/views/openstax/accounts/dev/accounts/index.html.erb within layouts/openstax/accounts/application (0.3ms) + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. +Completed 200 OK in 34ms (Views: 34.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3606457]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3606457 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9baf9644-4841-4610-b06a-bf434ad096d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f95cf7b' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 3606457], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "9baf9644-4841-4610-b06a-bf434ad096d7"], ["support_identifier", "cs_2f95cf7b"], ["created_at", "2018-10-16 17:21:43.463340"], ["updated_at", "2018-10-16 17:21:43.463340"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 3606457 AND "openstax_accounts_accounts"."id" != 475) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '9baf9644-4841-4610-b06a-bf434ad096d7' AND "openstax_accounts_accounts"."id" != 475) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2f95cf7b' AND "openstax_accounts_accounts"."id" != 475) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9684018]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9684018 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '39747328-52db-4d8c-9cb2-4396697a5cd2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_feeedb0d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 9684018], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "39747328-52db-4d8c-9cb2-4396697a5cd2"], ["support_identifier", "cs_feeedb0d"], ["created_at", "2018-10-16 17:21:43.472026"], ["updated_at", "2018-10-16 17:21:43.472026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3141087]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3141087 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ffbba384-92ab-47f1-a48a-38b6cff19fba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9fd22713' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 3141087], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["school_type", 2], ["uuid", "ffbba384-92ab-47f1-a48a-38b6cff19fba"], ["support_identifier", "cs_9fd22713"], ["created_at", "2018-10-16 17:21:43.477691"], ["updated_at", "2018-10-16 17:21:43.477691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2029428233 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '726476e1b37c2931b38fa26361810e71' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60c4d0a7-cdd7-4976-ad83-32fe5b2f3445' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_444114df' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2029428233], ["username", "726476e1b37c2931b38fa26361810e71"], ["access_token", "504e01fa509e7dac6de29d85ec4feace"], ["uuid", "60c4d0a7-cdd7-4976-ad83-32fe5b2f3445"], ["support_identifier", "cs_444114df"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:43.483439"], ["updated_at", "2018-10-16 17:21:43.483439"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", -2029428233]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -2029428233 AND "openstax_accounts_accounts"."id" != 478) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '191919' AND "openstax_accounts_accounts"."id" != 478) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '23949d02-45fc-4465-bcd2-e960b2f23bf8' AND "openstax_accounts_accounts"."id" != 478) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_eccb9af5' AND "openstax_accounts_accounts"."id" != 478) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "first_name" = $2, "last_name" = $3, "title" = $4, "access_token" = $5, "faculty_status" = $6, "role" = $7, "uuid" = $8, "support_identifier" = $9, "is_test" = $10, "updated_at" = $11 WHERE "openstax_accounts_accounts"."id" = $12 [["username", "191919"], ["first_name", "1234"], ["last_name", "5678"], ["title", "900"], ["access_token", nil], ["faculty_status", 2], ["role", 2], ["uuid", "23949d02-45fc-4465-bcd2-e960b2f23bf8"], ["support_identifier", "cs_eccb9af5"], ["is_test", nil], ["updated_at", "2018-10-16 17:21:43.488606"], ["id", 478]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 478]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 5478098]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 5478098 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4801a07-1a61-4f48-beee-b53f54493f04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_16d6f2c1' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 5478098], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "c4801a07-1a61-4f48-beee-b53f54493f04"], ["support_identifier", "cs_16d6f2c1"], ["created_at", "2018-10-16 17:21:43.496181"], ["updated_at", "2018-10-16 17:21:43.496181"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9502296]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9502296 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a129f555-7224-4741-832b-32d59a33af16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c9c5877' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 9502296], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["role", 2], ["uuid", "a129f555-7224-4741-832b-32d59a33af16"], ["support_identifier", "cs_3c9c5877"], ["created_at", "2018-10-16 17:21:43.505733"], ["updated_at", "2018-10-16 17:21:43.505733"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 8085675]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 8085675 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8bc376eb-c000-4787-9a94-63072c221bd3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_32afa0bb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 8085675], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "8bc376eb-c000-4787-9a94-63072c221bd3"], ["support_identifier", "cs_32afa0bb"], ["created_at", "2018-10-16 17:21:43.511779"], ["updated_at", "2018-10-16 17:21:43.511779"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 7949940]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 7949940 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6e70c8d7-69a1-49d4-819d-5894985f91bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ef31f49' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 7949940], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "6e70c8d7-69a1-49d4-819d-5894985f91bf"], ["support_identifier", "cs_2ef31f49"], ["created_at", "2018-10-16 17:21:43.518180"], ["updated_at", "2018-10-16 17:21:43.518180"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 6456402]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 6456402 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'daf746ff-1daa-4d20-b660-a0d6f876dfcf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_68453c32' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 6456402], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "daf746ff-1daa-4d20-b660-a0d6f876dfcf"], ["support_identifier", "cs_68453c32"], ["created_at", "2018-10-16 17:21:43.523770"], ["updated_at", "2018-10-16 17:21:43.523770"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2991184]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2991184 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c8a01db-2dea-4ca4-8fe6-06a977aa4e35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33607331' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 2991184], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "2c8a01db-2dea-4ca4-8fe6-06a977aa4e35"], ["support_identifier", "cs_33607331"], ["created_at", "2018-10-16 17:21:43.529561"], ["updated_at", "2018-10-16 17:21:43.529561"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1477222940 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '12a0cf99-7f24-4d35-8ffb-7c36ff2f51ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_100c074b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1477222940], ["username", "jstrav"], ["access_token", "8801f12769b490fd049703148ba3af5d"], ["uuid", "12a0cf99-7f24-4d35-8ffb-7c36ff2f51ad"], ["support_identifier", "cs_100c074b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:43.535751"], ["updated_at", "2018-10-16 17:21:43.535751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1016960929 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '43c80d2e-1aa0-4ee1-851b-d9c408ee0d71' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44876772' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1016960929], ["username", "mary"], ["access_token", "5c66239bc666979a1068905b28abb053"], ["uuid", "43c80d2e-1aa0-4ee1-851b-d9c408ee0d71"], ["support_identifier", "cs_44876772"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:43.540282"], ["updated_at", "2018-10-16 17:21:43.540282"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -697271378 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a7b920c-240b-4f08-bdbd-18beaf9d1ba6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_49888020' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -697271378], ["username", "jstead"], ["access_token", "4c6ab1e617e2f4a2579ab701658a5d47"], ["uuid", "1a7b920c-240b-4f08-bdbd-18beaf9d1ba6"], ["support_identifier", "cs_49888020"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:43.544444"], ["updated_at", "2018-10-16 17:21:43.544444"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -89495726 LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '396bc9a6-a896-452f-9901-a80f4b66b730' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2d590782' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -89495726], ["username", "bigbear"], ["access_token", "bd42927d599fb4521af109314c86a031"], ["uuid", "396bc9a6-a896-452f-9901-a80f4b66b730"], ["support_identifier", "cs_2d590782"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:43.552555"], ["updated_at", "2018-10-16 17:21:43.552555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -844179154 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6536da93-3f99-46c8-ba86-d7d991b9b137' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1c54e7d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -844179154], ["username", "billy_00"], ["access_token", "ce841fbc8662f7ce12330fa4dab39bd6"], ["uuid", "6536da93-3f99-46c8-ba86-d7d991b9b137"], ["support_identifier", "cs_1c54e7d1"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:21:43.557195"], ["updated_at", "2018-10-16 17:21:43.557195"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1588355816 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4fa2546-7627-49d5-872d-369ad4843c85' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_94617398' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1588355816], ["username", "billy_01"], ["access_token", "4f61ed0e94de47338808e86c72c0f80d"], ["uuid", "c4fa2546-7627-49d5-872d-369ad4843c85"], ["support_identifier", "cs_94617398"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:21:43.561446"], ["updated_at", "2018-10-16 17:21:43.561446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -387313837 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a3e0fc6e-75be-42f4-ad9c-e44a998bf13f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cd72afd6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -387313837], ["username", "billy_02"], ["access_token", "377a20a174dbb8721d152395cb199a3e"], ["uuid", "a3e0fc6e-75be-42f4-ad9c-e44a998bf13f"], ["support_identifier", "cs_cd72afd6"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:21:43.566412"], ["updated_at", "2018-10-16 17:21:43.566412"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -728744412 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e9e4c55-f61c-4b84-958f-fe9ba96a9a0c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d7d3b1f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -728744412], ["username", "billy_03"], ["access_token", "0480fd2e6e6b39541e16350dde2b6010"], ["uuid", "9e9e4c55-f61c-4b84-958f-fe9ba96a9a0c"], ["support_identifier", "cs_4d7d3b1f"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:21:43.570698"], ["updated_at", "2018-10-16 17:21:43.570698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1270470605 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5dc5d2bf-ef8d-4474-923d-9730f49adc64' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fee5a73' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1270470605], ["username", "billy_04"], ["access_token", "8bb73e5b29e36ed0033b05a18327bf82"], ["uuid", "5dc5d2bf-ef8d-4474-923d-9730f49adc64"], ["support_identifier", "cs_0fee5a73"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:43.574813"], ["updated_at", "2018-10-16 17:21:43.574813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2044994340 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68fa9f3b-7829-468c-b79d-dad19a272f7b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_590c306c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2044994340], ["username", "billy_05"], ["access_token", "a97c5272e676b92b4c4997bdaffab36c"], ["uuid", "68fa9f3b-7829-468c-b79d-dad19a272f7b"], ["support_identifier", "cs_590c306c"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:43.578982"], ["updated_at", "2018-10-16 17:21:43.578982"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2112035535 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '61a30c44-26a8-43d6-8083-e03ec3621bf2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a29bddb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2112035535], ["username", "billy_06"], ["access_token", "b3e9c50c46c9c114a9d5f00d1d6a89d7"], ["uuid", "61a30c44-26a8-43d6-8083-e03ec3621bf2"], ["support_identifier", "cs_7a29bddb"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:43.583611"], ["updated_at", "2018-10-16 17:21:43.583611"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309315955 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '198abb48-0814-4c2e-8d38-9261a0c240b9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_77ca22e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -309315955], ["username", "billy_07"], ["access_token", "fdd548eb7035ae00aae560dbe4d5f3e5"], ["uuid", "198abb48-0814-4c2e-8d38-9261a0c240b9"], ["support_identifier", "cs_77ca22e1"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:43.587981"], ["updated_at", "2018-10-16 17:21:43.587981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1769783777 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c52a1d0-3c91-4f69-8165-21aa38ee8096' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8843544f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1769783777], ["username", "billy_08"], ["access_token", "b3af5ab265ecd860ce2191f5f0900f16"], ["uuid", "9c52a1d0-3c91-4f69-8165-21aa38ee8096"], ["support_identifier", "cs_8843544f"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:43.592252"], ["updated_at", "2018-10-16 17:21:43.592252"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071836761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8ccdc76-4122-41af-84c0-2d4ea160ace2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20a487b9' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1071836761], ["username", "billy_09"], ["access_token", "4347defb70e97fdf45827c8b550a9cc5"], ["uuid", "f8ccdc76-4122-41af-84c0-2d4ea160ace2"], ["support_identifier", "cs_20a487b9"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:43.596648"], ["updated_at", "2018-10-16 17:21:43.596648"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -87121756 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f2aea13-92b0-431e-b18f-617a1bdf9dcf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_69b820f0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -87121756], ["username", "billy_10"], ["access_token", "d4dcd4843863a48b527854de1eb376b5"], ["uuid", "9f2aea13-92b0-431e-b18f-617a1bdf9dcf"], ["support_identifier", "cs_69b820f0"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:43.603995"], ["updated_at", "2018-10-16 17:21:43.603995"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -799687996 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57b28162-30b7-4f34-b07d-c68153f6f66f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_89035836' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -799687996], ["username", "billy_11"], ["access_token", "29548af95d0d78147f0d63e2e2be03da"], ["uuid", "57b28162-30b7-4f34-b07d-c68153f6f66f"], ["support_identifier", "cs_89035836"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:43.608769"], ["updated_at", "2018-10-16 17:21:43.608769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1600460421 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '66631c7c-fdfd-458b-a2c6-6ec187918206' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7ee915bc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1600460421], ["username", "billy_12"], ["access_token", "046fa66e5f809ec64b5e803889dd3625"], ["uuid", "66631c7c-fdfd-458b-a2c6-6ec187918206"], ["support_identifier", "cs_7ee915bc"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:43.613107"], ["updated_at", "2018-10-16 17:21:43.613107"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -33552446 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5df424d-4c5b-45a3-b4ba-8fa35061d9c1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c53cc32' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -33552446], ["username", "billy_13"], ["access_token", "075c3f97a29fd700751a48581adb8b6e"], ["uuid", "e5df424d-4c5b-45a3-b4ba-8fa35061d9c1"], ["support_identifier", "cs_6c53cc32"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:43.618212"], ["updated_at", "2018-10-16 17:21:43.618212"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2095971415 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d45bd7a-8fd5-4074-af32-80ff92ef7a8d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d77ee49d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2095971415], ["username", "billy_14"], ["access_token", "acd2f306ddafa2257fa439b4952680d9"], ["uuid", "0d45bd7a-8fd5-4074-af32-80ff92ef7a8d"], ["support_identifier", "cs_d77ee49d"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:43.622520"], ["updated_at", "2018-10-16 17:21:43.622520"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1966389950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba01b10d-fc2f-4d84-9825-89b43a70ead9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e39a89c8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1966389950], ["username", "billy_15"], ["access_token", "2f88ad89aad63179c47328098b155bc5"], ["uuid", "ba01b10d-fc2f-4d84-9825-89b43a70ead9"], ["support_identifier", "cs_e39a89c8"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:43.626986"], ["updated_at", "2018-10-16 17:21:43.626986"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1332383661 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '12f532ae-3aba-4b1a-842a-a1fc3267d2c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cdbd39a9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1332383661], ["username", "billy_16"], ["access_token", "f160450c607492de86440a1a02685fd5"], ["uuid", "12f532ae-3aba-4b1a-842a-a1fc3267d2c6"], ["support_identifier", "cs_cdbd39a9"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:43.631591"], ["updated_at", "2018-10-16 17:21:43.631591"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2004080367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '589c6885-5d5d-4c3d-8bd2-66eaed08ed89' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d46cc41' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2004080367], ["username", "billy_17"], ["access_token", "b1bdd8fc57cdca79d834684e8f154a2b"], ["uuid", "589c6885-5d5d-4c3d-8bd2-66eaed08ed89"], ["support_identifier", "cs_0d46cc41"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:43.638770"], ["updated_at", "2018-10-16 17:21:43.638770"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -899631961 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'abb93c4f-73af-4ca3-8cfe-4e7ec4671139' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_08819588' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -899631961], ["username", "billy_18"], ["access_token", "0f2701b5f61aa6287ab23b975c12c1ba"], ["uuid", "abb93c4f-73af-4ca3-8cfe-4e7ec4671139"], ["support_identifier", "cs_08819588"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:43.643074"], ["updated_at", "2018-10-16 17:21:43.643074"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -355911652 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '77450695-4a8c-4724-8f62-2d7150bda837' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2fb2dca9' LIMIT 1 + SQL (1.0ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -355911652], ["username", "billy_19"], ["access_token", "5eeaba2fac8ab4cc17a669ff0ed39db8"], ["uuid", "77450695-4a8c-4724-8f62-2d7150bda837"], ["support_identifier", "cs_2fb2dca9"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:43.648063"], ["updated_at", "2018-10-16 17:21:43.648063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1804191026 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e3ab0988-b5b7-424b-bb70-eb0138911e33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b93bc20' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1804191026], ["username", "billy_20"], ["access_token", "f9cbf987509822b668426edbef6289e6"], ["uuid", "e3ab0988-b5b7-424b-bb70-eb0138911e33"], ["support_identifier", "cs_9b93bc20"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:43.654826"], ["updated_at", "2018-10-16 17:21:43.654826"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1230927335 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '626ac507-9b26-4853-b489-2d02df66ea5d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26637667' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1230927335], ["username", "billy_21"], ["access_token", "6168dfe0a2742507ff40fef25ce92cd1"], ["uuid", "626ac507-9b26-4853-b489-2d02df66ea5d"], ["support_identifier", "cs_26637667"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:43.659015"], ["updated_at", "2018-10-16 17:21:43.659015"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -546808885 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '91058036-1062-4e65-996c-c47eafcd723e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df074c99' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -546808885], ["username", "billy_22"], ["access_token", "4ff8360694e4857bd60ee13eee01ee08"], ["uuid", "91058036-1062-4e65-996c-c47eafcd723e"], ["support_identifier", "cs_df074c99"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:43.663270"], ["updated_at", "2018-10-16 17:21:43.663270"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -241064323 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0a33422-8396-4e14-8f59-7e7044ad9626' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe4d7d2e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -241064323], ["username", "billy_23"], ["access_token", "156eea1f07cbb1f4dcdbdc9b2221102c"], ["uuid", "c0a33422-8396-4e14-8f59-7e7044ad9626"], ["support_identifier", "cs_fe4d7d2e"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:43.667843"], ["updated_at", "2018-10-16 17:21:43.667843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1120737467 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd89901ba-f120-4f8e-aa83-e3ed9923d004' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f57ba50' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1120737467], ["username", "billy_24"], ["access_token", "34ecc8539195c41bd5ab5070c30f0dde"], ["uuid", "d89901ba-f120-4f8e-aa83-e3ed9923d004"], ["support_identifier", "cs_3f57ba50"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:43.671988"], ["updated_at", "2018-10-16 17:21:43.671988"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1178144629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0e247089-cbea-4c98-8c77-8586f2eec4d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_460e867e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1178144629], ["username", "billy_25"], ["access_token", "431ea2154b52062cee63be3f574de4c0"], ["uuid", "0e247089-cbea-4c98-8c77-8586f2eec4d6"], ["support_identifier", "cs_460e867e"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:43.676203"], ["updated_at", "2018-10-16 17:21:43.676203"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -945056850 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8607d738-ba3b-4320-a815-bb0bd497056e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96b64e66' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -945056850], ["username", "billy_26"], ["access_token", "f6f2289a35b9e4d6f1114d9979a73d51"], ["uuid", "8607d738-ba3b-4320-a815-bb0bd497056e"], ["support_identifier", "cs_96b64e66"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:43.680771"], ["updated_at", "2018-10-16 17:21:43.680771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -164796225 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '82f6db3b-3e3a-441b-8dea-0a1705576e88' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8e78efd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -164796225], ["username", "billy_27"], ["access_token", "4f40083b3d4f34646a1adab0f192bb73"], ["uuid", "82f6db3b-3e3a-441b-8dea-0a1705576e88"], ["support_identifier", "cs_e8e78efd"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:43.685374"], ["updated_at", "2018-10-16 17:21:43.685374"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137071588 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e938fd62-4122-4b18-a5c0-2a5e2a8bd164' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5244295e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2137071588], ["username", "billy_28"], ["access_token", "c1c6d5e81b60e25b49a4e9cc16110120"], ["uuid", "e938fd62-4122-4b18-a5c0-2a5e2a8bd164"], ["support_identifier", "cs_5244295e"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:43.689649"], ["updated_at", "2018-10-16 17:21:43.689649"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -34949075 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '255286d9-d03b-466c-b898-8e49788dd77e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8fe8f6b4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -34949075], ["username", "billy_29"], ["access_token", "cf6509de4579168af0fe65e4b8496629"], ["uuid", "255286d9-d03b-466c-b898-8e49788dd77e"], ["support_identifier", "cs_8fe8f6b4"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:43.693720"], ["updated_at", "2018-10-16 17:21:43.693720"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137248141 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5aa5880e-e1a4-436f-b4db-a24f940d7ca7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6b7ab77b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2137248141], ["username", "billy_30"], ["access_token", "0c3fb2473badbd7a4722396315fed013"], ["uuid", "5aa5880e-e1a4-436f-b4db-a24f940d7ca7"], ["support_identifier", "cs_6b7ab77b"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:43.700772"], ["updated_at", "2018-10-16 17:21:43.700772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1684267261 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f0702d4-8a3b-426f-87ac-439b9a890f2e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e23658cc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1684267261], ["username", "billy_31"], ["access_token", "5b8a683509f709b29ac6ad69a53821ff"], ["uuid", "0f0702d4-8a3b-426f-87ac-439b9a890f2e"], ["support_identifier", "cs_e23658cc"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:43.705395"], ["updated_at", "2018-10-16 17:21:43.705395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1488616297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd5551180-71b3-4935-b2fa-90dc6d1cc252' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e9a0c20' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1488616297], ["username", "billy_32"], ["access_token", "a3fbbf4355dd0585d189cb1bd014b203"], ["uuid", "d5551180-71b3-4935-b2fa-90dc6d1cc252"], ["support_identifier", "cs_7e9a0c20"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:43.709587"], ["updated_at", "2018-10-16 17:21:43.709587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -655015441 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6bafa16d-317f-4d03-aae4-cd1b8d0b4ac0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0796dd43' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -655015441], ["username", "billy_33"], ["access_token", "48ccd9def290b2d563bf7686cbdfe359"], ["uuid", "6bafa16d-317f-4d03-aae4-cd1b8d0b4ac0"], ["support_identifier", "cs_0796dd43"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:43.714341"], ["updated_at", "2018-10-16 17:21:43.714341"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927876231 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '83d1cee1-6790-4f64-b692-f3833dbab27c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_00c513da' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -927876231], ["username", "billy_34"], ["access_token", "122424cda669023dc619a355571a5794"], ["uuid", "83d1cee1-6790-4f64-b692-f3833dbab27c"], ["support_identifier", "cs_00c513da"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:43.718833"], ["updated_at", "2018-10-16 17:21:43.718833"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -616791547 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2997c42-190f-4f43-ad8e-4cefe550f8c1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_36d35700' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -616791547], ["username", "billy_35"], ["access_token", "aa77a49546d8031aa803a86096957002"], ["uuid", "d2997c42-190f-4f43-ad8e-4cefe550f8c1"], ["support_identifier", "cs_36d35700"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:43.722968"], ["updated_at", "2018-10-16 17:21:43.722968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -144427775 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd238994-c558-4b70-ab4a-a93e754eb317' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e9927fb1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -144427775], ["username", "billy_36"], ["access_token", "7821de640de2c70a245e8fb45f71f14f"], ["uuid", "bd238994-c558-4b70-ab4a-a93e754eb317"], ["support_identifier", "cs_e9927fb1"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:43.726991"], ["updated_at", "2018-10-16 17:21:43.726991"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000548505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8555e6b2-04c6-44a9-b5b9-f5766d74bf43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d169c605' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2000548505], ["username", "billy_37"], ["access_token", "41896479aff5b5e2ba0a1ad07f5f8431"], ["uuid", "8555e6b2-04c6-44a9-b5b9-f5766d74bf43"], ["support_identifier", "cs_d169c605"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:43.733537"], ["updated_at", "2018-10-16 17:21:43.733537"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1281658947 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f761191d-20e7-49b7-8209-593e943151bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60025bd5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1281658947], ["username", "billy_38"], ["access_token", "5a3cff3ed39307abaaea9f5a235f520e"], ["uuid", "f761191d-20e7-49b7-8209-593e943151bb"], ["support_identifier", "cs_60025bd5"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:43.739325"], ["updated_at", "2018-10-16 17:21:43.739325"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1294020854 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2257308-52db-450e-bfec-0a68257c3df3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5af0d9d7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1294020854], ["username", "billy_39"], ["access_token", "566215750e5dc878d788cc8df96e7785"], ["uuid", "c2257308-52db-450e-bfec-0a68257c3df3"], ["support_identifier", "cs_5af0d9d7"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:43.743433"], ["updated_at", "2018-10-16 17:21:43.743433"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1797087347 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ae6f491-e4eb-4c90-9b9b-664bdb3d54d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a169623f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1797087347], ["username", "billy_40"], ["access_token", "068fe3a48d95d2c41c36693997bc62c5"], ["uuid", "3ae6f491-e4eb-4c90-9b9b-664bdb3d54d1"], ["support_identifier", "cs_a169623f"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:43.747864"], ["updated_at", "2018-10-16 17:21:43.747864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2009613875 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '75b553e7-e88b-4bef-a41a-4bfac9b4fb1f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ae5fa5ed' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2009613875], ["username", "billy_41"], ["access_token", "38302cb548cc9aa0ef065e2143444fe7"], ["uuid", "75b553e7-e88b-4bef-a41a-4bfac9b4fb1f"], ["support_identifier", "cs_ae5fa5ed"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:43.752368"], ["updated_at", "2018-10-16 17:21:43.752368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373678141 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3d7df21-5d73-43ef-ab8f-6c3af94fa9aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59ffbd49' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1373678141], ["username", "billy_42"], ["access_token", "a5f6fcad3a06d2eb78165749c9b378a5"], ["uuid", "c3d7df21-5d73-43ef-ab8f-6c3af94fa9aa"], ["support_identifier", "cs_59ffbd49"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:43.756418"], ["updated_at", "2018-10-16 17:21:43.756418"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -308513329 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '672ff165-dd14-4f4a-842a-3e042d80f3a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_554a0ea2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -308513329], ["username", "billy_43"], ["access_token", "b27c90749b1216524b11f57b62e16a90"], ["uuid", "672ff165-dd14-4f4a-842a-3e042d80f3a6"], ["support_identifier", "cs_554a0ea2"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:43.760371"], ["updated_at", "2018-10-16 17:21:43.760371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -551770678 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8acc7f61-a4ac-4e67-8c88-963995c67ed4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ebe2b7f5' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -551770678], ["username", "billy_44"], ["access_token", "bd9c1eefb5ad94a5933ed10bcff80d20"], ["uuid", "8acc7f61-a4ac-4e67-8c88-963995c67ed4"], ["support_identifier", "cs_ebe2b7f5"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:43.766091"], ["updated_at", "2018-10-16 17:21:43.766091"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1103011864 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6fe9aa45-f42f-4678-8b1c-1b015038f357' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a226aea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1103011864], ["username", "billy_45"], ["access_token", "d35927087e384a70129e3bbebe44b0f2"], ["uuid", "6fe9aa45-f42f-4678-8b1c-1b015038f357"], ["support_identifier", "cs_5a226aea"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:43.772226"], ["updated_at", "2018-10-16 17:21:43.772226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805067612 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7bf4de18-a92c-4df9-97db-05cc35de2d37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1c05309' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -805067612], ["username", "billy_46"], ["access_token", "e598b63bc63dbe1d52d7a9bdd42083f5"], ["uuid", "7bf4de18-a92c-4df9-97db-05cc35de2d37"], ["support_identifier", "cs_b1c05309"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:43.776308"], ["updated_at", "2018-10-16 17:21:43.776308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1981908019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c1b9c05-c923-45ba-b734-1aff89cc45ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_678452ed' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1981908019], ["username", "billy_47"], ["access_token", "57ac0f0a1def8f7c798987c69058d1ef"], ["uuid", "7c1b9c05-c923-45ba-b734-1aff89cc45ef"], ["support_identifier", "cs_678452ed"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:43.780927"], ["updated_at", "2018-10-16 17:21:43.780927"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1532713919 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8a0bf4b0-deff-470b-9f5b-7d8c24d425fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d4157c30' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1532713919], ["username", "billy_48"], ["access_token", "f79d701578c46f0987f8e3e460a7ab62"], ["uuid", "8a0bf4b0-deff-470b-9f5b-7d8c24d425fd"], ["support_identifier", "cs_d4157c30"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:43.785438"], ["updated_at", "2018-10-16 17:21:43.785438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1565379325 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6544b9a-3dd1-494a-af24-8252499aaf09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1bf8c690' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1565379325], ["username", "billy_49"], ["access_token", "31f01d6393f846ba5f265d5c10de00fa"], ["uuid", "c6544b9a-3dd1-494a-af24-8252499aaf09"], ["support_identifier", "cs_1bf8c690"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:43.789501"], ["updated_at", "2018-10-16 17:21:43.789501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1580399254 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b055de5f-f5af-40cd-bd35-1a5aaaa7b4b1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f443df73' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1580399254], ["username", "jstrav"], ["access_token", "44eac6da4fb88dd7fa91c85a9fe7c300"], ["uuid", "b055de5f-f5af-40cd-bd35-1a5aaaa7b4b1"], ["support_identifier", "cs_f443df73"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:43.795764"], ["updated_at", "2018-10-16 17:21:43.795764"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1293063886 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d7a6709-f256-49b2-bdad-77d79455dc78' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c99b4fbc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1293063886], ["username", "mary"], ["access_token", "dcd3d4096dd98ef0465ce3e89284ef87"], ["uuid", "0d7a6709-f256-49b2-bdad-77d79455dc78"], ["support_identifier", "cs_c99b4fbc"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:43.800386"], ["updated_at", "2018-10-16 17:21:43.800386"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1075307862 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e1d56952-708d-4692-a6ee-8ad27a899ca8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_724a7660' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1075307862], ["username", "jstead"], ["access_token", "3667a677d6e5e68da9ea5498b560aca5"], ["uuid", "e1d56952-708d-4692-a6ee-8ad27a899ca8"], ["support_identifier", "cs_724a7660"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:43.804566"], ["updated_at", "2018-10-16 17:21:43.804566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1525036070 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f8f9a26-0d90-4837-8b46-007badedce77' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_da075138' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1525036070], ["username", "bigbear"], ["access_token", "51045451599dc03c38c8c19c9fc605e3"], ["uuid", "1f8f9a26-0d90-4837-8b46-007badedce77"], ["support_identifier", "cs_da075138"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:43.808627"], ["updated_at", "2018-10-16 17:21:43.808627"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1000322849 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef029448-6cfc-484a-848f-3df549a97f67' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87e6ac98' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1000322849], ["username", "billy_00"], ["access_token", "60bf9e6ae10a5d1dad94f47057c78698"], ["uuid", "ef029448-6cfc-484a-848f-3df549a97f67"], ["support_identifier", "cs_87e6ac98"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:21:43.812923"], ["updated_at", "2018-10-16 17:21:43.812923"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -112928590 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7365763-e739-41a4-8665-a2860fb7357b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d32bee60' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -112928590], ["username", "billy_01"], ["access_token", "88156f3461a951e15fe2285be9efb3f7"], ["uuid", "f7365763-e739-41a4-8665-a2860fb7357b"], ["support_identifier", "cs_d32bee60"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:21:43.820054"], ["updated_at", "2018-10-16 17:21:43.820054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433243345 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd4d02978-677a-4155-9554-5b38ccf6dd52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3db8154c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1433243345], ["username", "billy_02"], ["access_token", "628a2758f71b9c5cf78c8b6a4d291be9"], ["uuid", "d4d02978-677a-4155-9554-5b38ccf6dd52"], ["support_identifier", "cs_3db8154c"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:21:43.824437"], ["updated_at", "2018-10-16 17:21:43.824437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1158471532 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9f5e5a9-479d-48c0-a925-f849ce70d599' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b422098' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1158471532], ["username", "billy_03"], ["access_token", "dfca71702131ab4ed71c42b331f536f5"], ["uuid", "e9f5e5a9-479d-48c0-a925-f849ce70d599"], ["support_identifier", "cs_0b422098"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:21:43.828831"], ["updated_at", "2018-10-16 17:21:43.828831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -700504512 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '749daa66-c07b-47bb-b4da-775000ca8853' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ccde232e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -700504512], ["username", "billy_04"], ["access_token", "25dfc2dabb9153d191087753d6ace61f"], ["uuid", "749daa66-c07b-47bb-b4da-775000ca8853"], ["support_identifier", "cs_ccde232e"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:43.833955"], ["updated_at", "2018-10-16 17:21:43.833955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -770022419 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8fa5852-3c65-4406-98d5-a4a2fe02fe80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f4bee1f3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -770022419], ["username", "billy_05"], ["access_token", "16ace2b1cc321ab22b9cfc2c42109e99"], ["uuid", "b8fa5852-3c65-4406-98d5-a4a2fe02fe80"], ["support_identifier", "cs_f4bee1f3"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:43.838421"], ["updated_at", "2018-10-16 17:21:43.838421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1717918677 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '83663898-d8b1-47da-b1aa-09c0b6cba6ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b8aeb80e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1717918677], ["username", "billy_06"], ["access_token", "1a753b199fb08c28cac77f4ba29b9d46"], ["uuid", "83663898-d8b1-47da-b1aa-09c0b6cba6ee"], ["support_identifier", "cs_b8aeb80e"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:43.842562"], ["updated_at", "2018-10-16 17:21:43.842562"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -837620354 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '97a7977e-6fe4-4fcd-9822-12824074da32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b9d20d3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -837620354], ["username", "billy_07"], ["access_token", "bb78bb653bc95093424f0befde1cad91"], ["uuid", "97a7977e-6fe4-4fcd-9822-12824074da32"], ["support_identifier", "cs_5b9d20d3"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:43.850879"], ["updated_at", "2018-10-16 17:21:43.850879"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1880574326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ccf1b2d7-f799-42b6-af4c-04d6e9af6edc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f9f95c22' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1880574326], ["username", "billy_08"], ["access_token", "ef675ec8a006844f4a9d970f50409e03"], ["uuid", "ccf1b2d7-f799-42b6-af4c-04d6e9af6edc"], ["support_identifier", "cs_f9f95c22"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:43.855122"], ["updated_at", "2018-10-16 17:21:43.855122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -618207222 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f35860ba-242b-4779-9b3f-88502320817f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63de6857' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -618207222], ["username", "billy_09"], ["access_token", "6b5662dd8744d081d6376be2573d133c"], ["uuid", "f35860ba-242b-4779-9b3f-88502320817f"], ["support_identifier", "cs_63de6857"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:43.859154"], ["updated_at", "2018-10-16 17:21:43.859154"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -629608430 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f7bcfdc-0036-4f22-a4e7-4d7bba08d656' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_49196fa3' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -629608430], ["username", "billy_10"], ["access_token", "f2ff1164f9add372bcf5cbb088805ea7"], ["uuid", "2f7bcfdc-0036-4f22-a4e7-4d7bba08d656"], ["support_identifier", "cs_49196fa3"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:43.863472"], ["updated_at", "2018-10-16 17:21:43.863472"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -292764532 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c06a9577-aec9-4e3e-a82f-c8388aa7e41b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9ba7c9db' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -292764532], ["username", "billy_11"], ["access_token", "504014aeeafa3ef3676edbb4d1426ed3"], ["uuid", "c06a9577-aec9-4e3e-a82f-c8388aa7e41b"], ["support_identifier", "cs_9ba7c9db"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:43.870851"], ["updated_at", "2018-10-16 17:21:43.870851"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -555959648 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e73c2817-7969-44d7-8ea8-b4b5ec1365c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d9075345' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -555959648], ["username", "billy_12"], ["access_token", "f033c40325acd874a8b5574fc8a55da6"], ["uuid", "e73c2817-7969-44d7-8ea8-b4b5ec1365c7"], ["support_identifier", "cs_d9075345"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:43.875352"], ["updated_at", "2018-10-16 17:21:43.875352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -842535796 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '69dbb90a-0a53-48a4-94ae-e20899c5c691' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_00567811' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -842535796], ["username", "billy_13"], ["access_token", "edd79236aab4608226b735243eb7bfa5"], ["uuid", "69dbb90a-0a53-48a4-94ae-e20899c5c691"], ["support_identifier", "cs_00567811"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:43.879511"], ["updated_at", "2018-10-16 17:21:43.879511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -808567000 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f54cc5f-03ff-4101-9122-77ccd4a49661' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d01b98d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -808567000], ["username", "billy_14"], ["access_token", "093e9f64d7e28e855200249e6d24f5e9"], ["uuid", "9f54cc5f-03ff-4101-9122-77ccd4a49661"], ["support_identifier", "cs_3d01b98d"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:43.884313"], ["updated_at", "2018-10-16 17:21:43.884313"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1359879289 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e3cdeefd-3e98-4f41-b65c-4b222b1ae731' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_14af78b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1359879289], ["username", "billy_15"], ["access_token", "1bb5e74947ae39ae2273bb9ddc342cda"], ["uuid", "e3cdeefd-3e98-4f41-b65c-4b222b1ae731"], ["support_identifier", "cs_14af78b2"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:43.888471"], ["updated_at", "2018-10-16 17:21:43.888471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1821950591 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '92e43035-638f-4931-9cb8-9a008d3ac11e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_211ecea5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1821950591], ["username", "billy_16"], ["access_token", "f4e1258a30799ea65e47cc1e99477397"], ["uuid", "92e43035-638f-4931-9cb8-9a008d3ac11e"], ["support_identifier", "cs_211ecea5"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:43.892574"], ["updated_at", "2018-10-16 17:21:43.892574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1201419380 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cea7c597-edae-44fa-b0d7-bb6db9355fc3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6fca6d93' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1201419380], ["username", "billy_17"], ["access_token", "5b8ac4454ff38a97be57eb7529eca998"], ["uuid", "cea7c597-edae-44fa-b0d7-bb6db9355fc3"], ["support_identifier", "cs_6fca6d93"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:43.896809"], ["updated_at", "2018-10-16 17:21:43.896809"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1587112231 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba6b6833-22f8-460e-9d7a-62c7fb411c50' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a131bfa7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1587112231], ["username", "billy_18"], ["access_token", "aa908b176418c725f3022a9c3c5e7e72"], ["uuid", "ba6b6833-22f8-460e-9d7a-62c7fb411c50"], ["support_identifier", "cs_a131bfa7"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:43.901248"], ["updated_at", "2018-10-16 17:21:43.901248"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1467002303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'efeee1b7-09c4-4dde-af1c-f34b86034000' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1a3cb483' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1467002303], ["username", "billy_19"], ["access_token", "e8cbfbf37226da9661132588586f7e30"], ["uuid", "efeee1b7-09c4-4dde-af1c-f34b86034000"], ["support_identifier", "cs_1a3cb483"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:43.905300"], ["updated_at", "2018-10-16 17:21:43.905300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1327648090 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a6c1640-88ad-4273-9570-7196b1a83998' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e9f16e95' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1327648090], ["username", "billy_20"], ["access_token", "b81213f65abfeb71590f67a7f3e3d1e8"], ["uuid", "4a6c1640-88ad-4273-9570-7196b1a83998"], ["support_identifier", "cs_e9f16e95"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:43.909518"], ["updated_at", "2018-10-16 17:21:43.909518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1592625554 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4508771-155a-4e53-95a3-5dc1353ef48c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9e3f639b' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1592625554], ["username", "billy_21"], ["access_token", "b494ee363c630586595901e8aabfcf6e"], ["uuid", "e4508771-155a-4e53-95a3-5dc1353ef48c"], ["support_identifier", "cs_9e3f639b"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:43.913840"], ["updated_at", "2018-10-16 17:21:43.913840"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561244574 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '93214da9-833e-444f-9801-4fbc5abaf35b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_631edcf6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1561244574], ["username", "billy_22"], ["access_token", "7172ec2b7ffed2e59b5426e37e356f5b"], ["uuid", "93214da9-833e-444f-9801-4fbc5abaf35b"], ["support_identifier", "cs_631edcf6"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:43.921159"], ["updated_at", "2018-10-16 17:21:43.921159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -535322061 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aea9f099-ef4f-415e-97e7-6908b0e1b539' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d418f13' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -535322061], ["username", "billy_23"], ["access_token", "5d101f0494f09234eee7e0c3994036de"], ["uuid", "aea9f099-ef4f-415e-97e7-6908b0e1b539"], ["support_identifier", "cs_4d418f13"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:43.925387"], ["updated_at", "2018-10-16 17:21:43.925387"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1031171254 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16e96b0b-b8ad-436f-aac3-221d77077d2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3537224f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1031171254], ["username", "billy_24"], ["access_token", "c7f201af1dd7862f226eb4b5c4c3f581"], ["uuid", "16e96b0b-b8ad-436f-aac3-221d77077d2d"], ["support_identifier", "cs_3537224f"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:43.929439"], ["updated_at", "2018-10-16 17:21:43.929439"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1047851272 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c9d2222a-d7be-4a83-8f02-58788bd73c02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d8031e40' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1047851272], ["username", "billy_25"], ["access_token", "1eca0236d77276189c101c804ddce56a"], ["uuid", "c9d2222a-d7be-4a83-8f02-58788bd73c02"], ["support_identifier", "cs_d8031e40"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:43.934197"], ["updated_at", "2018-10-16 17:21:43.934197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -296828817 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c19ed8a-0b3c-4d9b-9b37-a432e49a882f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_21e97e63' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -296828817], ["username", "billy_26"], ["access_token", "893e6b70addc2bcd757153d4167987e4"], ["uuid", "1c19ed8a-0b3c-4d9b-9b37-a432e49a882f"], ["support_identifier", "cs_21e97e63"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:43.938395"], ["updated_at", "2018-10-16 17:21:43.938395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -165483193 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6b0a2db-3ecc-4fe8-89c3-31efeae31cb4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3db6e1db' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -165483193], ["username", "billy_27"], ["access_token", "47eb856e249a91315491fea13dbc1a56"], ["uuid", "b6b0a2db-3ecc-4fe8-89c3-31efeae31cb4"], ["support_identifier", "cs_3db6e1db"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:43.942514"], ["updated_at", "2018-10-16 17:21:43.942514"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1818312842 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc47c6f1-dc4a-4405-90ee-5755efc84d6e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04fd23ee' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1818312842], ["username", "billy_28"], ["access_token", "34bb1701eecd7336764553a5211846cc"], ["uuid", "bc47c6f1-dc4a-4405-90ee-5755efc84d6e"], ["support_identifier", "cs_04fd23ee"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:43.946628"], ["updated_at", "2018-10-16 17:21:43.946628"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2142530567 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9b6b5f5-6d7c-42c2-8181-54b1d35d4e79' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a6b118d6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2142530567], ["username", "billy_29"], ["access_token", "5340a01ee17df471478063fe94c1d376"], ["uuid", "e9b6b5f5-6d7c-42c2-8181-54b1d35d4e79"], ["support_identifier", "cs_a6b118d6"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:43.953890"], ["updated_at", "2018-10-16 17:21:43.953890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1347981822 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58141703-b904-478b-81ad-06003e88ef83' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_166dbf0c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1347981822], ["username", "billy_30"], ["access_token", "dbd3c2de643219d9af303f5239d87b02"], ["uuid", "58141703-b904-478b-81ad-06003e88ef83"], ["support_identifier", "cs_166dbf0c"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:43.958304"], ["updated_at", "2018-10-16 17:21:43.958304"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1266658583 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f07c29d5-efcd-4c13-a640-408386214c60' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_679970c5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1266658583], ["username", "billy_31"], ["access_token", "62dd4d9e0333418f5af747af1d4c650c"], ["uuid", "f07c29d5-efcd-4c13-a640-408386214c60"], ["support_identifier", "cs_679970c5"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:43.962566"], ["updated_at", "2018-10-16 17:21:43.962566"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -417424273 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38735b5d-5c90-4853-9cb8-5c81012cab2f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0922080f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -417424273], ["username", "billy_32"], ["access_token", "79b5de631d9ea16e09dd44c41a0c1d5e"], ["uuid", "38735b5d-5c90-4853-9cb8-5c81012cab2f"], ["support_identifier", "cs_0922080f"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:43.967327"], ["updated_at", "2018-10-16 17:21:43.967327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1308912903 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd271989f-24ae-4786-bebf-68f79d87767c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_73fb4c31' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1308912903], ["username", "billy_33"], ["access_token", "a36f5f898d9ec207240ed226dd2538fb"], ["uuid", "d271989f-24ae-4786-bebf-68f79d87767c"], ["support_identifier", "cs_73fb4c31"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:43.971392"], ["updated_at", "2018-10-16 17:21:43.971392"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -189539466 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '07d81733-3bb7-4a72-b5a4-fb1570b9568c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fd92cd4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -189539466], ["username", "billy_34"], ["access_token", "e4d0df3df302135852f0a1161c7ba7b2"], ["uuid", "07d81733-3bb7-4a72-b5a4-fb1570b9568c"], ["support_identifier", "cs_0fd92cd4"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:43.975415"], ["updated_at", "2018-10-16 17:21:43.975415"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -479214153 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5df377ec-cde8-4a87-ab30-7e919e50c960' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_658c598a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -479214153], ["username", "billy_35"], ["access_token", "154a8b4ef28a8ac46c6259cd424a7bf2"], ["uuid", "5df377ec-cde8-4a87-ab30-7e919e50c960"], ["support_identifier", "cs_658c598a"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:43.979517"], ["updated_at", "2018-10-16 17:21:43.979517"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2082276708 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '685d186d-4b28-439d-b587-41f5d750a562' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98646f12' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2082276708], ["username", "billy_36"], ["access_token", "f542ffeef337dd506c03f6e763497048"], ["uuid", "685d186d-4b28-439d-b587-41f5d750a562"], ["support_identifier", "cs_98646f12"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:43.986984"], ["updated_at", "2018-10-16 17:21:43.986984"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -132237684 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '80a5777a-fcd7-4e13-bce6-6ff924e3eae3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_152663a9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -132237684], ["username", "billy_37"], ["access_token", "c61001dc8055ddfc551327610c4c4b72"], ["uuid", "80a5777a-fcd7-4e13-bce6-6ff924e3eae3"], ["support_identifier", "cs_152663a9"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:43.991453"], ["updated_at", "2018-10-16 17:21:43.991453"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -952800137 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9fae6c93-787c-4502-8455-ca5a59b3620f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_441d1530' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -952800137], ["username", "billy_38"], ["access_token", "89b846d8157d1a868d7a08afb186ad1b"], ["uuid", "9fae6c93-787c-4502-8455-ca5a59b3620f"], ["support_identifier", "cs_441d1530"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:43.995611"], ["updated_at", "2018-10-16 17:21:43.995611"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1034206908 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16cb9307-cfb0-485a-8b48-7c0c6b63e7ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af7cba52' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1034206908], ["username", "billy_39"], ["access_token", "287805bbf9e96f698824f8c04d2b063b"], ["uuid", "16cb9307-cfb0-485a-8b48-7c0c6b63e7ee"], ["support_identifier", "cs_af7cba52"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:44.000256"], ["updated_at", "2018-10-16 17:21:44.000256"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1334277374 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '532923ec-90c4-492d-a76f-ba00565ec0cb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01f2046e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1334277374], ["username", "billy_40"], ["access_token", "fcb713da768646c456c94c7b5667bb8f"], ["uuid", "532923ec-90c4-492d-a76f-ba00565ec0cb"], ["support_identifier", "cs_01f2046e"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:44.004755"], ["updated_at", "2018-10-16 17:21:44.004755"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -53739438 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de4a4e73-0e78-404a-8535-aa67e617f4f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_929fbbef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -53739438], ["username", "billy_41"], ["access_token", "a1f9ab004cbd36c9f5cbadc2e522198d"], ["uuid", "de4a4e73-0e78-404a-8535-aa67e617f4f5"], ["support_identifier", "cs_929fbbef"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:44.009221"], ["updated_at", "2018-10-16 17:21:44.009221"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2068796084 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9ecfe0c3-99fe-44e1-83b8-93b9fe7e21a9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9cac493c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2068796084], ["username", "billy_42"], ["access_token", "06ef1d1629e8516181c24adcea7abcc3"], ["uuid", "9ecfe0c3-99fe-44e1-83b8-93b9fe7e21a9"], ["support_identifier", "cs_9cac493c"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:44.013702"], ["updated_at", "2018-10-16 17:21:44.013702"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2110321255 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3ac34ae-e8b8-4de8-89bf-1e297038c228' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b8669a97' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2110321255], ["username", "billy_43"], ["access_token", "76886f223b97e15247f0166c4b4c1f11"], ["uuid", "c3ac34ae-e8b8-4de8-89bf-1e297038c228"], ["support_identifier", "cs_b8669a97"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:44.018302"], ["updated_at", "2018-10-16 17:21:44.018302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -947102216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d960c1e-7c90-421f-9418-43e47923483c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_13e3c3be' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -947102216], ["username", "billy_44"], ["access_token", "6e965bfce80fba030ac3b31a8f6e629e"], ["uuid", "6d960c1e-7c90-421f-9418-43e47923483c"], ["support_identifier", "cs_13e3c3be"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:44.024272"], ["updated_at", "2018-10-16 17:21:44.024272"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -941712297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be00934a-f2d4-4f98-b661-a3181a77457d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f7c569f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -941712297], ["username", "billy_45"], ["access_token", "09dd7b9e5c5d2c06397b799f3075697f"], ["uuid", "be00934a-f2d4-4f98-b661-a3181a77457d"], ["support_identifier", "cs_3f7c569f"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:44.029157"], ["updated_at", "2018-10-16 17:21:44.029157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -384879552 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '202ad7d3-2022-4722-94a2-54af60dceb8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_acfa818c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -384879552], ["username", "billy_46"], ["access_token", "fc978ae96dbb2543e87fde4f13096675"], ["uuid", "202ad7d3-2022-4722-94a2-54af60dceb8f"], ["support_identifier", "cs_acfa818c"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:44.033717"], ["updated_at", "2018-10-16 17:21:44.033717"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1883062603 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b2fe4405-0037-44f0-85a0-7e1d19fb06e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3af1a409' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1883062603], ["username", "billy_47"], ["access_token", "3e7f61358c7f159c79fd6df46fee0093"], ["uuid", "b2fe4405-0037-44f0-85a0-7e1d19fb06e9"], ["support_identifier", "cs_3af1a409"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:44.038299"], ["updated_at", "2018-10-16 17:21:44.038299"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992198138 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '10906133-84d6-4cd9-b213-060a026e63b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea353d8c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -992198138], ["username", "billy_48"], ["access_token", "c0916d5938c4429de1c41b3b1cb19fae"], ["uuid", "10906133-84d6-4cd9-b213-060a026e63b3"], ["support_identifier", "cs_ea353d8c"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:44.042993"], ["updated_at", "2018-10-16 17:21:44.042993"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1546236475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '51b25658-4440-4bf7-9abd-e6176ed2cc69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b642f4a5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1546236475], ["username", "billy_49"], ["access_token", "8f1f31c9930ac7c41663f5368cdad6ca"], ["uuid", "51b25658-4440-4bf7-9abd-e6176ed2cc69"], ["support_identifier", "cs_b642f4a5"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:44.047661"], ["updated_at", "2018-10-16 17:21:44.047661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -361194043 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8a56f76f-4ced-44ac-a4f9-521d02cf33d0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1eaac277' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -361194043], ["username", "jstrav"], ["access_token", "e8f6a6e38384a27c59f7aafa75a11b74"], ["uuid", "8a56f76f-4ced-44ac-a4f9-521d02cf33d0"], ["support_identifier", "cs_1eaac277"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:44.060041"], ["updated_at", "2018-10-16 17:21:44.060041"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -879563132 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8e0ee0c7-0549-414e-83b7-9b92bb930de3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06398c9d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -879563132], ["username", "mary"], ["access_token", "64564b5bce8180ef13ee30e98da4c96a"], ["uuid", "8e0ee0c7-0549-414e-83b7-9b92bb930de3"], ["support_identifier", "cs_06398c9d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:44.064786"], ["updated_at", "2018-10-16 17:21:44.064786"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2074358291 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a11b500-9aa5-43d0-8338-62d386800438' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_02e181a8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2074358291], ["username", "jstead"], ["access_token", "06607774cb6a858f5d6aadcd271ef545"], ["uuid", "4a11b500-9aa5-43d0-8338-62d386800438"], ["support_identifier", "cs_02e181a8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:44.069609"], ["updated_at", "2018-10-16 17:21:44.069609"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1281071069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4e470220-dcad-4f2a-9bc3-86830c10fc6b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b1986bf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1281071069], ["username", "bigbear"], ["access_token", "ee285e2169a21b001604807c3a5e63e7"], ["uuid", "4e470220-dcad-4f2a-9bc3-86830c10fc6b"], ["support_identifier", "cs_8b1986bf"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:44.074237"], ["updated_at", "2018-10-16 17:21:44.074237"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -52074644 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a631f5ec-6aa0-4a59-af6a-44c413aa9737' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c17d827e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -52074644], ["username", "billy_00"], ["access_token", "a7a3196b167b683308e27556e557d30d"], ["uuid", "a631f5ec-6aa0-4a59-af6a-44c413aa9737"], ["support_identifier", "cs_c17d827e"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:21:44.078741"], ["updated_at", "2018-10-16 17:21:44.078741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -80156933 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd494f035-7c02-47b6-bc73-96f73e821b6c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_91d430ce' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -80156933], ["username", "billy_01"], ["access_token", "83c77beba710f5bca2537bd850e2ead1"], ["uuid", "d494f035-7c02-47b6-bc73-96f73e821b6c"], ["support_identifier", "cs_91d430ce"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:21:44.083531"], ["updated_at", "2018-10-16 17:21:44.083531"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1972814473 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b169a56a-7f68-4f62-95b4-d5abaa1d37f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_89a754c4' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1972814473], ["username", "billy_02"], ["access_token", "4a5f5afa96f4a9cdf8ef7378eee35d9a"], ["uuid", "b169a56a-7f68-4f62-95b4-d5abaa1d37f0"], ["support_identifier", "cs_89a754c4"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:21:44.088567"], ["updated_at", "2018-10-16 17:21:44.088567"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1885947124 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5e03629-c056-4186-a334-26347298dfde' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a994d18' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1885947124], ["username", "billy_03"], ["access_token", "ddfc5105990a2e63342779dd89a40ec2"], ["uuid", "b5e03629-c056-4186-a334-26347298dfde"], ["support_identifier", "cs_6a994d18"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:21:44.093786"], ["updated_at", "2018-10-16 17:21:44.093786"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1078385386 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '90504cba-b9d8-45ef-8aae-888c75a7f191' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_70eeab75' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1078385386], ["username", "billy_04"], ["access_token", "4abaac3a16d890b7f81ffc8fd0f04174"], ["uuid", "90504cba-b9d8-45ef-8aae-888c75a7f191"], ["support_identifier", "cs_70eeab75"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:44.098575"], ["updated_at", "2018-10-16 17:21:44.098575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -437649739 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1bba3601-2dcb-454f-a855-c8d1af606013' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6a43b93' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -437649739], ["username", "billy_05"], ["access_token", "8fef5446caf54f23a5d3b32d00eba88c"], ["uuid", "1bba3601-2dcb-454f-a855-c8d1af606013"], ["support_identifier", "cs_e6a43b93"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:44.103581"], ["updated_at", "2018-10-16 17:21:44.103581"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -946006561 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8e8ac3ae-dcb9-4252-a530-d80181935209' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dd018f56' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -946006561], ["username", "billy_06"], ["access_token", "26d311c250ae0347e5daad070aaebc55"], ["uuid", "8e8ac3ae-dcb9-4252-a530-d80181935209"], ["support_identifier", "cs_dd018f56"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:44.108553"], ["updated_at", "2018-10-16 17:21:44.108553"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1520069785 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8953077-48d0-46e0-bd2b-7003058a4275' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e5310f82' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1520069785], ["username", "billy_07"], ["access_token", "a5db86af52adb2981af9ebf6e961f539"], ["uuid", "f8953077-48d0-46e0-bd2b-7003058a4275"], ["support_identifier", "cs_e5310f82"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:44.113626"], ["updated_at", "2018-10-16 17:21:44.113626"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -863401227 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a11c94ba-4034-40c8-9d0e-75aaf2c1f76b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cb03a07' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -863401227], ["username", "billy_08"], ["access_token", "62fdc952230c76ec645c448b8da5e2b2"], ["uuid", "a11c94ba-4034-40c8-9d0e-75aaf2c1f76b"], ["support_identifier", "cs_3cb03a07"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:44.119671"], ["updated_at", "2018-10-16 17:21:44.119671"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1212923701 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dbe5c0e4-08d1-477d-ba2a-f395f6311375' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d43c74ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1212923701], ["username", "billy_09"], ["access_token", "0c9b24feab200f464e6d3977ca9005b8"], ["uuid", "dbe5c0e4-08d1-477d-ba2a-f395f6311375"], ["support_identifier", "cs_d43c74ee"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:44.123975"], ["updated_at", "2018-10-16 17:21:44.123975"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1026725836 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fab8aa04-0a8c-44e3-8058-657b2df72a75' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dae867e5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1026725836], ["username", "billy_10"], ["access_token", "5e5c7ca9e35f9ee90d3908cffc7437b4"], ["uuid", "fab8aa04-0a8c-44e3-8058-657b2df72a75"], ["support_identifier", "cs_dae867e5"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:44.128088"], ["updated_at", "2018-10-16 17:21:44.128088"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1953889876 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e93226e4-e172-4a98-9fcf-11248f7ebe8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2bc77afe' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1953889876], ["username", "billy_11"], ["access_token", "781f287a4356d2484fc1c288e65dfaec"], ["uuid", "e93226e4-e172-4a98-9fcf-11248f7ebe8f"], ["support_identifier", "cs_2bc77afe"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:44.132593"], ["updated_at", "2018-10-16 17:21:44.132593"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1300956268 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '471ae72f-a68c-43ec-9ae7-ae9ae0d88bfa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aee854fc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1300956268], ["username", "billy_12"], ["access_token", "b368a8dd569f321e6468706dd5e31a10"], ["uuid", "471ae72f-a68c-43ec-9ae7-ae9ae0d88bfa"], ["support_identifier", "cs_aee854fc"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:44.136692"], ["updated_at", "2018-10-16 17:21:44.136692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083471892 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ed9519f-2293-4789-8c0d-6ec1c7ec3918' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_03bea44f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1083471892], ["username", "billy_13"], ["access_token", "508acd8840bc88c4468865b53c3f3c31"], ["uuid", "8ed9519f-2293-4789-8c0d-6ec1c7ec3918"], ["support_identifier", "cs_03bea44f"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:44.140671"], ["updated_at", "2018-10-16 17:21:44.140671"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -596268986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3749760a-2658-419c-81fe-53fd33e45963' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d63741f2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -596268986], ["username", "billy_14"], ["access_token", "dc43df1ff0f28c1db3d413073a14de87"], ["uuid", "3749760a-2658-419c-81fe-53fd33e45963"], ["support_identifier", "cs_d63741f2"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:44.144852"], ["updated_at", "2018-10-16 17:21:44.144852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -778676290 LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bfda8466-1bb3-4d98-bd5c-4741441c7199' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea87836b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -778676290], ["username", "billy_15"], ["access_token", "1c55297014b5beeff6c1292f79558971"], ["uuid", "bfda8466-1bb3-4d98-bd5c-4741441c7199"], ["support_identifier", "cs_ea87836b"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:44.152836"], ["updated_at", "2018-10-16 17:21:44.152836"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1834111330 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3336ac48-be79-4287-803e-a10e1b4b0adb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_10243029' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1834111330], ["username", "billy_16"], ["access_token", "67a01a34ff03873234feb569cbe21281"], ["uuid", "3336ac48-be79-4287-803e-a10e1b4b0adb"], ["support_identifier", "cs_10243029"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:44.157259"], ["updated_at", "2018-10-16 17:21:44.157259"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1078256953 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2a8e370f-0253-42a1-80c2-de147aab283c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d8eca77' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1078256953], ["username", "billy_17"], ["access_token", "26fde51a93da5aa5b4d58d97f06c9874"], ["uuid", "2a8e370f-0253-42a1-80c2-de147aab283c"], ["support_identifier", "cs_1d8eca77"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:44.161496"], ["updated_at", "2018-10-16 17:21:44.161496"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -207245751 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '493a2e97-963c-4b31-8bc4-57f7a4a81cf8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78dc33fa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -207245751], ["username", "billy_18"], ["access_token", "8bc1154af0a4550827e5ba38bbd6e31b"], ["uuid", "493a2e97-963c-4b31-8bc4-57f7a4a81cf8"], ["support_identifier", "cs_78dc33fa"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:44.166086"], ["updated_at", "2018-10-16 17:21:44.166086"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1682351904 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a1f21f6-df05-446e-87b0-9dbfad1b97b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_19a4fc55' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1682351904], ["username", "billy_19"], ["access_token", "34ffd816d94a44b5e9043d85088088b0"], ["uuid", "3a1f21f6-df05-446e-87b0-9dbfad1b97b2"], ["support_identifier", "cs_19a4fc55"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:44.170357"], ["updated_at", "2018-10-16 17:21:44.170357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -745327772 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aa940b7e-9fa3-4441-9dbd-433b62b6927a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e2904261' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -745327772], ["username", "billy_20"], ["access_token", "fa11efec0987a378c0168df18d519c50"], ["uuid", "aa940b7e-9fa3-4441-9dbd-433b62b6927a"], ["support_identifier", "cs_e2904261"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:44.174575"], ["updated_at", "2018-10-16 17:21:44.174575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -265290970 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '752d9d28-ea66-49c9-a95e-e2f8fda3cd92' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c45268cf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -265290970], ["username", "billy_21"], ["access_token", "542175c6e8f950690e198e305f8b329d"], ["uuid", "752d9d28-ea66-49c9-a95e-e2f8fda3cd92"], ["support_identifier", "cs_c45268cf"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:44.178668"], ["updated_at", "2018-10-16 17:21:44.178668"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -215679937 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7261290f-1043-459e-979d-07912327c1aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa553afc' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -215679937], ["username", "billy_22"], ["access_token", "7baea3c3f0f0384d3fb387408a77e0e0"], ["uuid", "7261290f-1043-459e-979d-07912327c1aa"], ["support_identifier", "cs_fa553afc"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:44.183120"], ["updated_at", "2018-10-16 17:21:44.183120"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -597803171 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef8579ea-f9df-4f24-aadb-9d891bcc32c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a522b2a5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -597803171], ["username", "billy_23"], ["access_token", "b12fb484f1f8dfe0c2dc9c8d54decef5"], ["uuid", "ef8579ea-f9df-4f24-aadb-9d891bcc32c0"], ["support_identifier", "cs_a522b2a5"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:44.187309"], ["updated_at", "2018-10-16 17:21:44.187309"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1678939642 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8fffb852-d1d8-4a70-8c0b-190430ac1a79' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f3e33cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1678939642], ["username", "billy_24"], ["access_token", "539530831e5feea108cbad16d8c51b4b"], ["uuid", "8fffb852-d1d8-4a70-8c0b-190430ac1a79"], ["support_identifier", "cs_9f3e33cf"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:44.191347"], ["updated_at", "2018-10-16 17:21:44.191347"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -902884243 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24c04469-3688-473b-81e7-b650becfc042' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b7ddb65' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -902884243], ["username", "billy_25"], ["access_token", "871853bfc11947201de236b9391d0736"], ["uuid", "24c04469-3688-473b-81e7-b650becfc042"], ["support_identifier", "cs_9b7ddb65"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:44.195535"], ["updated_at", "2018-10-16 17:21:44.195535"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659216042 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2dc35029-392e-4b6a-9996-77b2d11f929e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3a26605' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1659216042], ["username", "billy_26"], ["access_token", "5444dcd8767d25ed3676d6c528e85c28"], ["uuid", "2dc35029-392e-4b6a-9996-77b2d11f929e"], ["support_identifier", "cs_e3a26605"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:44.201762"], ["updated_at", "2018-10-16 17:21:44.201762"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1237269896 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '66ce0054-1c56-4c6b-b024-2a2e6331a317' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d2e3e94' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1237269896], ["username", "billy_27"], ["access_token", "54a0ea68436aecef8de39aaa1ab4ce7c"], ["uuid", "66ce0054-1c56-4c6b-b024-2a2e6331a317"], ["support_identifier", "cs_1d2e3e94"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:44.206250"], ["updated_at", "2018-10-16 17:21:44.206250"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -457592741 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1aedae0b-040c-4394-b660-3bcd6d2d72de' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_14f9cf96' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -457592741], ["username", "billy_28"], ["access_token", "f27164999c9a878258fe3c8d23364f27"], ["uuid", "1aedae0b-040c-4394-b660-3bcd6d2d72de"], ["support_identifier", "cs_14f9cf96"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:44.210387"], ["updated_at", "2018-10-16 17:21:44.210387"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2030088123 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74c148a2-0763-474d-8830-c7321d75a90f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85d119a2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2030088123], ["username", "billy_29"], ["access_token", "74768fd03cfd64c6805e2847a7a2d312"], ["uuid", "74c148a2-0763-474d-8830-c7321d75a90f"], ["support_identifier", "cs_85d119a2"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:44.214997"], ["updated_at", "2018-10-16 17:21:44.214997"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474902609 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6a41bf0-4634-4074-9573-f436783526c1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0db46e60' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -474902609], ["username", "billy_30"], ["access_token", "8a9e0501b8400f16324c3c5a7f0b0c2f"], ["uuid", "b6a41bf0-4634-4074-9573-f436783526c1"], ["support_identifier", "cs_0db46e60"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:44.219526"], ["updated_at", "2018-10-16 17:21:44.219526"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1303498490 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '43cfbafb-ee1a-4356-86c3-e37aecb9a5b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38a222b0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1303498490], ["username", "billy_31"], ["access_token", "8287a7e1788b409bf8a76be24f84a256"], ["uuid", "43cfbafb-ee1a-4356-86c3-e37aecb9a5b3"], ["support_identifier", "cs_38a222b0"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:44.223636"], ["updated_at", "2018-10-16 17:21:44.223636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1099055706 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b9d385e-db45-4138-a945-00beb24ced99' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22fbd785' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1099055706], ["username", "billy_32"], ["access_token", "ce8a9fb119ccf2dee476c8ecf34553d8"], ["uuid", "1b9d385e-db45-4138-a945-00beb24ced99"], ["support_identifier", "cs_22fbd785"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:44.227760"], ["updated_at", "2018-10-16 17:21:44.227760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -433953126 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (1.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '336a99e7-b1b8-48fb-9a8d-52cfc1c9565e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4eb60924' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -433953126], ["username", "billy_33"], ["access_token", "7336d167b17012986fc18f9a8fa6bfe6"], ["uuid", "336a99e7-b1b8-48fb-9a8d-52cfc1c9565e"], ["support_identifier", "cs_4eb60924"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:44.235908"], ["updated_at", "2018-10-16 17:21:44.235908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1866062478 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16d97083-ec7d-4002-afd1-22fb1d5c844c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2ff9f25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1866062478], ["username", "billy_34"], ["access_token", "224d199be50f6c1a75909e2c64dd1d48"], ["uuid", "16d97083-ec7d-4002-afd1-22fb1d5c844c"], ["support_identifier", "cs_c2ff9f25"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:44.240759"], ["updated_at", "2018-10-16 17:21:44.240759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -336859721 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a9f4812-a38d-48d1-b8a9-ad1e46f5e7d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67e52064' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -336859721], ["username", "billy_35"], ["access_token", "bbf9019d26a6c773f9dbee32e024279c"], ["uuid", "4a9f4812-a38d-48d1-b8a9-ad1e46f5e7d6"], ["support_identifier", "cs_67e52064"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:44.244863"], ["updated_at", "2018-10-16 17:21:44.244863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -332179135 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '234d98c3-f730-4a6a-b599-63945e633e03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf976b9d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -332179135], ["username", "billy_36"], ["access_token", "d8dc25244ef3d3024fa26ff94d5671ed"], ["uuid", "234d98c3-f730-4a6a-b599-63945e633e03"], ["support_identifier", "cs_bf976b9d"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:44.249638"], ["updated_at", "2018-10-16 17:21:44.249638"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1672937856 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa4e2fae-d7c3-4a68-81e8-ae9fbdda71df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3eacd80' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1672937856], ["username", "billy_37"], ["access_token", "ae89cd22c6b71bc218c4860a5baa166b"], ["uuid", "fa4e2fae-d7c3-4a68-81e8-ae9fbdda71df"], ["support_identifier", "cs_b3eacd80"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:44.254052"], ["updated_at", "2018-10-16 17:21:44.254052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1999013995 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a1a0840-1441-4e24-996b-db7f7c1a0194' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7ea7f526' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1999013995], ["username", "billy_38"], ["access_token", "476f63ee8bb5065711e1dd7f8f459554"], ["uuid", "6a1a0840-1441-4e24-996b-db7f7c1a0194"], ["support_identifier", "cs_7ea7f526"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:44.260766"], ["updated_at", "2018-10-16 17:21:44.260766"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1304278387 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ebba444e-1eae-477e-bf90-037a1920e9e8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d4b8c717' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1304278387], ["username", "billy_39"], ["access_token", "63d74feb5a9fcf127d277d2a7648e12d"], ["uuid", "ebba444e-1eae-477e-bf90-037a1920e9e8"], ["support_identifier", "cs_d4b8c717"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:44.265298"], ["updated_at", "2018-10-16 17:21:44.265298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1254987212 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '572258eb-57a0-43c8-bc63-a540239fb145' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0719a800' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1254987212], ["username", "billy_40"], ["access_token", "244afc1e7b320beb226b56a4c3f9d645"], ["uuid", "572258eb-57a0-43c8-bc63-a540239fb145"], ["support_identifier", "cs_0719a800"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:44.269768"], ["updated_at", "2018-10-16 17:21:44.269768"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -17846767 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1ad814fd-58f8-4dde-b9c8-628c6c271a04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f5606b25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -17846767], ["username", "billy_41"], ["access_token", "7a1cf408e8b5b1d2f9e1e2b9d4a2743b"], ["uuid", "1ad814fd-58f8-4dde-b9c8-628c6c271a04"], ["support_identifier", "cs_f5606b25"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:44.273845"], ["updated_at", "2018-10-16 17:21:44.273845"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1181928837 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd316dff0-8ff0-4334-8ef2-bd4056e2f0b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_47ec41cb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1181928837], ["username", "billy_42"], ["access_token", "c195f7b4904ed39ff2b99bd7f64ffc4f"], ["uuid", "d316dff0-8ff0-4334-8ef2-bd4056e2f0b6"], ["support_identifier", "cs_47ec41cb"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:44.277872"], ["updated_at", "2018-10-16 17:21:44.277872"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1560046790 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09e109e6-7969-41b5-9019-8e17ac305ef9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9623730' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1560046790], ["username", "billy_43"], ["access_token", "129ea19c1150a01beaf44bdb661b54eb"], ["uuid", "09e109e6-7969-41b5-9019-8e17ac305ef9"], ["support_identifier", "cs_b9623730"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:44.285349"], ["updated_at", "2018-10-16 17:21:44.285349"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1286841660 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b8854d1-2250-4b7c-9ffb-018352c975da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7cf7ba20' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1286841660], ["username", "billy_44"], ["access_token", "433f5e83fae9fe63a31631fa21531183"], ["uuid", "4b8854d1-2250-4b7c-9ffb-018352c975da"], ["support_identifier", "cs_7cf7ba20"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:44.289987"], ["updated_at", "2018-10-16 17:21:44.289987"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -536480079 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f735be09-d701-487b-bbeb-b9d09d006bb2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a782104' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -536480079], ["username", "billy_45"], ["access_token", "d8fc566d0d38bc6ff338b2a1774e5116"], ["uuid", "f735be09-d701-487b-bbeb-b9d09d006bb2"], ["support_identifier", "cs_4a782104"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:44.293998"], ["updated_at", "2018-10-16 17:21:44.293998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1665873095 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '67db367d-fe9a-4989-bac4-8fd21586f6da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_be883407' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1665873095], ["username", "billy_46"], ["access_token", "dc29787c60c227de19c91a1f16cd1ce0"], ["uuid", "67db367d-fe9a-4989-bac4-8fd21586f6da"], ["support_identifier", "cs_be883407"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:44.298543"], ["updated_at", "2018-10-16 17:21:44.298543"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -973597727 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5ac5c49b-6b4e-48da-86af-f2fbcb2e6e17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e797d11f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -973597727], ["username", "billy_47"], ["access_token", "1dce91354596dccc5d30ff9fa97c02e2"], ["uuid", "5ac5c49b-6b4e-48da-86af-f2fbcb2e6e17"], ["support_identifier", "cs_e797d11f"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:44.302905"], ["updated_at", "2018-10-16 17:21:44.302905"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1369866729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '268ca9c6-c4d8-4ff2-af64-a52bbc1596cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_179df2ea' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1369866729], ["username", "billy_48"], ["access_token", "cf10c1e5d4b6492cb5247fb0b3c1c027"], ["uuid", "268ca9c6-c4d8-4ff2-af64-a52bbc1596cf"], ["support_identifier", "cs_179df2ea"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:44.306971"], ["updated_at", "2018-10-16 17:21:44.306971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1725922734 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a66e29a-9749-4a4c-acc4-81af687220d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b058ff78' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1725922734], ["username", "billy_49"], ["access_token", "9bc097faca6cc3e0e2e73d1e0dea0114"], ["uuid", "7a66e29a-9749-4a4c-acc4-81af687220d7"], ["support_identifier", "cs_b058ff78"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:44.311042"], ["updated_at", "2018-10-16 17:21:44.311042"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.8ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'billy%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.4ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -537317633 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'ea0f961dc9870441d731e4309ef23961' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26bc4b8c-a887-4754-8efe-23979f766d76' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_45de1fe6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -537317633], ["username", "ea0f961dc9870441d731e4309ef23961"], ["access_token", "fb71a8dcb0ba43e2282f73fd842c0163"], ["uuid", "26bc4b8c-a887-4754-8efe-23979f766d76"], ["support_identifier", "cs_45de1fe6"], ["is_test", "t"], ["created_at", "2018-10-16 17:21:44.322336"], ["updated_at", "2018-10-16 17:21:44.322336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 647 AND "openstax_accounts_group_owners"."group_id" = -1474379177) LIMIT 1 + OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", -1474379177]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 647 AND "openstax_accounts_group_owners"."group_id" = -1474379177) LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1474379177 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "is_public", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "Test"], ["is_public", "t"], ["openstax_uid", -1474379177], ["created_at", "2018-10-16 17:21:44.328272"], ["updated_at", "2018-10-16 17:21:44.328272"]] + OpenStax::Accounts::GroupOwner Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 647 AND "openstax_accounts_group_owners"."group_id" = -1474379177) LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -1474379177], ["user_id", -537317633], ["created_at", "2018-10-16 17:21:44.330148"], ["updated_at", "2018-10-16 17:21:44.330148"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["group_id", -1474379177]] + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 LIMIT 1 [["group_id", -1474379177]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1826035483 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aae9c77c-e452-464e-9667-41a54ca063f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6bacf4e8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1826035483], ["username", "jstrav"], ["access_token", "44b45723759d7891a034c4d39a63398d"], ["uuid", "aae9c77c-e452-464e-9667-41a54ca063f2"], ["support_identifier", "cs_6bacf4e8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:44.340535"], ["updated_at", "2018-10-16 17:21:44.340535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -449396083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9589bf8a-f208-4ce9-90f9-767835a43aff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9b37f71' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -449396083], ["username", "mary"], ["access_token", "180b82e79611a36503af611274094e9d"], ["uuid", "9589bf8a-f208-4ce9-90f9-767835a43aff"], ["support_identifier", "cs_b9b37f71"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:44.344769"], ["updated_at", "2018-10-16 17:21:44.344769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -230316444 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aec6e23f-4581-4ff7-b997-d07b57561946' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_76aa2bec' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -230316444], ["username", "jstead"], ["access_token", "b931fa3fcbd02f29f45106875518fbff"], ["uuid", "aec6e23f-4581-4ff7-b997-d07b57561946"], ["support_identifier", "cs_76aa2bec"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:44.349161"], ["updated_at", "2018-10-16 17:21:44.349161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -544879832 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd7ebf29-3f1e-42bd-baa9-94b8f5f1f19c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04a0a7a4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -544879832], ["username", "bigbear"], ["access_token", "101e744de99d3c62c2e7038cb42465e1"], ["uuid", "bd7ebf29-3f1e-42bd-baa9-94b8f5f1f19c"], ["support_identifier", "cs_04a0a7a4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:44.353446"], ["updated_at", "2018-10-16 17:21:44.353446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657347593 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ae94a65-41a9-4a24-8435-842b5d268dfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0466f35' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -657347593], ["username", "billy_00"], ["access_token", "9c3f4dd69339b14b72334a0e8f3d607d"], ["uuid", "4ae94a65-41a9-4a24-8435-842b5d268dfe"], ["support_identifier", "cs_e0466f35"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:21:44.357666"], ["updated_at", "2018-10-16 17:21:44.357666"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1144476182 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a8309cc-8b10-4b81-998f-edc3d3f2268a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d03f779' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1144476182], ["username", "billy_01"], ["access_token", "4383179d94c565cd542a336c6a8d5754"], ["uuid", "7a8309cc-8b10-4b81-998f-edc3d3f2268a"], ["support_identifier", "cs_0d03f779"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:21:44.361878"], ["updated_at", "2018-10-16 17:21:44.361878"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -754265559 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c08c9a6a-5ad5-42c0-bfda-e4b87336a94d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9d4fe036' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -754265559], ["username", "billy_02"], ["access_token", "4994f2b57d2f8dc70cfea31f21739ec1"], ["uuid", "c08c9a6a-5ad5-42c0-bfda-e4b87336a94d"], ["support_identifier", "cs_9d4fe036"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:21:44.369703"], ["updated_at", "2018-10-16 17:21:44.369703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1256647977 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea0e25a4-eeed-45be-a099-c17cf40bd513' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15d0c831' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1256647977], ["username", "billy_03"], ["access_token", "ed7e0bc12ba70e75d5dfbc2fb5033c08"], ["uuid", "ea0e25a4-eeed-45be-a099-c17cf40bd513"], ["support_identifier", "cs_15d0c831"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:21:44.374947"], ["updated_at", "2018-10-16 17:21:44.374947"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1077887505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '905041f9-a304-4c84-a48e-94f399853eac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9097de96' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1077887505], ["username", "billy_04"], ["access_token", "f90c46460aee291162a1977a5396a1b1"], ["uuid", "905041f9-a304-4c84-a48e-94f399853eac"], ["support_identifier", "cs_9097de96"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:44.379257"], ["updated_at", "2018-10-16 17:21:44.379257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -484921980 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4359d993-c35d-4953-9cfe-a62e2275cfc2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ae9c9905' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -484921980], ["username", "billy_05"], ["access_token", "3d70cb0535b4d85a7981fd65a3394c14"], ["uuid", "4359d993-c35d-4953-9cfe-a62e2275cfc2"], ["support_identifier", "cs_ae9c9905"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:44.383772"], ["updated_at", "2018-10-16 17:21:44.383772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2145742082 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5331c48a-3300-403a-b7e2-c21f22a82f89' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ca7e2b5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2145742082], ["username", "billy_06"], ["access_token", "4e3914cedb620420f126d974454241db"], ["uuid", "5331c48a-3300-403a-b7e2-c21f22a82f89"], ["support_identifier", "cs_3ca7e2b5"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:44.387840"], ["updated_at", "2018-10-16 17:21:44.387840"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1593336448 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '15a9fc6d-a17f-44b7-8060-112e19e23fa1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a9bda6dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1593336448], ["username", "billy_07"], ["access_token", "d1ce066bbb2ecabb8c5473197da09834"], ["uuid", "15a9fc6d-a17f-44b7-8060-112e19e23fa1"], ["support_identifier", "cs_a9bda6dc"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:44.391929"], ["updated_at", "2018-10-16 17:21:44.391929"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846860360 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '99697f5b-f1a5-48d2-a6af-1f68c11a2439' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_80a4b5cb' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -846860360], ["username", "billy_08"], ["access_token", "685b5af5e855638c2515d7732158b4c1"], ["uuid", "99697f5b-f1a5-48d2-a6af-1f68c11a2439"], ["support_identifier", "cs_80a4b5cb"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:44.396192"], ["updated_at", "2018-10-16 17:21:44.396192"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -830432688 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e8e0ca0e-75be-42ee-9f02-03061756b4a9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59b98b35' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -830432688], ["username", "billy_09"], ["access_token", "fa7628666d8067245250e0d927df7408"], ["uuid", "e8e0ca0e-75be-42ee-9f02-03061756b4a9"], ["support_identifier", "cs_59b98b35"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:44.400828"], ["updated_at", "2018-10-16 17:21:44.400828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1948652258 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '55386c91-01e6-46ff-b9ef-7c0502470aaf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_95e5849b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1948652258], ["username", "billy_10"], ["access_token", "36e2daa854082516b7409e553aa5853a"], ["uuid", "55386c91-01e6-46ff-b9ef-7c0502470aaf"], ["support_identifier", "cs_95e5849b"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:44.405048"], ["updated_at", "2018-10-16 17:21:44.405048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1523733827 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc59a208-f396-46d2-bdf8-873694847a8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a382f2cc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1523733827], ["username", "billy_11"], ["access_token", "3706f7b5568009782aabdbb21aa229ff"], ["uuid", "bc59a208-f396-46d2-bdf8-873694847a8f"], ["support_identifier", "cs_a382f2cc"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:44.409138"], ["updated_at", "2018-10-16 17:21:44.409138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1093192511 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '44be0a4d-685e-4d23-9bcc-296efaf50346' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b588ca07' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1093192511], ["username", "billy_12"], ["access_token", "12478213e8161cb04e31a3684164306e"], ["uuid", "44be0a4d-685e-4d23-9bcc-296efaf50346"], ["support_identifier", "cs_b588ca07"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:44.413532"], ["updated_at", "2018-10-16 17:21:44.413532"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1737846750 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '077a0e2a-60ec-45df-8a53-3b646dbfcdd2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1813435' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1737846750], ["username", "billy_13"], ["access_token", "92fcf265a3c82cd7115aab5fa45fa834"], ["uuid", "077a0e2a-60ec-45df-8a53-3b646dbfcdd2"], ["support_identifier", "cs_d1813435"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:44.421044"], ["updated_at", "2018-10-16 17:21:44.421044"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1485887433 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f1f727e-cee8-4d04-962d-60721c496775' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_458b545b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1485887433], ["username", "billy_14"], ["access_token", "0fe38459ceb672196a4de9338774aa2a"], ["uuid", "0f1f727e-cee8-4d04-962d-60721c496775"], ["support_identifier", "cs_458b545b"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:44.425538"], ["updated_at", "2018-10-16 17:21:44.425538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -985238093 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '245b035b-c858-415a-a9ec-6b1e664be0c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_19841e4c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -985238093], ["username", "billy_15"], ["access_token", "e6ffa909999ccc113bb260169b46da2f"], ["uuid", "245b035b-c858-415a-a9ec-6b1e664be0c7"], ["support_identifier", "cs_19841e4c"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:44.429820"], ["updated_at", "2018-10-16 17:21:44.429820"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -85789629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a62efe56-9af2-441a-b845-89e934637b1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5f3fd609' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -85789629], ["username", "billy_16"], ["access_token", "0825c23ce82cc455a4c5216b592cf0e2"], ["uuid", "a62efe56-9af2-441a-b845-89e934637b1d"], ["support_identifier", "cs_5f3fd609"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:44.434793"], ["updated_at", "2018-10-16 17:21:44.434793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -99616924 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '104dd58c-79e3-4a53-8dec-df17dad8b493' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7fea6d76' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -99616924], ["username", "billy_17"], ["access_token", "09d81164104473c07b7640bc250fc7ec"], ["uuid", "104dd58c-79e3-4a53-8dec-df17dad8b493"], ["support_identifier", "cs_7fea6d76"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:44.439162"], ["updated_at", "2018-10-16 17:21:44.439162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -485436670 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a7f9fae-6ecc-4d87-a20e-48b53ca07200' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d11016ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -485436670], ["username", "billy_18"], ["access_token", "0e517229d7bec74bf8709542ded53eb3"], ["uuid", "1a7f9fae-6ecc-4d87-a20e-48b53ca07200"], ["support_identifier", "cs_d11016ee"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:44.443307"], ["updated_at", "2018-10-16 17:21:44.443307"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2004070093 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a6359e2-5370-4189-9065-393e0a256320' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f57f82d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2004070093], ["username", "billy_19"], ["access_token", "3297e32329baa867f14a9998f64793c8"], ["uuid", "1a6359e2-5370-4189-9065-393e0a256320"], ["support_identifier", "cs_9f57f82d"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:44.447735"], ["updated_at", "2018-10-16 17:21:44.447735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -353460983 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9e765cc-f5e1-4f2c-95bd-91e00d320c43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a4e7d438' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -353460983], ["username", "billy_20"], ["access_token", "6e332873b5bf0dc141ac883ea3e89293"], ["uuid", "e9e765cc-f5e1-4f2c-95bd-91e00d320c43"], ["support_identifier", "cs_a4e7d438"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:44.455398"], ["updated_at", "2018-10-16 17:21:44.455398"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2143476054 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '45f70c0e-a305-4413-b157-0d7d8726a6c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44fa61be' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2143476054], ["username", "billy_21"], ["access_token", "000d6b242872b3b8eb8d93b0b71fbc0c"], ["uuid", "45f70c0e-a305-4413-b157-0d7d8726a6c6"], ["support_identifier", "cs_44fa61be"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:44.459555"], ["updated_at", "2018-10-16 17:21:44.459555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1294770181 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '88494544-edda-4e80-b54a-c8d1bb1f5513' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d141ec98' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1294770181], ["username", "billy_22"], ["access_token", "823d0f39e3f45124405788ab09db0228"], ["uuid", "88494544-edda-4e80-b54a-c8d1bb1f5513"], ["support_identifier", "cs_d141ec98"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:44.464026"], ["updated_at", "2018-10-16 17:21:44.464026"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -75895491 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '51276b32-7397-42c2-9509-92a04b4bfa53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_021521f7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -75895491], ["username", "billy_23"], ["access_token", "732d0bdbf32652e09ed913eafbaeb6df"], ["uuid", "51276b32-7397-42c2-9509-92a04b4bfa53"], ["support_identifier", "cs_021521f7"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:44.471171"], ["updated_at", "2018-10-16 17:21:44.471171"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -761363549 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b457d36-6704-4af6-9c07-bd3b70218b49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_118674ff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -761363549], ["username", "billy_24"], ["access_token", "93862d4d44946621f3fddaeebe210cb2"], ["uuid", "5b457d36-6704-4af6-9c07-bd3b70218b49"], ["support_identifier", "cs_118674ff"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:44.475420"], ["updated_at", "2018-10-16 17:21:44.475420"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1313040165 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1ef1ea66-d69c-497f-9db7-e90a2adfcc8e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_40fb6f71' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1313040165], ["username", "billy_25"], ["access_token", "611950b8da995dedd18f2400910de6bf"], ["uuid", "1ef1ea66-d69c-497f-9db7-e90a2adfcc8e"], ["support_identifier", "cs_40fb6f71"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:44.479601"], ["updated_at", "2018-10-16 17:21:44.479601"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1883458492 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '629a22b4-e591-4ad9-a36d-00acaa3f61bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4711a0a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1883458492], ["username", "billy_26"], ["access_token", "13abead5225bd958cd7d9bc981634843"], ["uuid", "629a22b4-e591-4ad9-a36d-00acaa3f61bb"], ["support_identifier", "cs_4711a0a6"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:44.484569"], ["updated_at", "2018-10-16 17:21:44.484569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1491210429 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef7aa7a9-626b-450e-9bf6-7bcce0826c34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8dff0e23' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1491210429], ["username", "billy_27"], ["access_token", "dadda73187fbac2dd3cc0f594e647a20"], ["uuid", "ef7aa7a9-626b-450e-9bf6-7bcce0826c34"], ["support_identifier", "cs_8dff0e23"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:44.488805"], ["updated_at", "2018-10-16 17:21:44.488805"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1982238607 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3689311f-c312-4734-bc9e-aa8b19807fb5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce23125d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1982238607], ["username", "billy_28"], ["access_token", "c8b1fe48a81c328921cf13ec172f1748"], ["uuid", "3689311f-c312-4734-bc9e-aa8b19807fb5"], ["support_identifier", "cs_ce23125d"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:44.492803"], ["updated_at", "2018-10-16 17:21:44.492803"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -480552508 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '642a7d41-29e5-4811-9a1b-a5255c3fd909' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c07190aa' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -480552508], ["username", "billy_29"], ["access_token", "8ff5441c40519802469c35257b119c30"], ["uuid", "642a7d41-29e5-4811-9a1b-a5255c3fd909"], ["support_identifier", "cs_c07190aa"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:44.496942"], ["updated_at", "2018-10-16 17:21:44.496942"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.5ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -836956861 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '78b2f4a9-ee0b-47ab-b5a8-bced0766760b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_046dfffe' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -836956861], ["username", "billy_30"], ["access_token", "87b85042fb603596f329282fc7b7ae91"], ["uuid", "78b2f4a9-ee0b-47ab-b5a8-bced0766760b"], ["support_identifier", "cs_046dfffe"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:44.504257"], ["updated_at", "2018-10-16 17:21:44.504257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1079528721 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0a4d775-c615-4f34-aa1f-a6c1c5ebdcc3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44e490ae' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1079528721], ["username", "billy_31"], ["access_token", "658511870626d6f56b8f3d47ba5107ec"], ["uuid", "c0a4d775-c615-4f34-aa1f-a6c1c5ebdcc3"], ["support_identifier", "cs_44e490ae"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:44.508632"], ["updated_at", "2018-10-16 17:21:44.508632"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1588481834 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '01973751-a6d9-45b1-b56d-3cc1123e81bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_367c1af7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1588481834], ["username", "billy_32"], ["access_token", "7517ce8d292edceaa7a0d38e75083371"], ["uuid", "01973751-a6d9-45b1-b56d-3cc1123e81bf"], ["support_identifier", "cs_367c1af7"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:44.512940"], ["updated_at", "2018-10-16 17:21:44.512940"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -965158895 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '84fa8fb9-0988-41fa-8f13-62897320ef52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71d91dc2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -965158895], ["username", "billy_33"], ["access_token", "b7d5a7e39d654c9a63e483899fb1c2af"], ["uuid", "84fa8fb9-0988-41fa-8f13-62897320ef52"], ["support_identifier", "cs_71d91dc2"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:44.517765"], ["updated_at", "2018-10-16 17:21:44.517765"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1532946915 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08e6cdee-dc4d-410c-906b-a6e33b64bde6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_69eb1d98' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1532946915], ["username", "billy_34"], ["access_token", "41cf94ece9f8b36b7c128de4d5058828"], ["uuid", "08e6cdee-dc4d-410c-906b-a6e33b64bde6"], ["support_identifier", "cs_69eb1d98"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:44.521877"], ["updated_at", "2018-10-16 17:21:44.521877"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -848158730 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f19a2b6-281f-4ee6-943a-184c496bc398' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c50afdea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -848158730], ["username", "billy_35"], ["access_token", "f80a5329fc59b021e08d4fccfd483fae"], ["uuid", "0f19a2b6-281f-4ee6-943a-184c496bc398"], ["support_identifier", "cs_c50afdea"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:44.525930"], ["updated_at", "2018-10-16 17:21:44.525930"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2123311961 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8fd33a12-dbee-469e-bb20-3559c29ee709' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_90b1fd4d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2123311961], ["username", "billy_36"], ["access_token", "9274d55341f97fbe1e9d81222b130d4b"], ["uuid", "8fd33a12-dbee-469e-bb20-3559c29ee709"], ["support_identifier", "cs_90b1fd4d"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:44.530460"], ["updated_at", "2018-10-16 17:21:44.530460"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -569893705 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '35b2a38f-d54a-48e7-8123-53ec87d47487' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0bbad22' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -569893705], ["username", "billy_37"], ["access_token", "51880f5da9f0ca83e6d34978f40234cf"], ["uuid", "35b2a38f-d54a-48e7-8123-53ec87d47487"], ["support_identifier", "cs_a0bbad22"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:44.534864"], ["updated_at", "2018-10-16 17:21:44.534864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1449691476 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd13f7b7e-6596-4649-a288-7398192c76c3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4fef40bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1449691476], ["username", "billy_38"], ["access_token", "faac2a094388412fb55e98527c8ecfa7"], ["uuid", "d13f7b7e-6596-4649-a288-7398192c76c3"], ["support_identifier", "cs_4fef40bd"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:44.539045"], ["updated_at", "2018-10-16 17:21:44.539045"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -70034087 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '661811ea-5cf8-436e-953c-992df8acd620' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5f9ad38f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -70034087], ["username", "billy_39"], ["access_token", "a8e59f9296d61465ff6891c1a057a9e7"], ["uuid", "661811ea-5cf8-436e-953c-992df8acd620"], ["support_identifier", "cs_5f9ad38f"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:44.543009"], ["updated_at", "2018-10-16 17:21:44.543009"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1843138210 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '893278e9-c294-4de7-8396-8bf5e24a753f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d900840' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1843138210], ["username", "billy_40"], ["access_token", "422ebbaa35f6f40f5906ef9751973510"], ["uuid", "893278e9-c294-4de7-8396-8bf5e24a753f"], ["support_identifier", "cs_5d900840"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:44.547161"], ["updated_at", "2018-10-16 17:21:44.547161"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -487445223 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60993218-451c-479f-b989-deadcadaf900' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e21a86c7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -487445223], ["username", "billy_41"], ["access_token", "82a2d1cdf1f217ed6115659cfded5b55"], ["uuid", "60993218-451c-479f-b989-deadcadaf900"], ["support_identifier", "cs_e21a86c7"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:44.553255"], ["updated_at", "2018-10-16 17:21:44.553255"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -507889391 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '496774a7-4f4f-45f6-b4fd-2b83f03e25a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f26dfc57' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -507889391], ["username", "billy_42"], ["access_token", "8a696a230ac179bcdbcbb6cfd204ae87"], ["uuid", "496774a7-4f4f-45f6-b4fd-2b83f03e25a4"], ["support_identifier", "cs_f26dfc57"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:44.557322"], ["updated_at", "2018-10-16 17:21:44.557322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1983133446 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac8dd878-53e9-4b55-8c9f-0497d5e6b94c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a7a7ead' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1983133446], ["username", "billy_43"], ["access_token", "dca0734e1ed16b8822cbfcd40b4bc0a9"], ["uuid", "ac8dd878-53e9-4b55-8c9f-0497d5e6b94c"], ["support_identifier", "cs_6a7a7ead"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:44.561427"], ["updated_at", "2018-10-16 17:21:44.561427"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -236608368 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '28519fad-439a-4e6b-96ae-49d017152741' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7ad2bc27' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -236608368], ["username", "billy_44"], ["access_token", "afe2f964d6890491db5155f48ace0f11"], ["uuid", "28519fad-439a-4e6b-96ae-49d017152741"], ["support_identifier", "cs_7ad2bc27"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:44.566029"], ["updated_at", "2018-10-16 17:21:44.566029"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -131927795 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '10e395d3-172a-476e-8cb6-dd5ad4b8d743' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a1e4d8b0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -131927795], ["username", "billy_45"], ["access_token", "3e7f823e64f2f3b7016e75d98884ba01"], ["uuid", "10e395d3-172a-476e-8cb6-dd5ad4b8d743"], ["support_identifier", "cs_a1e4d8b0"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:44.570321"], ["updated_at", "2018-10-16 17:21:44.570321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1452793288 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b035fba1-8c42-4b2a-bd4a-0bd985cf22c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_accd2acc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1452793288], ["username", "billy_46"], ["access_token", "04c28bbf42723398dfbf565146811915"], ["uuid", "b035fba1-8c42-4b2a-bd4a-0bd985cf22c0"], ["support_identifier", "cs_accd2acc"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:44.574348"], ["updated_at", "2018-10-16 17:21:44.574348"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -955347095 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f104a3ae-ac93-4ad5-9c6e-fb80f78107e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_74b5a34f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -955347095], ["username", "billy_47"], ["access_token", "b2ebe0c6360f7c27d3d6ae1d685e67e4"], ["uuid", "f104a3ae-ac93-4ad5-9c6e-fb80f78107e9"], ["support_identifier", "cs_74b5a34f"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:44.578399"], ["updated_at", "2018-10-16 17:21:44.578399"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2126878255 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '56307dbf-bf90-42fe-bba1-0033400a7de8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d425dea' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2126878255], ["username", "billy_48"], ["access_token", "b43229f7739f88c12878d70aba7bb7d1"], ["uuid", "56307dbf-bf90-42fe-bba1-0033400a7de8"], ["support_identifier", "cs_7d425dea"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:44.586036"], ["updated_at", "2018-10-16 17:21:44.586036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -530817956 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '157afc6f-58ca-45ab-8841-7ec94c8f48a0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98debf07' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -530817956], ["username", "billy_49"], ["access_token", "cc265d71f1383ab02dedfd366a1100ec"], ["uuid", "157afc6f-58ca-45ab-8841-7ec94c8f48a0"], ["support_identifier", "cs_98debf07"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:44.590631"], ["updated_at", "2018-10-16 17:21:44.590631"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1861329441 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '390cb2b3-016c-4a26-9cd3-16561b89d9fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9076c442' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1861329441], ["username", "jstrav"], ["access_token", "e071f541062431d75a29a18a1e48b361"], ["uuid", "390cb2b3-016c-4a26-9cd3-16561b89d9fe"], ["support_identifier", "cs_9076c442"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:21:44.599489"], ["updated_at", "2018-10-16 17:21:44.599489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -129854058 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '146de41f-50eb-4457-a5bc-1740e036d8c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c3e840d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -129854058], ["username", "mary"], ["access_token", "ed79a02f292a822654da80634418ad34"], ["uuid", "146de41f-50eb-4457-a5bc-1740e036d8c8"], ["support_identifier", "cs_6c3e840d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:21:44.604226"], ["updated_at", "2018-10-16 17:21:44.604226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1576109171 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9647bdb-7ff4-4808-a90d-bff755783649' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed8c91d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1576109171], ["username", "jstead"], ["access_token", "6f4150a154025a04b88ad3aef07ad720"], ["uuid", "b9647bdb-7ff4-4808-a90d-bff755783649"], ["support_identifier", "cs_ed8c91d1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:21:44.608520"], ["updated_at", "2018-10-16 17:21:44.608520"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -90348846 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc0ad9ba-8659-4640-97d5-29cc03266fff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12bbb675' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -90348846], ["username", "bigbear"], ["access_token", "eb6f3d55b5c71ca11bb2e10d83814f09"], ["uuid", "fc0ad9ba-8659-4640-97d5-29cc03266fff"], ["support_identifier", "cs_12bbb675"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:21:44.612641"], ["updated_at", "2018-10-16 17:21:44.612641"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -691597767 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be93faad-47b9-4325-b78d-7c8dcb4f23d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d9f4668' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -691597767], ["username", "billy_00"], ["access_token", "ed96e7a8afe3b496d572845a8aa26ac4"], ["uuid", "be93faad-47b9-4325-b78d-7c8dcb4f23d8"], ["support_identifier", "cs_6d9f4668"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:21:44.619887"], ["updated_at", "2018-10-16 17:21:44.619887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1280945268 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c39d9cae-0fc9-4af5-b8cb-cb831b6b882b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_121e71b5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1280945268], ["username", "billy_01"], ["access_token", "fc4c913b9ee1cdbc270cd05efec2da3f"], ["uuid", "c39d9cae-0fc9-4af5-b8cb-cb831b6b882b"], ["support_identifier", "cs_121e71b5"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:21:44.624375"], ["updated_at", "2018-10-16 17:21:44.624375"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1705900875 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b79180d-a7fa-425d-815d-da54e644955a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc27d92a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1705900875], ["username", "billy_02"], ["access_token", "f3c2209bee648063be0442ee06175d4e"], ["uuid", "4b79180d-a7fa-425d-815d-da54e644955a"], ["support_identifier", "cs_dc27d92a"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:21:44.628512"], ["updated_at", "2018-10-16 17:21:44.628512"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1029702808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c55188fc-0c49-4b28-a777-f5b1775c4146' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9d0e7dc' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1029702808], ["username", "billy_03"], ["access_token", "41f3397b2876e311c11d07de1fcf3e1a"], ["uuid", "c55188fc-0c49-4b28-a777-f5b1775c4146"], ["support_identifier", "cs_c9d0e7dc"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:21:44.633679"], ["updated_at", "2018-10-16 17:21:44.633679"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1176536326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e34ca110-b918-4cc3-9a97-03f1dfbdcb32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26a06589' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1176536326], ["username", "billy_04"], ["access_token", "8146d45c280f510dae66fdef07854993"], ["uuid", "e34ca110-b918-4cc3-9a97-03f1dfbdcb32"], ["support_identifier", "cs_26a06589"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:21:44.638331"], ["updated_at", "2018-10-16 17:21:44.638331"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1606410696 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f12c5431-ba32-4726-82a2-5c033e031899' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6749e1a3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1606410696], ["username", "billy_05"], ["access_token", "d0ab65cff3744131850e9b5ef3fa0c2f"], ["uuid", "f12c5431-ba32-4726-82a2-5c033e031899"], ["support_identifier", "cs_6749e1a3"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:21:44.646075"], ["updated_at", "2018-10-16 17:21:44.646075"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -170791699 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13e30487-f38e-4bff-a1d0-3e81e5e80a13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b8b4154f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -170791699], ["username", "billy_06"], ["access_token", "82b86669b4d0f919934d24a1cbf57ec4"], ["uuid", "13e30487-f38e-4bff-a1d0-3e81e5e80a13"], ["support_identifier", "cs_b8b4154f"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:21:44.651021"], ["updated_at", "2018-10-16 17:21:44.651021"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -505109489 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '781cb6d8-93eb-490e-98d7-3f9bffaa02d2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4c7e7b4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -505109489], ["username", "billy_07"], ["access_token", "be073ed3b64f48d4449e6a5bd9b3a21f"], ["uuid", "781cb6d8-93eb-490e-98d7-3f9bffaa02d2"], ["support_identifier", "cs_e4c7e7b4"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:21:44.655197"], ["updated_at", "2018-10-16 17:21:44.655197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1984158246 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c3c8b93-40de-4ac2-9762-6526dd94a3ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1fc44599' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1984158246], ["username", "billy_08"], ["access_token", "dabd89c674fa5d614f3fbbb97d6eac35"], ["uuid", "4c3c8b93-40de-4ac2-9762-6526dd94a3ee"], ["support_identifier", "cs_1fc44599"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:21:44.659229"], ["updated_at", "2018-10-16 17:21:44.659229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -425574138 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '251e9694-4894-466c-8f4a-116d888b492a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0aeecf8c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -425574138], ["username", "billy_09"], ["access_token", "db8ed872145429a4aad4e2af5d59611d"], ["uuid", "251e9694-4894-466c-8f4a-116d888b492a"], ["support_identifier", "cs_0aeecf8c"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:21:44.663503"], ["updated_at", "2018-10-16 17:21:44.663503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1811816699 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'beab0d06-0cde-4435-a873-833414604ce8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9ef399a7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1811816699], ["username", "billy_10"], ["access_token", "f32af219f7c8c7deead9dd8117c926fe"], ["uuid", "beab0d06-0cde-4435-a873-833414604ce8"], ["support_identifier", "cs_9ef399a7"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:21:44.671226"], ["updated_at", "2018-10-16 17:21:44.671226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2076589473 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b1419b3-5785-4b6e-b0ef-6106cb1628ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8f6c91d7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2076589473], ["username", "billy_11"], ["access_token", "b7cb7eaa6313034194683a63385540b1"], ["uuid", "5b1419b3-5785-4b6e-b0ef-6106cb1628ee"], ["support_identifier", "cs_8f6c91d7"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:21:44.676079"], ["updated_at", "2018-10-16 17:21:44.676079"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1270487488 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b694abe-98c7-4036-a0ad-7b4af9a928d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_19fc9536' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1270487488], ["username", "billy_12"], ["access_token", "cdc68437fd8724a6d44151c48158e8e8"], ["uuid", "9b694abe-98c7-4036-a0ad-7b4af9a928d7"], ["support_identifier", "cs_19fc9536"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:21:44.680231"], ["updated_at", "2018-10-16 17:21:44.680231"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -875461837 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2421c74c-3469-4dc1-9b7c-757634f6d029' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aa0aa524' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -875461837], ["username", "billy_13"], ["access_token", "32cba53032704e88bcc05e0dbe157eb8"], ["uuid", "2421c74c-3469-4dc1-9b7c-757634f6d029"], ["support_identifier", "cs_aa0aa524"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:21:44.684930"], ["updated_at", "2018-10-16 17:21:44.684930"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -244182377 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a84d1ddd-800b-48e3-86b7-241dc35875c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bda47f34' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -244182377], ["username", "billy_14"], ["access_token", "cd1a5a7b1d0ad76953863bd5a74bd2f4"], ["uuid", "a84d1ddd-800b-48e3-86b7-241dc35875c0"], ["support_identifier", "cs_bda47f34"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:21:44.689058"], ["updated_at", "2018-10-16 17:21:44.689058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1531150487 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5969bf98-5fc3-4968-adb5-50d4b20b14cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35d1fe82' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1531150487], ["username", "billy_15"], ["access_token", "a5d25a3812263709867b4e40813262aa"], ["uuid", "5969bf98-5fc3-4968-adb5-50d4b20b14cf"], ["support_identifier", "cs_35d1fe82"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:21:44.693114"], ["updated_at", "2018-10-16 17:21:44.693114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -868490165 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5eb78300-d80e-4129-b39b-c1e026b48b34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_241e59d6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -868490165], ["username", "billy_16"], ["access_token", "f44e71875d9f17b1f67795b0ab8ab324"], ["uuid", "5eb78300-d80e-4129-b39b-c1e026b48b34"], ["support_identifier", "cs_241e59d6"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:21:44.697298"], ["updated_at", "2018-10-16 17:21:44.697298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1844464355 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '91764b02-bc51-4d34-b2a5-6275671d4cea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f4af7c2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1844464355], ["username", "billy_17"], ["access_token", "ef2018336aa3d2cb318436d486b706eb"], ["uuid", "91764b02-bc51-4d34-b2a5-6275671d4cea"], ["support_identifier", "cs_6f4af7c2"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:21:44.701884"], ["updated_at", "2018-10-16 17:21:44.701884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -71883092 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '882097db-51f3-494e-9f7a-33f2afa9ed0d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d816e06f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -71883092], ["username", "billy_18"], ["access_token", "9cc86d23087eda59b79f2243c6bcbd17"], ["uuid", "882097db-51f3-494e-9f7a-33f2afa9ed0d"], ["support_identifier", "cs_d816e06f"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:21:44.706022"], ["updated_at", "2018-10-16 17:21:44.706022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1647992984 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9789859b-0bbb-4341-b214-f9ffd441bb8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75c10167' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1647992984], ["username", "billy_19"], ["access_token", "c744f35cd0d783fb930cbf77bf19f940"], ["uuid", "9789859b-0bbb-4341-b214-f9ffd441bb8f"], ["support_identifier", "cs_75c10167"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:21:44.710056"], ["updated_at", "2018-10-16 17:21:44.710056"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1696260252 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d968b7b-b6f7-4795-9198-f67353a5eedb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e00e3405' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1696260252], ["username", "billy_20"], ["access_token", "842d0d5efbb634ad4abe898253c9035b"], ["uuid", "3d968b7b-b6f7-4795-9198-f67353a5eedb"], ["support_identifier", "cs_e00e3405"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:21:44.714440"], ["updated_at", "2018-10-16 17:21:44.714440"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1802827320 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9ccdf27e-3861-4b73-89eb-53220a8cf140' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2fe163af' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1802827320], ["username", "billy_21"], ["access_token", "b3ad9f9c08e978c3812263178f950bc4"], ["uuid", "9ccdf27e-3861-4b73-89eb-53220a8cf140"], ["support_identifier", "cs_2fe163af"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:21:44.721956"], ["updated_at", "2018-10-16 17:21:44.721956"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -541365474 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fe512584-2775-4224-97ce-043e67fc5027' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2d9bf0f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -541365474], ["username", "billy_22"], ["access_token", "646c903b1c6cd40dcdda8e1165492adb"], ["uuid", "fe512584-2775-4224-97ce-043e67fc5027"], ["support_identifier", "cs_c2d9bf0f"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:21:44.726195"], ["updated_at", "2018-10-16 17:21:44.726195"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1234624041 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '21e871a2-fb2a-4af0-8804-b89606f3a43f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e3c64ec' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1234624041], ["username", "billy_23"], ["access_token", "bae50027e85d0c1e1b5136f46272f2da"], ["uuid", "21e871a2-fb2a-4af0-8804-b89606f3a43f"], ["support_identifier", "cs_4e3c64ec"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:21:44.730367"], ["updated_at", "2018-10-16 17:21:44.730367"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1746476021 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2f30c2a-5084-4c01-93fa-809905989aab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f92d3ce0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1746476021], ["username", "billy_24"], ["access_token", "53e2f6987674fb1f374bd73c2dba35aa"], ["uuid", "c2f30c2a-5084-4c01-93fa-809905989aab"], ["support_identifier", "cs_f92d3ce0"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:21:44.735174"], ["updated_at", "2018-10-16 17:21:44.735174"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -557742858 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba8e19da-8d7b-444f-88df-f3288009f3bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3045bb0b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -557742858], ["username", "billy_25"], ["access_token", "570f2dc232bbba67617ada99aa083fc9"], ["uuid", "ba8e19da-8d7b-444f-88df-f3288009f3bb"], ["support_identifier", "cs_3045bb0b"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:21:44.739392"], ["updated_at", "2018-10-16 17:21:44.739392"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1605115952 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3ceba7a-974e-4ccc-87cb-39ff0d88ed24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8048e7d4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1605115952], ["username", "billy_26"], ["access_token", "f4d463c34bf824ff8870ad6cef5487e8"], ["uuid", "c3ceba7a-974e-4ccc-87cb-39ff0d88ed24"], ["support_identifier", "cs_8048e7d4"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:21:44.743515"], ["updated_at", "2018-10-16 17:21:44.743515"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1962255618 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2389efec-7eec-437a-aca9-92e8431c0957' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c63319c5' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1962255618], ["username", "billy_27"], ["access_token", "899f5857399d38fd65d19364a8a32397"], ["uuid", "2389efec-7eec-437a-aca9-92e8431c0957"], ["support_identifier", "cs_c63319c5"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:21:44.747769"], ["updated_at", "2018-10-16 17:21:44.747769"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -934705889 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '93242ecf-1012-495d-85e2-173c13737f9e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a97139e4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -934705889], ["username", "billy_28"], ["access_token", "d76847c5ade970abfcb3b3a0ab11c66c"], ["uuid", "93242ecf-1012-495d-85e2-173c13737f9e"], ["support_identifier", "cs_a97139e4"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:21:44.755019"], ["updated_at", "2018-10-16 17:21:44.755019"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1586532514 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7a9d2e5-a317-42d2-99fa-c8ac498d283e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bc7455dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1586532514], ["username", "billy_29"], ["access_token", "95d25960ea849aff8bd1d8272a6904b1"], ["uuid", "f7a9d2e5-a317-42d2-99fa-c8ac498d283e"], ["support_identifier", "cs_bc7455dc"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:21:44.759266"], ["updated_at", "2018-10-16 17:21:44.759266"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -810963358 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b54605a-4078-4631-a2a4-034b1092e665' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d063ddd' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -810963358], ["username", "billy_30"], ["access_token", "42d96077c5028c52da5611a470d226c0"], ["uuid", "4b54605a-4078-4631-a2a4-034b1092e665"], ["support_identifier", "cs_3d063ddd"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:21:44.763525"], ["updated_at", "2018-10-16 17:21:44.763525"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -780151515 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '927e0171-ad56-4337-967e-5f60edc71433' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b1be817' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -780151515], ["username", "billy_31"], ["access_token", "c48564b33521f0b0ef96d37e35ad5333"], ["uuid", "927e0171-ad56-4337-967e-5f60edc71433"], ["support_identifier", "cs_9b1be817"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:21:44.768382"], ["updated_at", "2018-10-16 17:21:44.768382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -925978168 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1e4943d3-1e37-4950-a412-82749bd9ff3b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8d79484' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -925978168], ["username", "billy_32"], ["access_token", "7fe117fa8a45226c9588f4bcd1362b2b"], ["uuid", "1e4943d3-1e37-4950-a412-82749bd9ff3b"], ["support_identifier", "cs_f8d79484"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:21:44.772580"], ["updated_at", "2018-10-16 17:21:44.772580"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846731200 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7f4ed19-56e7-412b-8b8e-d5ef8633c63a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_baa40bec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -846731200], ["username", "billy_33"], ["access_token", "19d1584ec37380ab6824785e47d2eb45"], ["uuid", "f7f4ed19-56e7-412b-8b8e-d5ef8633c63a"], ["support_identifier", "cs_baa40bec"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:21:44.776783"], ["updated_at", "2018-10-16 17:21:44.776783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -852731328 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f0aeaed-db76-4033-9f25-22a02eec667a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ec611430' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -852731328], ["username", "billy_34"], ["access_token", "41dcce6b5e19a230d2dfbfafb05050c7"], ["uuid", "6f0aeaed-db76-4033-9f25-22a02eec667a"], ["support_identifier", "cs_ec611430"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:21:44.781160"], ["updated_at", "2018-10-16 17:21:44.781160"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -545387752 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c908e75-9ede-4787-a339-3af940962320' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71a81204' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -545387752], ["username", "billy_35"], ["access_token", "a57a3ef242fe07059052e276af9dc3d7"], ["uuid", "9c908e75-9ede-4787-a339-3af940962320"], ["support_identifier", "cs_71a81204"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:21:44.785848"], ["updated_at", "2018-10-16 17:21:44.785848"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -153140862 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '74965d78-f0a3-4add-bc75-ed9039d689e0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f6e3da4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -153140862], ["username", "billy_36"], ["access_token", "0418de128527f1ff6d3662e147e74391"], ["uuid", "74965d78-f0a3-4add-bc75-ed9039d689e0"], ["support_identifier", "cs_4f6e3da4"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:21:44.790216"], ["updated_at", "2018-10-16 17:21:44.790216"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1641696708 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db20e7d5-17fc-480e-877a-8942674a73e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12678e81' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1641696708], ["username", "billy_37"], ["access_token", "e459fd084e5b79ae82a6f433c18124fd"], ["uuid", "db20e7d5-17fc-480e-877a-8942674a73e9"], ["support_identifier", "cs_12678e81"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:21:44.794421"], ["updated_at", "2018-10-16 17:21:44.794421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1823434847 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a55cf967-0469-4bd3-9842-bf59ea120831' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e90b1263' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1823434847], ["username", "billy_38"], ["access_token", "b04f0aa3f9b1a8300f3979821a9904a6"], ["uuid", "a55cf967-0469-4bd3-9842-bf59ea120831"], ["support_identifier", "cs_e90b1263"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:21:44.801203"], ["updated_at", "2018-10-16 17:21:44.801203"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1623002005 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '15b3c9ac-7810-4134-bd29-8af3f3d59daa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0aed924' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1623002005], ["username", "billy_39"], ["access_token", "c37b9e75e795e7c973f05f06219e3d86"], ["uuid", "15b3c9ac-7810-4134-bd29-8af3f3d59daa"], ["support_identifier", "cs_e0aed924"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:21:44.805803"], ["updated_at", "2018-10-16 17:21:44.805803"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -93418402 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '92c3c356-a8a4-47c8-9ffb-7c7bec506bf9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60e29f1f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -93418402], ["username", "billy_40"], ["access_token", "33400961adb02dfc19dc8919bfbd047c"], ["uuid", "92c3c356-a8a4-47c8-9ffb-7c7bec506bf9"], ["support_identifier", "cs_60e29f1f"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:21:44.809888"], ["updated_at", "2018-10-16 17:21:44.809888"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -55281327 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d72e19b-ce73-480d-9d54-440bd5bd67e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85abe9b7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -55281327], ["username", "billy_41"], ["access_token", "e679aee4a6c75e1b5a680b8d638b2471"], ["uuid", "6d72e19b-ce73-480d-9d54-440bd5bd67e3"], ["support_identifier", "cs_85abe9b7"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:21:44.814320"], ["updated_at", "2018-10-16 17:21:44.814320"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -842811455 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1e0b758-9542-48f6-a55a-af21731da2eb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_43176d83' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -842811455], ["username", "billy_42"], ["access_token", "78f81e205cfda79dd57e483f94a87b7f"], ["uuid", "c1e0b758-9542-48f6-a55a-af21731da2eb"], ["support_identifier", "cs_43176d83"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:21:44.819077"], ["updated_at", "2018-10-16 17:21:44.819077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -802936109 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7ab5268-21b7-43cf-81d0-63777e969916' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_47af38e0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -802936109], ["username", "billy_43"], ["access_token", "cc59a78c98aa34f04c979d615066b3fd"], ["uuid", "c7ab5268-21b7-43cf-81d0-63777e969916"], ["support_identifier", "cs_47af38e0"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:21:44.825915"], ["updated_at", "2018-10-16 17:21:44.825915"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -626638435 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd113c152-6d99-461a-82e4-56ef2bf7fc8c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_962315a2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -626638435], ["username", "billy_44"], ["access_token", "bb43f05e6834e40b212b645729c997b5"], ["uuid", "d113c152-6d99-461a-82e4-56ef2bf7fc8c"], ["support_identifier", "cs_962315a2"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:21:44.830256"], ["updated_at", "2018-10-16 17:21:44.830256"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1740122223 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa57a662-fbfc-43b8-86c9-08280e0b700c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_66059aef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1740122223], ["username", "billy_45"], ["access_token", "deb56f9c17a1c153ee758c5314290af8"], ["uuid", "fa57a662-fbfc-43b8-86c9-08280e0b700c"], ["support_identifier", "cs_66059aef"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:21:44.834883"], ["updated_at", "2018-10-16 17:21:44.834883"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1340645950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e5e06d9-23fd-4244-8769-936a3b4cb05d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8ce2f92' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1340645950], ["username", "billy_46"], ["access_token", "6c1e1e1929f938050b8278dc69f9e264"], ["uuid", "2e5e06d9-23fd-4244-8769-936a3b4cb05d"], ["support_identifier", "cs_e8ce2f92"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:21:44.839143"], ["updated_at", "2018-10-16 17:21:44.839143"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1673248065 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '67b2303c-aa0d-4668-ab4c-9174d308e6b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b83cf19' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1673248065], ["username", "billy_47"], ["access_token", "5140bc5ea1f7b461a3e3aecdd8843d08"], ["uuid", "67b2303c-aa0d-4668-ab4c-9174d308e6b5"], ["support_identifier", "cs_5b83cf19"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:21:44.843266"], ["updated_at", "2018-10-16 17:21:44.843266"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1511945298 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b21fe282-176c-4a51-b9e4-1c3e04143dd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a308f4ed' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1511945298], ["username", "billy_48"], ["access_token", "12f91c6e01006b703e7e21e210e61d12"], ["uuid", "b21fe282-176c-4a51-b9e4-1c3e04143dd8"], ["support_identifier", "cs_a308f4ed"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:21:44.847494"], ["updated_at", "2018-10-16 17:21:44.847494"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1783973986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '671d929f-9fe9-43e0-8b5f-1d8cceab1e05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6691f50' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1783973986], ["username", "billy_49"], ["access_token", "a05cbb4c88b60810285eb941d9847ff4"], ["uuid", "671d929f-9fe9-43e0-8b5f-1d8cceab1e05"], ["support_identifier", "cs_e6691f50"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:21:44.854551"], ["updated_at", "2018-10-16 17:21:44.854551"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.7ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:21:44 -0500 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (216.3ms) DROP DATABASE IF EXISTS "ox_tutor_test" +  (506.2ms) CREATE DATABASE "ox_tutor_test" ENCODING = 'utf8' + SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" + SQL (8.0ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" + SQL (15.7ms) CREATE EXTENSION IF NOT EXISTS "citext" +  (5.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" serial primary key, "openstax_uid" integer, "username" character varying, "access_token" character varying, "first_name" character varying, "last_name" character varying, "full_name" character varying, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "faculty_status" integer DEFAULT 0 NOT NULL, "salesforce_contact_id" character varying, "uuid" uuid DEFAULT gen_random_uuid(), "role" integer DEFAULT 0 NOT NULL, "support_identifier" citext, "is_test" boolean, "school_type" integer DEFAULT 0 NOT NULL) +  (1.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" USING btree ("access_token") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_faculty_status" ON "openstax_accounts_accounts" USING btree ("faculty_status") +  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" USING btree ("first_name") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" USING btree ("full_name") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" USING btree ("last_name") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" USING btree ("openstax_uid") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_role" ON "openstax_accounts_accounts" USING btree ("role") +  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_salesforce_contact_id" ON "openstax_accounts_accounts" USING btree ("salesforce_contact_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_school_type" ON "openstax_accounts_accounts" USING btree ("school_type") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_support_identifier" ON "openstax_accounts_accounts" USING btree ("support_identifier") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" USING btree ("username") +  (1.4ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_uuid" ON "openstax_accounts_accounts" USING btree ("uuid") +  (2.0ms) CREATE TABLE "openstax_accounts_group_members" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" USING btree ("group_id", "user_id") +  (0.9ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" USING btree ("user_id") +  (1.9ms) CREATE TABLE "openstax_accounts_group_nestings" ("id" serial primary key, "member_group_id" integer NOT NULL, "container_group_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.5ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" USING btree ("container_group_id") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" USING btree ("member_group_id") +  (1.9ms) CREATE TABLE "openstax_accounts_group_owners" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" USING btree ("group_id", "user_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" USING btree ("user_id") +  (3.1ms) CREATE TABLE "openstax_accounts_groups" ("id" serial primary key, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" character varying, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (0.9ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" USING btree ("is_public") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" USING btree ("openstax_uid") +  (2.7ms) CREATE TABLE "ownerships" ("id" serial primary key, "owner_id" integer NOT NULL, "owner_type" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (0.9ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" USING btree ("owner_id", "owner_type") +  (1.9ms) CREATE TABLE "users" ("id" serial primary key, "account_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" USING btree ("account_id") +  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.3ms) SELECT version FROM "schema_migrations" +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('1001') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('1000') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('4') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('11') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('2') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('7') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('13') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('8') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('1') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('10') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('3') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('6') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('9') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('12') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('5') + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) BEGIN +Processing by AnonymousController#action_needing_authentication as +Redirected to http://test.host/accounts/login +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 24ms (ActiveRecord: 2.9ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b3f9c8d8-2d76-4213-a69d-16f72b1a24f7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b5d7e6e' LIMIT 1 + SQL (1.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "de4bb344b201e911aee62fdd64ef0a89"], ["uuid", "b3f9c8d8-2d76-4213-a69d-16f72b1a24f7"], ["support_identifier", "cs_5b5d7e6e"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.028072"], ["updated_at", "2018-10-16 17:23:12.028072"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML + Parameters: {"id"=>"10"} + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 10]] + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]] +Redirected to http://test.host/ +Completed 302 Found in 18ms (ActiveRecord: 1.8ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '69aa1ed0-63ee-463a-ac41-f68c782a609b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d68b279c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "fdb93063dcffe44c740865687eeeeb83"], ["uuid", "69aa1ed0-63ee-463a-ac41-f68c782a609b"], ["support_identifier", "cs_d68b279c"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.059534"], ["updated_at", "2018-10-16 17:23:12.059534"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#index as HTML + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. + Rendered /Users/dante/Desktop/accounts-rails/app/views/openstax/accounts/dev/accounts/index.html.erb within layouts/openstax/accounts/application (0.3ms) + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. +Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'User' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9c30646-cb38-4647-816c-822736bac60e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_209ac222' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "User"], ["access_token", "c7f4403d5edb4a159ca3b5dd36ec97e7"], ["uuid", "b9c30646-cb38-4647-816c-822736bac60e"], ["support_identifier", "cs_209ac222"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.121018"], ["updated_at", "2018-10-16 17:23:12.121018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'Fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd496ae0d-abd4-402f-9b31-ae0da13aee45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3071c835' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 3], ["username", "Fuego"], ["access_token", "2a6aafe26b7f7b9a47a0f211be297114"], ["uuid", "d496ae0d-abd4-402f-9b31-ae0da13aee45"], ["support_identifier", "cs_3071c835"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.125525"], ["updated_at", "2018-10-16 17:23:12.125525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 2], ["name", "Member Group"], ["created_at", "2018-10-16 17:23:12.134893"], ["updated_at", "2018-10-16 17:23:12.134893"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 3 AND "openstax_accounts_group_members"."group_id" = 2) LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 2], ["user_id", 2], ["created_at", "2018-10-16 17:23:12.148773"], ["updated_at", "2018-10-16 17:23:12.148773"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 4], ["name", "Container Group"], ["created_at", "2018-10-16 17:23:12.151745"], ["updated_at", "2018-10-16 17:23:12.151745"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 4], ["user_id", 2], ["created_at", "2018-10-16 17:23:12.160633"], ["updated_at", "2018-10-16 17:23:12.160633"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 1 LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2018-10-16 17:23:12.175968"], ["updated_at", "2018-10-16 17:23:12.175968"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 4]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.5ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 1]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 4 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 3 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 3], ["name", "Fuego's Deputies"], ["created_at", "2018-10-16 17:23:12.280722"], ["updated_at", "2018-10-16 17:23:12.280722"]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 4 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 17:23:12.282433"], ["updated_at", "2018-10-16 17:23:12.282433"]] + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 3 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 17:23:12.284358"], ["updated_at", "2018-10-16 17:23:12.284358"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 17:23:12.289833"], ["updated_at", "2018-10-16 17:23:12.289833"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "name" = $1, "updated_at" = $2 WHERE "openstax_accounts_groups"."id" = $3 [["name", "M"], ["updated_at", "2018-10-16 17:23:12.291847"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.1ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = $1 [["id", 2]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 17:23:12.358428"], ["updated_at", "2018-10-16 17:23:12.358428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.1ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 3 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 17:23:12.363332"], ["updated_at", "2018-10-16 17:23:12.363332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 4 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 17:23:12.367158"], ["updated_at", "2018-10-16 17:23:12.367158"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:23:12 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 3]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a298e14-3310-4595-b55a-6f6382258103' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06adc46c' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "e44a0b34f9887309bfff7d4c435b9638"], ["uuid", "5a298e14-3310-4595-b55a-6f6382258103"], ["support_identifier", "cs_06adc46c"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.406173"], ["updated_at", "2018-10-16 17:23:12.406173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.5ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 5], ["created_at", "2018-10-16 17:23:12.410599"], ["updated_at", "2018-10-16 17:23:12.410599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 5]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 5]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 5]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 5]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 5]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8a4a63c-5672-4f56-8e49-80d899fad388' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb677b39' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "dd2d3e094d69f5d1b3ba91e02014d7fb"], ["uuid", "f8a4a63c-5672-4f56-8e49-80d899fad388"], ["support_identifier", "cs_eb677b39"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:12.866296"], ["updated_at", "2018-10-16 17:23:12.866296"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 6], ["created_at", "2018-10-16 17:23:12.868368"], ["updated_at", "2018-10-16 17:23:12.868368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 6]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 6]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 6]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '61a99bdf-0ed7-47a8-a4d2-4f485160a06b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39f242e0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "dbc8917e0ec61f2f586eccb85df3202a"], ["uuid", "61a99bdf-0ed7-47a8-a4d2-4f485160a06b"], ["support_identifier", "cs_39f242e0"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:13.318998"], ["updated_at", "2018-10-16 17:23:13.318998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 7], ["created_at", "2018-10-16 17:23:13.321070"], ["updated_at", "2018-10-16 17:23:13.321070"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '229e10c1-31cc-4cc5-b975-7b11ee9ee896' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c82d8988' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "f088df1ef549e458200884ad7b0a5bac"], ["uuid", "229e10c1-31cc-4cc5-b975-7b11ee9ee896"], ["support_identifier", "cs_c82d8988"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:13.766077"], ["updated_at", "2018-10-16 17:23:13.766077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 8], ["created_at", "2018-10-16 17:23:13.768071"], ["updated_at", "2018-10-16 17:23:13.768071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 8]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f37bb3f-d85f-431b-b3d0-83b6b1a68fce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79ffeb67' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "647f45efd76c783962878f5fba220360"], ["uuid", "1f37bb3f-d85f-431b-b3d0-83b6b1a68fce"], ["support_identifier", "cs_79ffeb67"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:14.222373"], ["updated_at", "2018-10-16 17:23:14.222373"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 9], ["created_at", "2018-10-16 17:23:14.224383"], ["updated_at", "2018-10-16 17:23:14.224383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 9]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -793976454 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '09697c992dc36ed2e8da49872a656856' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c4e6d13-08cd-42d8-9c74-69e9769b3353' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e3d90b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -793976454], ["username", "09697c992dc36ed2e8da49872a656856"], ["access_token", "79aea25bc5bc2de6b13b1e1532965d97"], ["uuid", "2c4e6d13-08cd-42d8-9c74-69e9769b3353"], ["support_identifier", "cs_3e3d90b2"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:14.680308"], ["updated_at", "2018-10-16 17:23:14.680308"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -589952049 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -589952049], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:14.683675"], ["updated_at", "2018-10-16 17:23:14.683675"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1576721969 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '9ada4ab0a3c635db3071f51b706d0914' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e2ee4dde-5f21-4987-9f7f-2410bf150d9c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d60508f1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1576721969], ["username", "9ada4ab0a3c635db3071f51b706d0914"], ["access_token", "ed204c80b522aa225914aa54dee43748"], ["uuid", "e2ee4dde-5f21-4987-9f7f-2410bf150d9c"], ["support_identifier", "cs_d60508f1"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:14.693172"], ["updated_at", "2018-10-16 17:23:14.693172"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -63356234 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a5f749558fc65d7bdff2cf070788c275' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '102cfa47-4de5-4e6f-9998-ca7b0b4855ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3451ede2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -63356234], ["username", "a5f749558fc65d7bdff2cf070788c275"], ["access_token", "9a07a08ae72ea37b6d01a52630020508"], ["uuid", "102cfa47-4de5-4e6f-9998-ca7b0b4855ab"], ["support_identifier", "cs_3451ede2"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:14.699518"], ["updated_at", "2018-10-16 17:23:14.699518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1697950116 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1697950116], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:14.702882"], ["updated_at", "2018-10-16 17:23:14.702882"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN + OpenStax::Accounts::Group Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2018-10-16 17:23:14.714375"], ["updated_at", "2018-10-16 17:23:14.714375"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1292579844 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b35eb3c-31af-4d9d-b573-5c3f192a3354' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d2f0ff37' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1292579844], ["username", "jstrav"], ["access_token", "0f086f457001f4fdf6f47a9e04514e0e"], ["uuid", "0b35eb3c-31af-4d9d-b573-5c3f192a3354"], ["support_identifier", "cs_d2f0ff37"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.722397"], ["updated_at", "2018-10-16 17:23:14.722397"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -931737846 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '75adb725-377d-4902-81aa-90472147d302' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eae77578' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -931737846], ["username", "mary"], ["access_token", "cbbaea60ea9f3d4b213bf08484b0939b"], ["uuid", "75adb725-377d-4902-81aa-90472147d302"], ["support_identifier", "cs_eae77578"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.726991"], ["updated_at", "2018-10-16 17:23:14.726991"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -810424088 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7ad6503-0661-47a0-974b-e246be117b80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8211fe1e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -810424088], ["username", "jstead"], ["access_token", "ab19cd2b3150aa2a0bc90a6e9f81ffd7"], ["uuid", "b7ad6503-0661-47a0-974b-e246be117b80"], ["support_identifier", "cs_8211fe1e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.731189"], ["updated_at", "2018-10-16 17:23:14.731189"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1752945897 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '980ddf08-7d4f-42b9-8678-7069c20a0c9a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99faf251' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1752945897], ["username", "bigbear"], ["access_token", "9740693959d0c0257b9b37877a92d479"], ["uuid", "980ddf08-7d4f-42b9-8678-7069c20a0c9a"], ["support_identifier", "cs_99faf251"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.735689"], ["updated_at", "2018-10-16 17:23:14.735689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b7ad6503-0661-47a0-974b-e246be117b80') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b7ad6503-0661-47a0-974b-e246be117b80') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846430757 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c89e69b6-add4-4e37-a4e2-68952c8c7c71' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1043aeea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -846430757], ["username", "jstrav"], ["access_token", "50b957e648dad61ea0b0380d22767630"], ["uuid", "c89e69b6-add4-4e37-a4e2-68952c8c7c71"], ["support_identifier", "cs_1043aeea"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.743441"], ["updated_at", "2018-10-16 17:23:14.743441"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1796178261 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b8ce715-2bbc-4aff-8f7a-9b635c2f7715' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed8f3cc0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1796178261], ["username", "mary"], ["access_token", "37a3d92064ff58a8a49cd93d9cff03ed"], ["uuid", "6b8ce715-2bbc-4aff-8f7a-9b635c2f7715"], ["support_identifier", "cs_ed8f3cc0"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.747897"], ["updated_at", "2018-10-16 17:23:14.747897"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -930594020 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d9a8374-5754-4189-b752-c55cbbca3c3a' LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_db3ec0f5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -930594020], ["username", "jstead"], ["access_token", "57833782e909f3efa415e6186d5455af"], ["uuid", "8d9a8374-5754-4189-b752-c55cbbca3c3a"], ["support_identifier", "cs_db3ec0f5"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.754558"], ["updated_at", "2018-10-16 17:23:14.754558"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1550647349 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '268e8fe1-85b2-4ee1-9a06-6d9173ee092c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8d72e57b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1550647349], ["username", "bigbear"], ["access_token", "c4b457d4157a32ad6fdbfc1668252d5b"], ["uuid", "268e8fe1-85b2-4ee1-9a06-6d9173ee092c"], ["support_identifier", "cs_8d72e57b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.759675"], ["updated_at", "2018-10-16 17:23:14.759675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.6ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -605769031 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '500e329b-03fb-4046-ae97-58a2da9f50b1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30ca908f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -605769031], ["username", "jstrav"], ["access_token", "fbda67b7df784e1cdc498f33b724d134"], ["uuid", "500e329b-03fb-4046-ae97-58a2da9f50b1"], ["support_identifier", "cs_30ca908f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.768380"], ["updated_at", "2018-10-16 17:23:14.768380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -526631456 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c70d0775-6665-4bb5-8fb2-465df8829bfa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_670fba72' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -526631456], ["username", "mary"], ["access_token", "15429067b5a784a957b458f331ab1fd3"], ["uuid", "c70d0775-6665-4bb5-8fb2-465df8829bfa"], ["support_identifier", "cs_670fba72"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.773384"], ["updated_at", "2018-10-16 17:23:14.773384"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -237147534 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd09aebe8-8924-41c4-b7bb-37acb31f4055' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e343e4a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -237147534], ["username", "jstead"], ["access_token", "11f375737b200ca02e6cd5255b90b8f7"], ["uuid", "d09aebe8-8924-41c4-b7bb-37acb31f4055"], ["support_identifier", "cs_4e343e4a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.777539"], ["updated_at", "2018-10-16 17:23:14.777539"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -731692079 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '32b2fb87-2693-4756-9dac-01f8cad2bb64' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_adafb44a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -731692079], ["username", "bigbear"], ["access_token", "7235fe1f7dc65cee23154466d54038b6"], ["uuid", "32b2fb87-2693-4756-9dac-01f8cad2bb64"], ["support_identifier", "cs_adafb44a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.781798"], ["updated_at", "2018-10-16 17:23:14.781798"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -237147534) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -237147534) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -182137409 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29fcc2d6-1486-4cb1-9ddc-fab2fb53cd1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_92cdf803' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -182137409], ["username", "jstrav"], ["access_token", "6cef898ede1020eeaaa7b54d665e8778"], ["uuid", "29fcc2d6-1486-4cb1-9ddc-fab2fb53cd1c"], ["support_identifier", "cs_92cdf803"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.789681"], ["updated_at", "2018-10-16 17:23:14.789681"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -279266005 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1316e99-1a57-4219-a047-4d3ea4c03618' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_70f8e8fe' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -279266005], ["username", "mary"], ["access_token", "c896b5c728210558f50929b495b2cb1c"], ["uuid", "c1316e99-1a57-4219-a047-4d3ea4c03618"], ["support_identifier", "cs_70f8e8fe"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.794030"], ["updated_at", "2018-10-16 17:23:14.794030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1845884748 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '65e2661c-0749-4be9-bdba-c5afcc833778' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2174a58' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1845884748], ["username", "jstead"], ["access_token", "3c9baf04790c22a7e3f32684de0b7f7f"], ["uuid", "65e2661c-0749-4be9-bdba-c5afcc833778"], ["support_identifier", "cs_a2174a58"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.798318"], ["updated_at", "2018-10-16 17:23:14.798318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1607713303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '415a8edb-2714-4317-949b-e996f598c6ac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_77c1262d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1607713303], ["username", "bigbear"], ["access_token", "d85cf72fac8de8b71afad49b894d7544"], ["uuid", "415a8edb-2714-4317-949b-e996f598c6ac"], ["support_identifier", "cs_77c1262d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.804630"], ["updated_at", "2018-10-16 17:23:14.804630"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -707051257 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0514d9d-332f-4c07-a1c6-6799f8fdb7e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_66757edf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -707051257], ["username", "jstrav"], ["access_token", "0d1c047ac6828d002bcb797825a944dd"], ["uuid", "e0514d9d-332f-4c07-a1c6-6799f8fdb7e3"], ["support_identifier", "cs_66757edf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.814125"], ["updated_at", "2018-10-16 17:23:14.814125"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -971849251 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aef2a14d-286b-443c-9b2b-b29ce15419db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_099e9ac3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -971849251], ["username", "mary"], ["access_token", "a36b04750bde07adfab2b8f03d9c09f2"], ["uuid", "aef2a14d-286b-443c-9b2b-b29ce15419db"], ["support_identifier", "cs_099e9ac3"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.819129"], ["updated_at", "2018-10-16 17:23:14.819129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1751873469 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3a42431-3ce5-4607-9978-02a34015a7f3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b05cceaf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1751873469], ["username", "jstead"], ["access_token", "e5b441486bfda99fd66cc6ab75f48267"], ["uuid", "c3a42431-3ce5-4607-9978-02a34015a7f3"], ["support_identifier", "cs_b05cceaf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.823661"], ["updated_at", "2018-10-16 17:23:14.823661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1588031880 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '281ee718-4eaf-4f54-ab80-3aaeeb5c270d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5dff8389' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1588031880], ["username", "bigbear"], ["access_token", "938016744608dfe2d7ea4811a0f29958"], ["uuid", "281ee718-4eaf-4f54-ab80-3aaeeb5c270d"], ["support_identifier", "cs_5dff8389"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.827824"], ["updated_at", "2018-10-16 17:23:14.827824"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -56063300 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38b98991-66d4-4d3f-8629-c00b3a78a254' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b085e4a5' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -56063300], ["username", "jstrav"], ["access_token", "35f837ca8e1713cddbefad2f937c4543"], ["uuid", "38b98991-66d4-4d3f-8629-c00b3a78a254"], ["support_identifier", "cs_b085e4a5"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.836084"], ["updated_at", "2018-10-16 17:23:14.836084"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1746449538 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c1a6631-671c-4c1f-aa96-77d231f15164' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1a65a2a9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1746449538], ["username", "mary"], ["access_token", "d4187dd837259c6ec9985c40fb93f82a"], ["uuid", "1c1a6631-671c-4c1f-aa96-77d231f15164"], ["support_identifier", "cs_1a65a2a9"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.843661"], ["updated_at", "2018-10-16 17:23:14.843661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1656817717 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1312b379-ae3d-4495-bb3f-c8ff017a08a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d200990' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1656817717], ["username", "jstead"], ["access_token", "e8f1e5a1aacccb6d1383d9009c32796f"], ["uuid", "1312b379-ae3d-4495-bb3f-c8ff017a08a6"], ["support_identifier", "cs_3d200990"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.848314"], ["updated_at", "2018-10-16 17:23:14.848314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1013727134 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2312d4e9-0114-4359-b5b1-c6e0a8469445' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44ce7cb2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1013727134], ["username", "bigbear"], ["access_token", "7a9a4647ded7b42806b33c6cd43076bf"], ["uuid", "2312d4e9-0114-4359-b5b1-c6e0a8469445"], ["support_identifier", "cs_44ce7cb2"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.852936"], ["updated_at", "2018-10-16 17:23:14.852936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -785189069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3fd2f8ce-f9c2-4723-9700-5e36dae6a739' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a5f4b65c' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -785189069], ["username", "jstrav"], ["access_token", "06e2b7a062bffb724cd43a079f5413b7"], ["uuid", "3fd2f8ce-f9c2-4723-9700-5e36dae6a739"], ["support_identifier", "cs_a5f4b65c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.864157"], ["updated_at", "2018-10-16 17:23:14.864157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1773181750 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c280f7b5-d491-447c-baab-be32b82702e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33647202' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1773181750], ["username", "mary"], ["access_token", "e15971e8e1e07f10fd75a2bc33ae1b5d"], ["uuid", "c280f7b5-d491-447c-baab-be32b82702e3"], ["support_identifier", "cs_33647202"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.869008"], ["updated_at", "2018-10-16 17:23:14.869008"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -847454040 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7d99cdf-e16b-485c-bdb4-2341a09f5c16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7529bd83' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -847454040], ["username", "jstead"], ["access_token", "b2032a45d2606fe475cf514637169f41"], ["uuid", "b7d99cdf-e16b-485c-bdb4-2341a09f5c16"], ["support_identifier", "cs_7529bd83"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.873409"], ["updated_at", "2018-10-16 17:23:14.873409"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -441513587 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f8efdaa-4cae-448b-a010-fdcbe9d977ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aee572ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -441513587], ["username", "bigbear"], ["access_token", "322cae0086f959c128607272e8d8d592"], ["uuid", "1f8efdaa-4cae-448b-a010-fdcbe9d977ec"], ["support_identifier", "cs_aee572ee"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.877502"], ["updated_at", "2018-10-16 17:23:14.877502"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1551801307 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60f40331-0e0f-4b3d-afe8-0136e5791bd2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56b1808b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1551801307], ["username", "jstrav"], ["access_token", "1d831f09d1f52447a99499f374ed972c"], ["uuid", "60f40331-0e0f-4b3d-afe8-0136e5791bd2"], ["support_identifier", "cs_56b1808b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.884616"], ["updated_at", "2018-10-16 17:23:14.884616"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1227673032 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8a1685c2-30c2-44db-8cdd-26fbf5c3fbf1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9c7eda9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1227673032], ["username", "mary"], ["access_token", "c65c9fde4fd50ca5b08d2760d0f184cd"], ["uuid", "8a1685c2-30c2-44db-8cdd-26fbf5c3fbf1"], ["support_identifier", "cs_c9c7eda9"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.891501"], ["updated_at", "2018-10-16 17:23:14.891501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1380676561 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc7ae0db-6ee9-4fa2-8281-90a341c54f17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0519a81c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1380676561], ["username", "jstead"], ["access_token", "3190e90747c70d8adb278a14ba11fd17"], ["uuid", "bc7ae0db-6ee9-4fa2-8281-90a341c54f17"], ["support_identifier", "cs_0519a81c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.896478"], ["updated_at", "2018-10-16 17:23:14.896478"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -566250173 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29cd4e63-8e1b-4931-a994-f589bf350b05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_10deaaea' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -566250173], ["username", "bigbear"], ["access_token", "b9761fe2377630fdc4de046d3d93ceec"], ["uuid", "29cd4e63-8e1b-4931-a994-f589bf350b05"], ["support_identifier", "cs_10deaaea"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.900861"], ["updated_at", "2018-10-16 17:23:14.900861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1134370535 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f5ddfad5-f3b6-409f-9402-9f00acb0f04f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_896e7791' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1134370535], ["username", "jstrav"], ["access_token", "8b38c8243eadcbe2c2c3ab940ac343a9"], ["uuid", "f5ddfad5-f3b6-409f-9402-9f00acb0f04f"], ["support_identifier", "cs_896e7791"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.909438"], ["updated_at", "2018-10-16 17:23:14.909438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -227271075 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c08dc9dd-f38a-4792-9952-5174b2bdcc6b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_808865ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -227271075], ["username", "mary"], ["access_token", "cd13dc2d526d7ddc4324cdddd150991e"], ["uuid", "c08dc9dd-f38a-4792-9952-5174b2bdcc6b"], ["support_identifier", "cs_808865ef"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.913669"], ["updated_at", "2018-10-16 17:23:14.913669"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1388651216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '596d324e-63c5-49cd-a169-0629dd4b0f26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0ee5a504' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1388651216], ["username", "jstead"], ["access_token", "b1c71691c43bacac69a446100ceaa2cc"], ["uuid", "596d324e-63c5-49cd-a169-0629dd4b0f26"], ["support_identifier", "cs_0ee5a504"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.918122"], ["updated_at", "2018-10-16 17:23:14.918122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -272608268 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0df904a-83f6-4b96-a6db-e95cd7dd554b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0214681b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -272608268], ["username", "bigbear"], ["access_token", "72ec40eccc06d525494b2b2d3977870f"], ["uuid", "d0df904a-83f6-4b96-a6db-e95cd7dd554b"], ["support_identifier", "cs_0214681b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.922471"], ["updated_at", "2018-10-16 17:23:14.922471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -154355340 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27416f12-fe60-49ff-94c4-06ac9a405fea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b09645fd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -154355340], ["username", "jstrav"], ["access_token", "bf28c14126293dda9b90df9703a0727d"], ["uuid", "27416f12-fe60-49ff-94c4-06ac9a405fea"], ["support_identifier", "cs_b09645fd"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.929761"], ["updated_at", "2018-10-16 17:23:14.929761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1202073540 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '002c3ea3-8f23-449d-88a1-07c433f59aa2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3a8794d8' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1202073540], ["username", "mary"], ["access_token", "d358c0b867ab0061a2eb6087fe2dbdeb"], ["uuid", "002c3ea3-8f23-449d-88a1-07c433f59aa2"], ["support_identifier", "cs_3a8794d8"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.933972"], ["updated_at", "2018-10-16 17:23:14.933972"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -239336698 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e30c4f1f-11fb-473f-83e4-bc1b56657763' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22bd403a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -239336698], ["username", "jstead"], ["access_token", "6111a64451699f6f17d55ebab3dd105d"], ["uuid", "e30c4f1f-11fb-473f-83e4-bc1b56657763"], ["support_identifier", "cs_22bd403a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.941227"], ["updated_at", "2018-10-16 17:23:14.941227"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1484915097 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '31cd7945-c0e4-4401-a5ed-051a782e786a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_703ca87d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1484915097], ["username", "bigbear"], ["access_token", "e40420e3e40863d335ec08763e4b3e2a"], ["uuid", "31cd7945-c0e4-4401-a5ed-051a782e786a"], ["support_identifier", "cs_703ca87d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.945896"], ["updated_at", "2018-10-16 17:23:14.945896"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -693132269 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '63a9e32e-b867-48ab-8d55-c9aa7f5b33a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_08f7a7e2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -693132269], ["username", "jstrav"], ["access_token", "33ea16e179188edbfa2c7a7b45944bb2"], ["uuid", "63a9e32e-b867-48ab-8d55-c9aa7f5b33a6"], ["support_identifier", "cs_08f7a7e2"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.955037"], ["updated_at", "2018-10-16 17:23:14.955037"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -870492411 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2eda88ae-a7b3-4d52-9259-fb00e026b83b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_49b93fbb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -870492411], ["username", "mary"], ["access_token", "46f84fdad80ee17dcab9fabcd2b49399"], ["uuid", "2eda88ae-a7b3-4d52-9259-fb00e026b83b"], ["support_identifier", "cs_49b93fbb"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.959431"], ["updated_at", "2018-10-16 17:23:14.959431"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1419137570 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '041d62a2-6f6e-48f1-b1ea-ddd1fb51f350' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c651ad41' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1419137570], ["username", "jstead"], ["access_token", "d227391682b7572790439290f2bd0c1f"], ["uuid", "041d62a2-6f6e-48f1-b1ea-ddd1fb51f350"], ["support_identifier", "cs_c651ad41"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.963544"], ["updated_at", "2018-10-16 17:23:14.963544"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -176304612 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cefe70b9-7614-429b-b7fe-ea56db1a3b23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d433863b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -176304612], ["username", "bigbear"], ["access_token", "7df16d9cebbab55ec8c5f846055adea3"], ["uuid", "cefe70b9-7614-429b-b7fe-ea56db1a3b23"], ["support_identifier", "cs_d433863b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.967855"], ["updated_at", "2018-10-16 17:23:14.967855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408089586 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '23f6c48c-32f5-441a-82c1-65250b05255b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cb07f59' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -408089586], ["username", "jstrav"], ["access_token", "06fa21e0ed0ba5aeb4274e23efd8c9f9"], ["uuid", "23f6c48c-32f5-441a-82c1-65250b05255b"], ["support_identifier", "cs_3cb07f59"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.974988"], ["updated_at", "2018-10-16 17:23:14.974988"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1872512910 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c5aa4a92-075b-4f5a-9d1a-fd940b2eb2f7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_47b5b5d3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1872512910], ["username", "mary"], ["access_token", "c4a7497b429b855e8178a0c88e4ecccb"], ["uuid", "c5aa4a92-075b-4f5a-9d1a-fd940b2eb2f7"], ["support_identifier", "cs_47b5b5d3"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:14.979077"], ["updated_at", "2018-10-16 17:23:14.979077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2050165120 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58453dc2-1cb5-4e1e-a6d8-c3b59dd225cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8252d2e7' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2050165120], ["username", "jstead"], ["access_token", "7c0cc95b83568c452249c1ff96662f99"], ["uuid", "58453dc2-1cb5-4e1e-a6d8-c3b59dd225cf"], ["support_identifier", "cs_8252d2e7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:14.983160"], ["updated_at", "2018-10-16 17:23:14.983160"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1125688302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8d2e313-ec37-4a23-9ae4-70672701c284' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3343d27' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1125688302], ["username", "bigbear"], ["access_token", "b748a93098cda7c75d3520175d4d6ca1"], ["uuid", "f8d2e313-ec37-4a23-9ae4-70672701c284"], ["support_identifier", "cs_c3343d27"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:14.990563"], ["updated_at", "2018-10-16 17:23:14.990563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -591974232 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e77de864-442b-400d-816d-47f8d02bcbfb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5e53e8cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -591974232], ["username", "jstrav"], ["access_token", "cb5770482539187b306ac47d6df9f6fa"], ["uuid", "e77de864-442b-400d-816d-47f8d02bcbfb"], ["support_identifier", "cs_5e53e8cf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:14.998864"], ["updated_at", "2018-10-16 17:23:14.998864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1654555511 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09cb167d-b8ea-4b3d-a3c8-b8c2f8bcf11c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c98232cb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1654555511], ["username", "mary"], ["access_token", "cfb59e9204906644ce2b29b25faead86"], ["uuid", "09cb167d-b8ea-4b3d-a3c8-b8c2f8bcf11c"], ["support_identifier", "cs_c98232cb"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.003493"], ["updated_at", "2018-10-16 17:23:15.003493"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -160575033 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b551dd4-0384-41bb-8bc3-9da0f1869e73' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3dc1c3c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -160575033], ["username", "jstead"], ["access_token", "983428ab5e98ccca45c5d46bce347465"], ["uuid", "6b551dd4-0384-41bb-8bc3-9da0f1869e73"], ["support_identifier", "cs_3dc1c3c8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.007869"], ["updated_at", "2018-10-16 17:23:15.007869"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1678959194 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2f1da6f-60f1-4f9a-820a-a3f202d5cddd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87c7f4f4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1678959194], ["username", "bigbear"], ["access_token", "1ad546500d1022ddc9417b441a2407d9"], ["uuid", "c2f1da6f-60f1-4f9a-820a-a3f202d5cddd"], ["support_identifier", "cs_87c7f4f4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.012025"], ["updated_at", "2018-10-16 17:23:15.012025"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_3dc1c3c8') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_3dc1c3c8') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1990450949 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b48f337b-6422-4471-a35c-e7cabd97486f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_384a623e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1990450949], ["username", "jstrav"], ["access_token", "d966f1d75648b3f7846f4d70283934de"], ["uuid", "b48f337b-6422-4471-a35c-e7cabd97486f"], ["support_identifier", "cs_384a623e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:15.019884"], ["updated_at", "2018-10-16 17:23:15.019884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -755111069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d6c9918-096f-44bb-b7f3-fc9549c61578' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d5b389d4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -755111069], ["username", "mary"], ["access_token", "c0658e533880824c64f3eebc91f07bb0"], ["uuid", "8d6c9918-096f-44bb-b7f3-fc9549c61578"], ["support_identifier", "cs_d5b389d4"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.024098"], ["updated_at", "2018-10-16 17:23:15.024098"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -391412155 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd7769b18-9bb1-46f3-abd3-2600fe00ba6e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a3f5b01f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -391412155], ["username", "jstead"], ["access_token", "6ee5890943c696dc95725c81a7c1d7bf"], ["uuid", "d7769b18-9bb1-46f3-abd3-2600fe00ba6e"], ["support_identifier", "cs_a3f5b01f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.028136"], ["updated_at", "2018-10-16 17:23:15.028136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1214922193 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '01c2d7a5-251f-49e8-b95c-d7d0620f454d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6586388b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1214922193], ["username", "bigbear"], ["access_token", "460031195994ca53da634fa2e533bce2"], ["uuid", "01c2d7a5-251f-49e8-b95c-d7d0620f454d"], ["support_identifier", "cs_6586388b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.032511"], ["updated_at", "2018-10-16 17:23:15.032511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1758022478 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f963cb6e-45d5-4fd7-8b7e-e8aed1976543' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aeb21a7c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1758022478], ["username", "foo_bb"], ["access_token", "b359b67ec7e1d6ba73597a516957690b"], ["uuid", "f963cb6e-45d5-4fd7-8b7e-e8aed1976543"], ["support_identifier", "cs_aeb21a7c"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 17:23:15.039181"], ["updated_at", "2018-10-16 17:23:15.039181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1073218795 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac4523fe-a3ed-4d16-9494-e7fc0af2278e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4866538c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1073218795], ["username", "foo_bj"], ["access_token", "46276ea53917706a1ea436cfc365357a"], ["uuid", "ac4523fe-a3ed-4d16-9494-e7fc0af2278e"], ["support_identifier", "cs_4866538c"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:23:15.043763"], ["updated_at", "2018-10-16 17:23:15.043763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1163969647 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b60fd19c-67f8-47fe-8071-22ca79257452' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ea914fa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1163969647], ["username", "foo_tj"], ["access_token", "dcbfc733dfc73e18ac021dea2241e4a5"], ["uuid", "b60fd19c-67f8-47fe-8071-22ca79257452"], ["support_identifier", "cs_2ea914fa"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:23:15.047813"], ["updated_at", "2018-10-16 17:23:15.047813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1665515504 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '336b49da-263a-428b-8e97-0842c4b5c43b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96f8a8ed' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1665515504], ["username", "jstrav"], ["access_token", "0f2ab8a6a8c2993d7da65f1f66060285"], ["uuid", "336b49da-263a-428b-8e97-0842c4b5c43b"], ["support_identifier", "cs_96f8a8ed"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:15.058707"], ["updated_at", "2018-10-16 17:23:15.058707"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1475874506 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0335cf8a-86ce-49fa-a5b8-3cffe6e3ae58' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_369521a8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1475874506], ["username", "mary"], ["access_token", "7e63665b6c050b7586e2827b90805f9c"], ["uuid", "0335cf8a-86ce-49fa-a5b8-3cffe6e3ae58"], ["support_identifier", "cs_369521a8"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.062916"], ["updated_at", "2018-10-16 17:23:15.062916"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -899227346 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c44745c-829b-49a0-820b-a925759b7f19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f35759c7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -899227346], ["username", "jstead"], ["access_token", "1f3f1a40af175c04286c70f45bff63aa"], ["uuid", "9c44745c-829b-49a0-820b-a925759b7f19"], ["support_identifier", "cs_f35759c7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.067094"], ["updated_at", "2018-10-16 17:23:15.067094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -7882522 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f24f7a0f-201e-4ffd-89a9-314e997b969b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_77a6730b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -7882522], ["username", "bigbear"], ["access_token", "86247e084f6dee510aa0b8596ce15104"], ["uuid", "f24f7a0f-201e-4ffd-89a9-314e997b969b"], ["support_identifier", "cs_77a6730b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.074459"], ["updated_at", "2018-10-16 17:23:15.074459"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -541329137 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d573111-5e99-483e-8830-f7790597ff6a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_77a32e4f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -541329137], ["username", "billy_00"], ["access_token", "48fe3659d4add4ff08ee418b004c2e4e"], ["uuid", "8d573111-5e99-483e-8830-f7790597ff6a"], ["support_identifier", "cs_77a32e4f"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:15.078910"], ["updated_at", "2018-10-16 17:23:15.078910"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -637267405 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '953b0caa-30fb-452c-86ce-7f0d9f481dce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fdc6f7ab' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -637267405], ["username", "billy_01"], ["access_token", "15b10487d208bbbcc5a811506623a4e6"], ["uuid", "953b0caa-30fb-452c-86ce-7f0d9f481dce"], ["support_identifier", "cs_fdc6f7ab"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:15.083090"], ["updated_at", "2018-10-16 17:23:15.083090"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -584087605 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5afeff33-a47b-48fb-925d-d39d338748c2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fc80e5a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -584087605], ["username", "billy_02"], ["access_token", "5ceab1f1a005c77e3997f8967ed8f14e"], ["uuid", "5afeff33-a47b-48fb-925d-d39d338748c2"], ["support_identifier", "cs_fc80e5a6"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:15.087682"], ["updated_at", "2018-10-16 17:23:15.087682"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -490692515 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ba8f7a6-eede-4c96-806f-034e217ed7e8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d6e0d9ce' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -490692515], ["username", "billy_03"], ["access_token", "5dcebc1ef731537ceba85c248c021982"], ["uuid", "2ba8f7a6-eede-4c96-806f-034e217ed7e8"], ["support_identifier", "cs_d6e0d9ce"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:15.092302"], ["updated_at", "2018-10-16 17:23:15.092302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1881160357 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e09454b8-e824-48d0-b992-8554d6fc4416' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6922b66' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1881160357], ["username", "billy_04"], ["access_token", "a2693e33c513ece6ea7e7ab6a58a7dd0"], ["uuid", "e09454b8-e824-48d0-b992-8554d6fc4416"], ["support_identifier", "cs_e6922b66"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:15.096656"], ["updated_at", "2018-10-16 17:23:15.096656"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167814068 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e152c07d-dc7c-45bd-b7b9-933c4fe84978' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4461ba1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -167814068], ["username", "billy_05"], ["access_token", "599c567744cdc11354a57fc35399b991"], ["uuid", "e152c07d-dc7c-45bd-b7b9-933c4fe84978"], ["support_identifier", "cs_b4461ba1"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:15.100784"], ["updated_at", "2018-10-16 17:23:15.100784"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -51760805 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '136fa066-0308-4f2f-9da8-078555280f97' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd3f0c9f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -51760805], ["username", "billy_06"], ["access_token", "4e718e8d886712c41517b47a9445aefb"], ["uuid", "136fa066-0308-4f2f-9da8-078555280f97"], ["support_identifier", "cs_fd3f0c9f"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:15.105435"], ["updated_at", "2018-10-16 17:23:15.105435"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005159367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8700e09-233e-48c5-a088-86983c214d4f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fcfa9094' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1005159367], ["username", "billy_07"], ["access_token", "7e877342f5987b7e369249c9416643f4"], ["uuid", "b8700e09-233e-48c5-a088-86983c214d4f"], ["support_identifier", "cs_fcfa9094"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:15.109610"], ["updated_at", "2018-10-16 17:23:15.109610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -717475709 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '62e5e3ee-1713-4ab6-9cf7-c65689ab815d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8c77de36' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -717475709], ["username", "billy_08"], ["access_token", "7e44dd911a1c8b11154afb720b90d001"], ["uuid", "62e5e3ee-1713-4ab6-9cf7-c65689ab815d"], ["support_identifier", "cs_8c77de36"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:15.113771"], ["updated_at", "2018-10-16 17:23:15.113771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1882680091 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '43e87bbf-2167-46be-b852-55ec182e2d1f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b7136e0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1882680091], ["username", "billy_09"], ["access_token", "ddf5458beb17abc48dd571b76b8a871b"], ["uuid", "43e87bbf-2167-46be-b852-55ec182e2d1f"], ["support_identifier", "cs_8b7136e0"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:15.118314"], ["updated_at", "2018-10-16 17:23:15.118314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -511099731 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8263612e-e4a1-41a6-9740-7496b955c6e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0afa021' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -511099731], ["username", "billy_10"], ["access_token", "4b74d5031a5def3927ff564f81256846"], ["uuid", "8263612e-e4a1-41a6-9740-7496b955c6e3"], ["support_identifier", "cs_b0afa021"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:15.122886"], ["updated_at", "2018-10-16 17:23:15.122886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -312680144 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f73cfb0-2380-48be-94f5-6ca76730483d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_feaab32b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -312680144], ["username", "billy_11"], ["access_token", "3a8adeb883bc383e4810fd7ceba0c841"], ["uuid", "2f73cfb0-2380-48be-94f5-6ca76730483d"], ["support_identifier", "cs_feaab32b"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:15.129885"], ["updated_at", "2018-10-16 17:23:15.129885"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -608207772 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '798f9d99-3be6-4554-b021-698b125fdfed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9184082' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -608207772], ["username", "billy_12"], ["access_token", "cf76815915ff5889a6e3bf852b8decf6"], ["uuid", "798f9d99-3be6-4554-b021-698b125fdfed"], ["support_identifier", "cs_c9184082"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:15.134043"], ["updated_at", "2018-10-16 17:23:15.134043"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -707676235 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2690f45f-2fd5-44ff-a037-599d20fe32cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c14bcda8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -707676235], ["username", "billy_13"], ["access_token", "5dbe87dd5827966f51cf1556debb8818"], ["uuid", "2690f45f-2fd5-44ff-a037-599d20fe32cc"], ["support_identifier", "cs_c14bcda8"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:15.139747"], ["updated_at", "2018-10-16 17:23:15.139747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1595509623 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '37a99d1f-3511-4942-b1a6-31efeb19c58a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ec860fb0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1595509623], ["username", "billy_14"], ["access_token", "45db53828793ea3699e8b2ac3079d965"], ["uuid", "37a99d1f-3511-4942-b1a6-31efeb19c58a"], ["support_identifier", "cs_ec860fb0"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:15.144110"], ["updated_at", "2018-10-16 17:23:15.144110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -481351926 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d52e08d-2755-4611-abd9-ce9f9c9ca30b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_090c4924' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -481351926], ["username", "billy_15"], ["access_token", "6be4f8cbc6f850af0ffa3dd7f0dea69b"], ["uuid", "3d52e08d-2755-4611-abd9-ce9f9c9ca30b"], ["support_identifier", "cs_090c4924"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:15.148194"], ["updated_at", "2018-10-16 17:23:15.148194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1937601800 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ca4b376-101c-474a-b938-ed87604d8c53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f762566a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1937601800], ["username", "billy_16"], ["access_token", "3b9d64c81a059c186e1bce05f44775c6"], ["uuid", "3ca4b376-101c-474a-b938-ed87604d8c53"], ["support_identifier", "cs_f762566a"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:15.152230"], ["updated_at", "2018-10-16 17:23:15.152230"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1552666845 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0bbde762-9a0c-44c2-b24b-fa0e19c5eea9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c0354af9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1552666845], ["username", "billy_17"], ["access_token", "afd72ebdfb5f4528da644f5e20a7a455"], ["uuid", "0bbde762-9a0c-44c2-b24b-fa0e19c5eea9"], ["support_identifier", "cs_c0354af9"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:15.156716"], ["updated_at", "2018-10-16 17:23:15.156716"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1134152054 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c9a01cc-5ee8-41de-9f52-966db64d4b0b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_84d1d021' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1134152054], ["username", "billy_18"], ["access_token", "290e8dd549b34930e5ca349c94043f64"], ["uuid", "4c9a01cc-5ee8-41de-9f52-966db64d4b0b"], ["support_identifier", "cs_84d1d021"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:15.160832"], ["updated_at", "2018-10-16 17:23:15.160832"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2058974685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6c29d54-a3c9-4692-a55d-f0b8dc1f3ad6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1811c3c1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2058974685], ["username", "billy_19"], ["access_token", "59621237866ab16c8b92bd1d20cffd8b"], ["uuid", "c6c29d54-a3c9-4692-a55d-f0b8dc1f3ad6"], ["support_identifier", "cs_1811c3c1"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:15.164778"], ["updated_at", "2018-10-16 17:23:15.164778"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1010815055 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9cb9614-2596-4dbd-8553-b609d13e2b87' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b10b9064' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1010815055], ["username", "billy_20"], ["access_token", "17a6cd77f27acfe6926e6493e72038f8"], ["uuid", "b9cb9614-2596-4dbd-8553-b609d13e2b87"], ["support_identifier", "cs_b10b9064"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:15.169057"], ["updated_at", "2018-10-16 17:23:15.169057"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -961681326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fbd00187-86a8-4c26-b16d-4dcb7facd06f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f562ecf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -961681326], ["username", "billy_21"], ["access_token", "3bce53b98a72abeff79bd5d01e3365d7"], ["uuid", "fbd00187-86a8-4c26-b16d-4dcb7facd06f"], ["support_identifier", "cs_2f562ecf"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:15.175960"], ["updated_at", "2018-10-16 17:23:15.175960"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -303866582 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dc49c78f-46ea-48f1-a837-aaababcbd9f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_55c3f994' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -303866582], ["username", "billy_22"], ["access_token", "01639e491703c4772262f4cadfe25078"], ["uuid", "dc49c78f-46ea-48f1-a837-aaababcbd9f8"], ["support_identifier", "cs_55c3f994"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:15.180173"], ["updated_at", "2018-10-16 17:23:15.180173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1646021782 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f0472cb-cb37-4f8a-a136-43ce34ee97d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b1a5db0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1646021782], ["username", "billy_23"], ["access_token", "22f874d00c76ea14b4a22e3a9a84fc02"], ["uuid", "5f0472cb-cb37-4f8a-a136-43ce34ee97d1"], ["support_identifier", "cs_1b1a5db0"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:15.184332"], ["updated_at", "2018-10-16 17:23:15.184332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -14344560 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc191a05-7790-4018-82d7-b0c7f6cd59e4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1861d199' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -14344560], ["username", "billy_24"], ["access_token", "7da1d5785abf4573f95c63e758e0c335"], ["uuid", "fc191a05-7790-4018-82d7-b0c7f6cd59e4"], ["support_identifier", "cs_1861d199"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:15.188970"], ["updated_at", "2018-10-16 17:23:15.188970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108670480 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d2e9c1d-94dc-498e-9d74-eb52cb97fe0e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ba253949' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2108670480], ["username", "billy_25"], ["access_token", "d3395d3d2210b0b05af3a1774b6c24e1"], ["uuid", "3d2e9c1d-94dc-498e-9d74-eb52cb97fe0e"], ["support_identifier", "cs_ba253949"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:15.193202"], ["updated_at", "2018-10-16 17:23:15.193202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1759841614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2d4c17be-3d6a-4bf9-86fa-1285e2489b04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4ca6a527' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1759841614], ["username", "billy_26"], ["access_token", "0f3792aa4b08f4bed6b0b0b95816ab51"], ["uuid", "2d4c17be-3d6a-4bf9-86fa-1285e2489b04"], ["support_identifier", "cs_4ca6a527"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:15.197414"], ["updated_at", "2018-10-16 17:23:15.197414"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -749899673 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '155a2e9a-ea8e-4ec4-ab8c-7d41ef8e274b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e5640ff6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -749899673], ["username", "billy_27"], ["access_token", "8a6cf198280574061ce653659fb15f05"], ["uuid", "155a2e9a-ea8e-4ec4-ab8c-7d41ef8e274b"], ["support_identifier", "cs_e5640ff6"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:15.201546"], ["updated_at", "2018-10-16 17:23:15.201546"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -459038481 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd74a6b3-ee5a-4c4d-9c18-060ff5ef27ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_43e9ee21' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -459038481], ["username", "billy_28"], ["access_token", "035ebdfb3b0c44451f3193349645ed63"], ["uuid", "fd74a6b3-ee5a-4c4d-9c18-060ff5ef27ab"], ["support_identifier", "cs_43e9ee21"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:15.209133"], ["updated_at", "2018-10-16 17:23:15.209133"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -781495481 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b24ab558-5436-48e1-af09-dfd95f445d70' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_55b0a0c7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -781495481], ["username", "billy_29"], ["access_token", "ace790dadb3b83fe3b497c86c7ec72fa"], ["uuid", "b24ab558-5436-48e1-af09-dfd95f445d70"], ["support_identifier", "cs_55b0a0c7"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:15.213646"], ["updated_at", "2018-10-16 17:23:15.213646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1809989925 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ed03cb1d-eb15-415d-8c00-14f47d03b662' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_142c0969' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1809989925], ["username", "billy_30"], ["access_token", "9b024335f80ca0a68bcd5fcd009d8f84"], ["uuid", "ed03cb1d-eb15-415d-8c00-14f47d03b662"], ["support_identifier", "cs_142c0969"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:15.217940"], ["updated_at", "2018-10-16 17:23:15.217940"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1142157972 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd112b03a-a0d3-4164-9148-ffe9859a7f35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63844e6c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1142157972], ["username", "billy_31"], ["access_token", "d29cf60bf2efae33c1289a77756b4d82"], ["uuid", "d112b03a-a0d3-4164-9148-ffe9859a7f35"], ["support_identifier", "cs_63844e6c"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:15.222635"], ["updated_at", "2018-10-16 17:23:15.222635"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1600267484 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce5ac7a9-f8a5-43d8-b768-0b8dbaa680fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_714a8a44' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1600267484], ["username", "billy_32"], ["access_token", "e45ed1bcb35b1929a793e467ba1c7771"], ["uuid", "ce5ac7a9-f8a5-43d8-b768-0b8dbaa680fb"], ["support_identifier", "cs_714a8a44"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:15.226855"], ["updated_at", "2018-10-16 17:23:15.226855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1068707669 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '230c2e55-699a-4897-9d68-714fa5988dbf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3801ad24' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1068707669], ["username", "billy_33"], ["access_token", "0c9c4f185c3946d2afc7b473ed6b12b3"], ["uuid", "230c2e55-699a-4897-9d68-714fa5988dbf"], ["support_identifier", "cs_3801ad24"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:15.230854"], ["updated_at", "2018-10-16 17:23:15.230854"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1146229342 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e1b9481d-5c37-40f9-8dc7-5758645fea37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5375266c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1146229342], ["username", "billy_34"], ["access_token", "b03bf3c69cb481fa67e8fbd30941b293"], ["uuid", "e1b9481d-5c37-40f9-8dc7-5758645fea37"], ["support_identifier", "cs_5375266c"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:15.234971"], ["updated_at", "2018-10-16 17:23:15.234971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1548235944 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cba57a1f-b64b-45e5-b826-a695b06c46b0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_07474b18' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1548235944], ["username", "billy_35"], ["access_token", "4ecec2314922c6b58ec6141cfd9140f8"], ["uuid", "cba57a1f-b64b-45e5-b826-a695b06c46b0"], ["support_identifier", "cs_07474b18"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:15.239526"], ["updated_at", "2018-10-16 17:23:15.239526"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1716614864 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '52f6b8e3-8b3a-465a-9a39-99e0450c316c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a08a94e3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1716614864], ["username", "billy_36"], ["access_token", "1e0df970f27c747547c8c6d3fab8b51f"], ["uuid", "52f6b8e3-8b3a-465a-9a39-99e0450c316c"], ["support_identifier", "cs_a08a94e3"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:15.243857"], ["updated_at", "2018-10-16 17:23:15.243857"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -903240342 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24970cd2-7133-4ed1-adff-5a482c627578' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6fa9861' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -903240342], ["username", "billy_37"], ["access_token", "b34dc9bc643997b6eca964b6baf7fac6"], ["uuid", "24970cd2-7133-4ed1-adff-5a482c627578"], ["support_identifier", "cs_f6fa9861"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:15.247943"], ["updated_at", "2018-10-16 17:23:15.247943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -68517863 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20e25736-df52-4948-9b74-dce794e2a1a5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4c68fbd8' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -68517863], ["username", "billy_38"], ["access_token", "7086b717074c7e8b2c98f7eef4a1556c"], ["uuid", "20e25736-df52-4948-9b74-dce794e2a1a5"], ["support_identifier", "cs_4c68fbd8"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:15.252008"], ["updated_at", "2018-10-16 17:23:15.252008"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -117108074 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '72e0ce14-93e9-4e43-8492-c4ce43729dce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e19de965' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -117108074], ["username", "billy_39"], ["access_token", "4d28740f32fe6f68af5c584a60e9abe2"], ["uuid", "72e0ce14-93e9-4e43-8492-c4ce43729dce"], ["support_identifier", "cs_e19de965"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:15.259546"], ["updated_at", "2018-10-16 17:23:15.259546"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -699577005 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a021f40b-c97a-424b-9eee-d54183341429' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0938f01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -699577005], ["username", "billy_40"], ["access_token", "b16ba6bccedae2abc02b0d8a905979c9"], ["uuid", "a021f40b-c97a-424b-9eee-d54183341429"], ["support_identifier", "cs_a0938f01"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:15.263781"], ["updated_at", "2018-10-16 17:23:15.263781"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1923606663 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '819bee83-5627-4e19-bfce-d188baef3cca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25ca9531' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1923606663], ["username", "billy_41"], ["access_token", "718616f6ef46fd72eba3ce7cf2f6f27f"], ["uuid", "819bee83-5627-4e19-bfce-d188baef3cca"], ["support_identifier", "cs_25ca9531"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:15.267968"], ["updated_at", "2018-10-16 17:23:15.267968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1309844547 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dfde0d5f-f56b-4fc4-bdd6-822f0cfa9a72' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ad94bf03' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1309844547], ["username", "billy_42"], ["access_token", "b9343629c6e1be3b826617c590150649"], ["uuid", "dfde0d5f-f56b-4fc4-bdd6-822f0cfa9a72"], ["support_identifier", "cs_ad94bf03"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:15.272806"], ["updated_at", "2018-10-16 17:23:15.272806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -729219645 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '52e81f05-044c-412b-967c-9682a40fc8b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d56698f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -729219645], ["username", "billy_43"], ["access_token", "ee3a21599883d17a65a697c560b586ab"], ["uuid", "52e81f05-044c-412b-967c-9682a40fc8b2"], ["support_identifier", "cs_7d56698f"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:15.277045"], ["updated_at", "2018-10-16 17:23:15.277045"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2144673778 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d6a3095-5dc8-4dd7-8807-c1f0419f32ac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5360b04' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2144673778], ["username", "billy_44"], ["access_token", "feaf1ba73fc9801ad9da3dd5abeaddc3"], ["uuid", "6d6a3095-5dc8-4dd7-8807-c1f0419f32ac"], ["support_identifier", "cs_b5360b04"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:15.281421"], ["updated_at", "2018-10-16 17:23:15.281421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1274839608 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '79095545-c004-4d15-9a5b-177256b3d453' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f00a83e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1274839608], ["username", "billy_45"], ["access_token", "20fa208bc2b5daec8abe7d4c3b542063"], ["uuid", "79095545-c004-4d15-9a5b-177256b3d453"], ["support_identifier", "cs_9f00a83e"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:15.285672"], ["updated_at", "2018-10-16 17:23:15.285672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -964409385 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b31bd468-3c7a-4e6c-bf32-9f4a7d9efa64' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bb688eb9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -964409385], ["username", "jstrav"], ["access_token", "6f05268acdb2c0aff7e4e37f7dcc3b2e"], ["uuid", "b31bd468-3c7a-4e6c-bf32-9f4a7d9efa64"], ["support_identifier", "cs_bb688eb9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:15.295606"], ["updated_at", "2018-10-16 17:23:15.295606"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1772241344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5abf85d5-ecd0-428a-bfe2-acc3bb75325a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ca9f843' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1772241344], ["username", "mary"], ["access_token", "1154675e4363d10a767b0627ca2a5065"], ["uuid", "5abf85d5-ecd0-428a-bfe2-acc3bb75325a"], ["support_identifier", "cs_8ca9f843"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.299965"], ["updated_at", "2018-10-16 17:23:15.299965"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1009361686 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '717054ce-afb2-4b78-86e9-7075ed25bc7a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_587b601d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1009361686], ["username", "jstead"], ["access_token", "e4a0433baedd59716e441d7e9553225b"], ["uuid", "717054ce-afb2-4b78-86e9-7075ed25bc7a"], ["support_identifier", "cs_587b601d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.307227"], ["updated_at", "2018-10-16 17:23:15.307227"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -765887842 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '06cb3af9-ca92-48d0-9b71-e21c6a670260' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1dc8764e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -765887842], ["username", "bigbear"], ["access_token", "21f476ff645972cc3445ce7dd94f63ec"], ["uuid", "06cb3af9-ca92-48d0-9b71-e21c6a670260"], ["support_identifier", "cs_1dc8764e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.311755"], ["updated_at", "2018-10-16 17:23:15.311755"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -946376136 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9456f316-ab69-4297-94c8-5702a10eb396' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce8ee380' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -946376136], ["username", "billy_00"], ["access_token", "407122a1171557ee49b113db00df528c"], ["uuid", "9456f316-ab69-4297-94c8-5702a10eb396"], ["support_identifier", "cs_ce8ee380"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:15.315826"], ["updated_at", "2018-10-16 17:23:15.315826"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1615791828 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e1977bbe-76eb-44e9-b9d7-b5b0b1e00f06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a6a98e3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1615791828], ["username", "billy_01"], ["access_token", "67d0125ae9da3d05b5cbc2c7108e328c"], ["uuid", "e1977bbe-76eb-44e9-b9d7-b5b0b1e00f06"], ["support_identifier", "cs_7a6a98e3"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:15.320478"], ["updated_at", "2018-10-16 17:23:15.320478"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1119907273 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a51e68d8-d952-4bed-a22c-3b2aea36ce0e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9886a8d4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1119907273], ["username", "billy_02"], ["access_token", "b3796bfe6fc6783460f63ac8d5a2c5fa"], ["uuid", "a51e68d8-d952-4bed-a22c-3b2aea36ce0e"], ["support_identifier", "cs_9886a8d4"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:15.324712"], ["updated_at", "2018-10-16 17:23:15.324712"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1187623934 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7e8af6c9-318d-4d60-9623-7bee82880304' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e1877bd3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1187623934], ["username", "billy_03"], ["access_token", "ab255d17904a1f8db836641aeb827fe4"], ["uuid", "7e8af6c9-318d-4d60-9623-7bee82880304"], ["support_identifier", "cs_e1877bd3"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:15.328975"], ["updated_at", "2018-10-16 17:23:15.328975"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -299543023 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8e0c469-57ab-4662-85a1-dc11efd044e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff93e46f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -299543023], ["username", "billy_04"], ["access_token", "1868d25eb07552015d70560d9a32af8b"], ["uuid", "b8e0c469-57ab-4662-85a1-dc11efd044e6"], ["support_identifier", "cs_ff93e46f"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:15.333067"], ["updated_at", "2018-10-16 17:23:15.333067"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1264444121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30990a57-b62c-40ad-89be-6e64c8295b61' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38422279' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1264444121], ["username", "billy_05"], ["access_token", "ffc6938af2f4975aba2a5249adf6153c"], ["uuid", "30990a57-b62c-40ad-89be-6e64c8295b61"], ["support_identifier", "cs_38422279"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:15.337765"], ["updated_at", "2018-10-16 17:23:15.337765"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -363068879 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c464b83c-a77f-4953-aeec-79947c1338f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d41569b4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -363068879], ["username", "billy_06"], ["access_token", "eda59857530efbd1ffe9449ef8d8cfae"], ["uuid", "c464b83c-a77f-4953-aeec-79947c1338f8"], ["support_identifier", "cs_d41569b4"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:15.342010"], ["updated_at", "2018-10-16 17:23:15.342010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -746301606 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3e37d710-4dce-452d-8a3f-6548223cde2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ccbe475a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -746301606], ["username", "billy_07"], ["access_token", "b7ecc7a55b7f88a907955a331f152e40"], ["uuid", "3e37d710-4dce-452d-8a3f-6548223cde2d"], ["support_identifier", "cs_ccbe475a"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:15.346010"], ["updated_at", "2018-10-16 17:23:15.346010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1258837469 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd31c1722-a139-44df-af5f-d580e5d34fc6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4df52fd5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1258837469], ["username", "billy_08"], ["access_token", "39646001ce6c0775e1fc713fc2d9f5d4"], ["uuid", "d31c1722-a139-44df-af5f-d580e5d34fc6"], ["support_identifier", "cs_4df52fd5"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:15.350183"], ["updated_at", "2018-10-16 17:23:15.350183"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -422231723 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdb486a5-a976-47f9-8163-53510de534df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b885b780' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -422231723], ["username", "billy_09"], ["access_token", "6b89853622c04445aeae214961a1ecf1"], ["uuid", "fdb486a5-a976-47f9-8163-53510de534df"], ["support_identifier", "cs_b885b780"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:15.354732"], ["updated_at", "2018-10-16 17:23:15.354732"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -642416355 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd59ef55d-c41c-4f19-87e8-007232f74a64' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_31d0d016' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -642416355], ["username", "billy_10"], ["access_token", "273c3e97369caef190265439d1c6895b"], ["uuid", "d59ef55d-c41c-4f19-87e8-007232f74a64"], ["support_identifier", "cs_31d0d016"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:15.358862"], ["updated_at", "2018-10-16 17:23:15.358862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -417142214 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '906466c5-a657-40b8-ac64-c5f2c19380f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cf6ac65' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -417142214], ["username", "billy_11"], ["access_token", "eb2f531048883e2f2d4019f53f162a3d"], ["uuid", "906466c5-a657-40b8-ac64-c5f2c19380f2"], ["support_identifier", "cs_3cf6ac65"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:15.362933"], ["updated_at", "2018-10-16 17:23:15.362933"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1955972024 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dff28cbc-8cc4-424d-b693-884b2d12afac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e4dd5ea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1955972024], ["username", "billy_12"], ["access_token", "fa5d6de67d61ccb3dbca5a6ed8ccc800"], ["uuid", "dff28cbc-8cc4-424d-b693-884b2d12afac"], ["support_identifier", "cs_4e4dd5ea"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:15.367093"], ["updated_at", "2018-10-16 17:23:15.367093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1123356513 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '481d1db8-928d-4504-b77a-59cab5a14da3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fea62051' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1123356513], ["username", "billy_13"], ["access_token", "f6ed72c5d6672f18df1631012e7d989a"], ["uuid", "481d1db8-928d-4504-b77a-59cab5a14da3"], ["support_identifier", "cs_fea62051"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:15.373383"], ["updated_at", "2018-10-16 17:23:15.373383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -700835453 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e57e19c8-7e9c-4dec-9b09-cebe06846eec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4c01636' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -700835453], ["username", "billy_14"], ["access_token", "8c203c0667a689c4f5c68da82240870b"], ["uuid", "e57e19c8-7e9c-4dec-9b09-cebe06846eec"], ["support_identifier", "cs_b4c01636"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:15.378016"], ["updated_at", "2018-10-16 17:23:15.378016"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -489771350 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dbe1d2a0-87a2-45b5-b534-f9a0945b4849' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8125c484' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -489771350], ["username", "billy_15"], ["access_token", "87c37e350f3b24e74b2611b4761485d5"], ["uuid", "dbe1d2a0-87a2-45b5-b534-f9a0945b4849"], ["support_identifier", "cs_8125c484"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:15.382302"], ["updated_at", "2018-10-16 17:23:15.382302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1196633371 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a5738a41-7953-4a55-8319-566f234100c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4712c898' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1196633371], ["username", "billy_16"], ["access_token", "1206ce8c31f998a17a879ec653a74ed9"], ["uuid", "a5738a41-7953-4a55-8319-566f234100c9"], ["support_identifier", "cs_4712c898"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:15.389902"], ["updated_at", "2018-10-16 17:23:15.389902"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -940225353 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d98ecd9-2745-46cd-bdfa-7311b7a7547e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_510e670e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -940225353], ["username", "billy_17"], ["access_token", "836ee823e2f6ac8426b443476541cbe2"], ["uuid", "7d98ecd9-2745-46cd-bdfa-7311b7a7547e"], ["support_identifier", "cs_510e670e"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:15.394159"], ["updated_at", "2018-10-16 17:23:15.394159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1087125225 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a266668-90ef-4257-acd8-e9ca3925a488' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d4bd903' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1087125225], ["username", "billy_18"], ["access_token", "b1b15d0842591659082a29d1604a65bf"], ["uuid", "5a266668-90ef-4257-acd8-e9ca3925a488"], ["support_identifier", "cs_5d4bd903"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:15.398287"], ["updated_at", "2018-10-16 17:23:15.398287"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1519850324 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcd64de2-4cdf-4289-96a3-a74531d500cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e36132db' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1519850324], ["username", "billy_19"], ["access_token", "8b8656dd60625db4e86b33bd4046b9d7"], ["uuid", "dcd64de2-4cdf-4289-96a3-a74531d500cd"], ["support_identifier", "cs_e36132db"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:15.402505"], ["updated_at", "2018-10-16 17:23:15.402505"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1121878406 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0860a5ee-267f-4c05-b4e0-9c3b1f08939f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2965cca' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1121878406], ["username", "billy_20"], ["access_token", "520462dce57204e7bb2fc7c5c15ebd6e"], ["uuid", "0860a5ee-267f-4c05-b4e0-9c3b1f08939f"], ["support_identifier", "cs_a2965cca"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:15.410364"], ["updated_at", "2018-10-16 17:23:15.410364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1795713026 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8795bb32-f86a-4968-8783-768f99da12c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ab8da1ad' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1795713026], ["username", "billy_21"], ["access_token", "c0370d4ef20143add13f1f3582d20230"], ["uuid", "8795bb32-f86a-4968-8783-768f99da12c8"], ["support_identifier", "cs_ab8da1ad"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:15.414639"], ["updated_at", "2018-10-16 17:23:15.414639"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -27590482 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6008571-82a4-4461-9d18-95e3c2b18758' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f26b9af9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -27590482], ["username", "billy_22"], ["access_token", "3857376fc1ef6a9b6584be8a82a740a9"], ["uuid", "d6008571-82a4-4461-9d18-95e3c2b18758"], ["support_identifier", "cs_f26b9af9"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:15.418863"], ["updated_at", "2018-10-16 17:23:15.418863"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1232651917 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bdf41714-ccce-4ec0-a515-446ca1af0106' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f4a0b240' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1232651917], ["username", "billy_23"], ["access_token", "4fd1344eee53ee8b0025f77cf9975998"], ["uuid", "bdf41714-ccce-4ec0-a515-446ca1af0106"], ["support_identifier", "cs_f4a0b240"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:15.423760"], ["updated_at", "2018-10-16 17:23:15.423760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2088288167 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea4485fe-1769-48dc-9562-ee498d17e972' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25104d19' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2088288167], ["username", "billy_24"], ["access_token", "afbb84faf0b44b970c777f21882dbd1a"], ["uuid", "ea4485fe-1769-48dc-9562-ee498d17e972"], ["support_identifier", "cs_25104d19"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:15.427933"], ["updated_at", "2018-10-16 17:23:15.427933"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -279607058 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11c6c12f-9475-4c04-9340-a61248af16f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c632084' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -279607058], ["username", "billy_25"], ["access_token", "f5b4d7ff7d5600624856a5426243d55e"], ["uuid", "11c6c12f-9475-4c04-9340-a61248af16f5"], ["support_identifier", "cs_2c632084"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:15.431964"], ["updated_at", "2018-10-16 17:23:15.431964"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1591202925 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b82770d-9e21-43ce-b870-14cfc5169e65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b7e94fa3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1591202925], ["username", "billy_26"], ["access_token", "f59719a4481dd1a5988b2d75e54f6f86"], ["uuid", "3b82770d-9e21-43ce-b870-14cfc5169e65"], ["support_identifier", "cs_b7e94fa3"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:15.436158"], ["updated_at", "2018-10-16 17:23:15.436158"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1009518888 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b647b2e-8691-4151-9e54-8b0ad3bb8a11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4a6aaee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1009518888], ["username", "billy_27"], ["access_token", "bbd4864c8c740fa113fdbf0cf25ec770"], ["uuid", "7b647b2e-8691-4151-9e54-8b0ad3bb8a11"], ["support_identifier", "cs_e4a6aaee"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:15.440466"], ["updated_at", "2018-10-16 17:23:15.440466"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -266942348 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a834a744-6b0e-42c2-81f9-79f884dfea85' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_53a7384f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -266942348], ["username", "billy_28"], ["access_token", "6e0e3986722b236de1d74e896a5fb4bd"], ["uuid", "a834a744-6b0e-42c2-81f9-79f884dfea85"], ["support_identifier", "cs_53a7384f"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:15.444645"], ["updated_at", "2018-10-16 17:23:15.444645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830623227 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aeda28ef-f072-45f3-83c1-44c52785f748' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9436b09b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1830623227], ["username", "billy_29"], ["access_token", "058d424b8d56a53b881619e9f79be1cc"], ["uuid", "aeda28ef-f072-45f3-83c1-44c52785f748"], ["support_identifier", "cs_9436b09b"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:15.448761"], ["updated_at", "2018-10-16 17:23:15.448761"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2117262297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8424c0ca-2620-452c-8324-fb7b9fa26748' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_129a8e25' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2117262297], ["username", "billy_30"], ["access_token", "b8eb6442f84011882d3536d411b5d0b4"], ["uuid", "8424c0ca-2620-452c-8324-fb7b9fa26748"], ["support_identifier", "cs_129a8e25"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:15.453818"], ["updated_at", "2018-10-16 17:23:15.453818"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1515957580 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f3d8410d-0d63-49a6-a2c2-46c33b658663' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1d0cd9e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1515957580], ["username", "billy_31"], ["access_token", "fe6aefe573a04fcd747d32ba97500e6c"], ["uuid", "f3d8410d-0d63-49a6-a2c2-46c33b658663"], ["support_identifier", "cs_b1d0cd9e"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:15.460390"], ["updated_at", "2018-10-16 17:23:15.460390"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1234705881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '70a6d06f-96d4-4535-819f-fb2e9cc9736f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b90e82d0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1234705881], ["username", "billy_32"], ["access_token", "963d2ead1873834806bd6ceb8b31166d"], ["uuid", "70a6d06f-96d4-4535-819f-fb2e9cc9736f"], ["support_identifier", "cs_b90e82d0"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:15.464894"], ["updated_at", "2018-10-16 17:23:15.464894"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2052534056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '170dd7dd-2aef-4a07-894d-d565a60f6084' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9326071b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2052534056], ["username", "billy_33"], ["access_token", "c44b0b5c6eee98464f68c286422dfd73"], ["uuid", "170dd7dd-2aef-4a07-894d-d565a60f6084"], ["support_identifier", "cs_9326071b"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:15.469173"], ["updated_at", "2018-10-16 17:23:15.469173"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -637833826 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'da8faf23-748f-4752-8003-c17b36dd612a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a41d3400' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -637833826], ["username", "billy_34"], ["access_token", "e01e0aeb848c46cd53e78631cb3d9e9f"], ["uuid", "da8faf23-748f-4752-8003-c17b36dd612a"], ["support_identifier", "cs_a41d3400"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:15.473934"], ["updated_at", "2018-10-16 17:23:15.473934"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -258820607 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c096a787-dde3-4071-b13e-296dfeb5c76e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25d05e94' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -258820607], ["username", "billy_35"], ["access_token", "85f6401398d21801f8470bfae58fbf81"], ["uuid", "c096a787-dde3-4071-b13e-296dfeb5c76e"], ["support_identifier", "cs_25d05e94"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:15.478465"], ["updated_at", "2018-10-16 17:23:15.478465"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1055042413 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f9b57126-10a3-458c-8eb2-746e23ed4252' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85ba5b1f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1055042413], ["username", "billy_36"], ["access_token", "fa9d0bc40947d387b9a2aba479ab04e6"], ["uuid", "f9b57126-10a3-458c-8eb2-746e23ed4252"], ["support_identifier", "cs_85ba5b1f"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:15.482536"], ["updated_at", "2018-10-16 17:23:15.482536"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1144924604 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '95d12003-0672-4e39-9295-289e08600a71' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_279d4aec' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1144924604], ["username", "billy_37"], ["access_token", "5eb083f2bb360293e8695f2e8e26ee9c"], ["uuid", "95d12003-0672-4e39-9295-289e08600a71"], ["support_identifier", "cs_279d4aec"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:15.486923"], ["updated_at", "2018-10-16 17:23:15.486923"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -668956890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0dc9554-7287-435c-9d2b-0479f6d1c8d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_acb4bb3a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -668956890], ["username", "billy_38"], ["access_token", "2917a5fb6094deedbc75d595782412b2"], ["uuid", "c0dc9554-7287-435c-9d2b-0479f6d1c8d7"], ["support_identifier", "cs_acb4bb3a"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:15.494400"], ["updated_at", "2018-10-16 17:23:15.494400"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -982147582 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6e1116d-39c7-41cd-a135-28edfdc70dd9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e3b8622' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -982147582], ["username", "billy_39"], ["access_token", "aa844c56329d1b71550d4c99056425ae"], ["uuid", "b6e1116d-39c7-41cd-a135-28edfdc70dd9"], ["support_identifier", "cs_0e3b8622"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:15.498750"], ["updated_at", "2018-10-16 17:23:15.498750"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1934240955 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9645ec3d-4043-4f70-ae54-aab17f9d8daa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_41e31a53' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1934240955], ["username", "billy_40"], ["access_token", "ecae06ea93106715709e6ff4f34b9e29"], ["uuid", "9645ec3d-4043-4f70-ae54-aab17f9d8daa"], ["support_identifier", "cs_41e31a53"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:15.503127"], ["updated_at", "2018-10-16 17:23:15.503127"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2134696197 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dfd923e6-3edc-49b6-a5b2-ef08e1912d8e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_755fad11' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2134696197], ["username", "billy_41"], ["access_token", "e078127cc0c66f8c8599c4e884a89819"], ["uuid", "dfd923e6-3edc-49b6-a5b2-ef08e1912d8e"], ["support_identifier", "cs_755fad11"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:15.507773"], ["updated_at", "2018-10-16 17:23:15.507773"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -244021305 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8e7a2d74-d7d1-44bd-b4ba-2622d3520613' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1ea68734' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -244021305], ["username", "billy_42"], ["access_token", "e7133bdc0b3735fb8f77ee89c892ae5b"], ["uuid", "8e7a2d74-d7d1-44bd-b4ba-2622d3520613"], ["support_identifier", "cs_1ea68734"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:15.511817"], ["updated_at", "2018-10-16 17:23:15.511817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309027160 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c83406e0-4411-413d-a2ef-52fdadd64925' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_256fb475' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -309027160], ["username", "billy_43"], ["access_token", "0dc288f2b4b91c9f9dad36e6938ca9c1"], ["uuid", "c83406e0-4411-413d-a2ef-52fdadd64925"], ["support_identifier", "cs_256fb475"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:15.515843"], ["updated_at", "2018-10-16 17:23:15.515843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -342244756 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a0ec19a-a2a9-4572-9768-6dae91478904' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87a8bf00' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -342244756], ["username", "billy_44"], ["access_token", "060a7ba2afe175cf470963bddea9b1e0"], ["uuid", "5a0ec19a-a2a9-4572-9768-6dae91478904"], ["support_identifier", "cs_87a8bf00"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:15.520287"], ["updated_at", "2018-10-16 17:23:15.520287"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -860552352 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcaacd0e-f913-49e2-bb50-477ce0c7548e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9092cf62' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -860552352], ["username", "billy_45"], ["access_token", "79765ac628430307b4bc14e3df07fd25"], ["uuid", "dcaacd0e-f913-49e2-bb50-477ce0c7548e"], ["support_identifier", "cs_9092cf62"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:15.524621"], ["updated_at", "2018-10-16 17:23:15.524621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1843543562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7675b7c6-01bb-4f14-a2dc-b70e35405469' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a6e6ba89' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1843543562], ["username", "jstrav"], ["access_token", "9aed6af7f045290519ca165ec953911f"], ["uuid", "7675b7c6-01bb-4f14-a2dc-b70e35405469"], ["support_identifier", "cs_a6e6ba89"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:15.533188"], ["updated_at", "2018-10-16 17:23:15.533188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -229616114 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4d0d4e3-0d29-4633-9bcc-0167d08cfc40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f039d17e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -229616114], ["username", "mary"], ["access_token", "5c1fafba16ef08874cee43eb2929be98"], ["uuid", "e4d0d4e3-0d29-4633-9bcc-0167d08cfc40"], ["support_identifier", "cs_f039d17e"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.541680"], ["updated_at", "2018-10-16 17:23:15.541680"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -790355993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '81b24a8b-069b-43f4-9b0a-cd65a4cf19bc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9d355221' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -790355993], ["username", "jstead"], ["access_token", "e6fd5df7724420457d7d96ca09d40162"], ["uuid", "81b24a8b-069b-43f4-9b0a-cd65a4cf19bc"], ["support_identifier", "cs_9d355221"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.546759"], ["updated_at", "2018-10-16 17:23:15.546759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1371613622 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08e8eee1-ebea-410f-b08e-1ade52556a1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d869971a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1371613622], ["username", "bigbear"], ["access_token", "e221e570ec46d388caf60bb1999f863c"], ["uuid", "08e8eee1-ebea-410f-b08e-1ade52556a1d"], ["support_identifier", "cs_d869971a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.551514"], ["updated_at", "2018-10-16 17:23:15.551514"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -504529116 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2ddad56-8a29-453c-9639-7508bd0488af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_93536b01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -504529116], ["username", "billy_00"], ["access_token", "ff9fef23c0c3c55948e65db836e108f1"], ["uuid", "c2ddad56-8a29-453c-9639-7508bd0488af"], ["support_identifier", "cs_93536b01"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:15.556220"], ["updated_at", "2018-10-16 17:23:15.556220"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -866587780 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '03a0c4e8-8998-4103-ac1c-1c09d4241d18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a13a7cd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -866587780], ["username", "billy_01"], ["access_token", "79377951fa462f548cfaf74d0106092c"], ["uuid", "03a0c4e8-8998-4103-ac1c-1c09d4241d18"], ["support_identifier", "cs_6a13a7cd"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:15.560608"], ["updated_at", "2018-10-16 17:23:15.560608"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -322017866 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'baa403fb-5c90-48b0-bda2-0488d62e8e96' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbbc5697' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -322017866], ["username", "billy_02"], ["access_token", "1565bc939012c22db9dd8c8407c3ef3c"], ["uuid", "baa403fb-5c90-48b0-bda2-0488d62e8e96"], ["support_identifier", "cs_fbbc5697"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:15.564828"], ["updated_at", "2018-10-16 17:23:15.564828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -308286460 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6001a69-0c05-4200-a3e8-0a815718b369' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a224bc8c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -308286460], ["username", "billy_03"], ["access_token", "abdcfd5898f9fdefc05df8576485e70a"], ["uuid", "c6001a69-0c05-4200-a3e8-0a815718b369"], ["support_identifier", "cs_a224bc8c"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:15.569354"], ["updated_at", "2018-10-16 17:23:15.569354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -261753406 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4cfb926b-13be-434c-a470-0ec7da5cb8ed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_73b2adfa' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -261753406], ["username", "billy_04"], ["access_token", "4b85b765c988467a8a19811b28ca3add"], ["uuid", "4cfb926b-13be-434c-a470-0ec7da5cb8ed"], ["support_identifier", "cs_73b2adfa"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:15.574005"], ["updated_at", "2018-10-16 17:23:15.574005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1711286219 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '541ffbcc-e63a-4055-80e7-e9421caeddf0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d85e0bc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1711286219], ["username", "billy_05"], ["access_token", "d418f0a408afefb4600f2a1ecb93b746"], ["uuid", "541ffbcc-e63a-4055-80e7-e9421caeddf0"], ["support_identifier", "cs_d85e0bc8"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:15.578722"], ["updated_at", "2018-10-16 17:23:15.578722"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1222661365 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d37274b-b189-436f-850f-dd0d4d9ae532' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1958a896' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1222661365], ["username", "billy_06"], ["access_token", "4a7a6ade049fc01e47dea6f7b3f55067"], ["uuid", "7d37274b-b189-436f-850f-dd0d4d9ae532"], ["support_identifier", "cs_1958a896"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:15.582934"], ["updated_at", "2018-10-16 17:23:15.582934"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -681099279 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dce1ffb9-4a9b-4e62-b3ff-1d1d57129592' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22ef7d0f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -681099279], ["username", "billy_07"], ["access_token", "75172dd4949fa76c9f30feb15f86c1ee"], ["uuid", "dce1ffb9-4a9b-4e62-b3ff-1d1d57129592"], ["support_identifier", "cs_22ef7d0f"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:15.587802"], ["updated_at", "2018-10-16 17:23:15.587802"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1222263243 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c115ab0-11ab-4330-9d27-1b076b738ae0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ec23fe6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1222263243], ["username", "billy_08"], ["access_token", "110703c17b678e6346889e50b0860759"], ["uuid", "7c115ab0-11ab-4330-9d27-1b076b738ae0"], ["support_identifier", "cs_2ec23fe6"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:15.591978"], ["updated_at", "2018-10-16 17:23:15.591978"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -813916338 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ac8c0f2-c53b-4f95-b7ac-8842f1a527b8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_64d566c4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -813916338], ["username", "billy_09"], ["access_token", "b3c35a039ca67af2cbada31d380a087f"], ["uuid", "8ac8c0f2-c53b-4f95-b7ac-8842f1a527b8"], ["support_identifier", "cs_64d566c4"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:15.596018"], ["updated_at", "2018-10-16 17:23:15.596018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1619709752 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '94eedacd-d39b-42bf-ab89-8cfaa54228e4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_91215943' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1619709752], ["username", "billy_10"], ["access_token", "4b1f2f5555f1078d9b5b7914bb93af32"], ["uuid", "94eedacd-d39b-42bf-ab89-8cfaa54228e4"], ["support_identifier", "cs_91215943"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:15.600554"], ["updated_at", "2018-10-16 17:23:15.600554"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -4245016 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ead1ca2-8d66-494f-bc42-64d06433267f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d00d7b2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -4245016], ["username", "billy_11"], ["access_token", "6ab2e888c82e8df1b02840871e078cf5"], ["uuid", "8ead1ca2-8d66-494f-bc42-64d06433267f"], ["support_identifier", "cs_3d00d7b2"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:15.608435"], ["updated_at", "2018-10-16 17:23:15.608435"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -841184774 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09ef4ab8-9d67-44e4-8625-df720d47c0d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_02dfd9eb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -841184774], ["username", "billy_12"], ["access_token", "7446f9673c6f5e9b01928fc53124d5a6"], ["uuid", "09ef4ab8-9d67-44e4-8625-df720d47c0d6"], ["support_identifier", "cs_02dfd9eb"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:15.612990"], ["updated_at", "2018-10-16 17:23:15.612990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -659604856 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3da663aa-aed8-452d-b5b7-5c8cf2cd3d42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e288fed7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -659604856], ["username", "billy_13"], ["access_token", "c4644fb32ab4b8b06b4a6ca625a49f81"], ["uuid", "3da663aa-aed8-452d-b5b7-5c8cf2cd3d42"], ["support_identifier", "cs_e288fed7"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:15.617023"], ["updated_at", "2018-10-16 17:23:15.617023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1347434729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc2d04b0-4c39-47c9-b40e-791b7e38386b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d3faa549' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1347434729], ["username", "billy_14"], ["access_token", "575b04c2067b121355a6d61e4ab7146e"], ["uuid", "bc2d04b0-4c39-47c9-b40e-791b7e38386b"], ["support_identifier", "cs_d3faa549"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:15.621698"], ["updated_at", "2018-10-16 17:23:15.621698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -692759954 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b129d033-a46c-4d51-ad98-e0e4ddd74ba0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2339f7ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -692759954], ["username", "billy_15"], ["access_token", "44e9a871ea3dd8b3b57ce06cd5e27f67"], ["uuid", "b129d033-a46c-4d51-ad98-e0e4ddd74ba0"], ["support_identifier", "cs_2339f7ef"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:15.625949"], ["updated_at", "2018-10-16 17:23:15.625949"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1406644193 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f76bb2eb-b9c2-43ce-a8c7-36d1eb9474bd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_14e67d49' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1406644193], ["username", "billy_16"], ["access_token", "dc4b92c45b4d90be00e47a15b4f914e6"], ["uuid", "f76bb2eb-b9c2-43ce-a8c7-36d1eb9474bd"], ["support_identifier", "cs_14e67d49"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:15.630208"], ["updated_at", "2018-10-16 17:23:15.630208"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830891696 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f2fd60b7-a79e-48d0-b5ee-87205b24d814' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d4eab8b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1830891696], ["username", "billy_17"], ["access_token", "d40abd0ad630e8bca1891b776c060339"], ["uuid", "f2fd60b7-a79e-48d0-b5ee-87205b24d814"], ["support_identifier", "cs_6d4eab8b"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:15.634448"], ["updated_at", "2018-10-16 17:23:15.634448"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1423497164 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd11a247b-7229-4342-b417-3a6536f0dfe3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_da3253b4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1423497164], ["username", "billy_18"], ["access_token", "6b935da66530e0b970b124e8741d0eef"], ["uuid", "d11a247b-7229-4342-b417-3a6536f0dfe3"], ["support_identifier", "cs_da3253b4"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:15.642384"], ["updated_at", "2018-10-16 17:23:15.642384"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -103067612 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ff14030-f38d-4287-9c6d-0a009b2b11e1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5ed0afcc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -103067612], ["username", "billy_19"], ["access_token", "d3d65c6ae37b5feaff3def0aeebdaf7d"], ["uuid", "8ff14030-f38d-4287-9c6d-0a009b2b11e1"], ["support_identifier", "cs_5ed0afcc"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:15.650036"], ["updated_at", "2018-10-16 17:23:15.650036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1621374698 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0933088b-bc24-4017-becb-2e72b8ed55f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d3cf4e4f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1621374698], ["username", "billy_20"], ["access_token", "af8c19226d9adf88f9be1b1f9f5545fa"], ["uuid", "0933088b-bc24-4017-becb-2e72b8ed55f4"], ["support_identifier", "cs_d3cf4e4f"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:15.654795"], ["updated_at", "2018-10-16 17:23:15.654795"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -916780387 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c53fb39-c10b-4e49-b748-8c900dce1fdb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_455908ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -916780387], ["username", "billy_21"], ["access_token", "3e1f0930c26b24d8312a30724aeb77e9"], ["uuid", "1c53fb39-c10b-4e49-b748-8c900dce1fdb"], ["support_identifier", "cs_455908ec"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:15.659117"], ["updated_at", "2018-10-16 17:23:15.659117"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -582668326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0ebe7fb4-4c1d-44ce-aba1-f582f8d8a009' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0f48ca1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -582668326], ["username", "billy_22"], ["access_token", "39755f67a5c31b029827468037064e07"], ["uuid", "0ebe7fb4-4c1d-44ce-aba1-f582f8d8a009"], ["support_identifier", "cs_a0f48ca1"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:15.663233"], ["updated_at", "2018-10-16 17:23:15.663233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -267474595 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14d2d00a-d936-4d8e-a929-3c49ac2b3600' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09fd3372' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -267474595], ["username", "billy_23"], ["access_token", "fcb2a2f7819456c435d0d908050b3612"], ["uuid", "14d2d00a-d936-4d8e-a929-3c49ac2b3600"], ["support_identifier", "cs_09fd3372"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:15.667197"], ["updated_at", "2018-10-16 17:23:15.667197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1198600889 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c19db14-3666-4b49-a5ff-fd159d1eff12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4fa9ad41' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1198600889], ["username", "billy_24"], ["access_token", "68108c63e28a061946004ffb5ed47a2c"], ["uuid", "1c19db14-3666-4b49-a5ff-fd159d1eff12"], ["support_identifier", "cs_4fa9ad41"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:15.674803"], ["updated_at", "2018-10-16 17:23:15.674803"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1366097114 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9a4612a-d975-4c65-abaf-50f00d6753ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_706724c3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1366097114], ["username", "billy_25"], ["access_token", "f51859d638f414b3b63121963d6596a6"], ["uuid", "e9a4612a-d975-4c65-abaf-50f00d6753ea"], ["support_identifier", "cs_706724c3"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:15.679456"], ["updated_at", "2018-10-16 17:23:15.679456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -563563272 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '32993375-56e9-4776-b1ad-f012234e722c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87566d33' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -563563272], ["username", "billy_26"], ["access_token", "d2bad5e5fd1b48c6956cd5fe09aae7ab"], ["uuid", "32993375-56e9-4776-b1ad-f012234e722c"], ["support_identifier", "cs_87566d33"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:15.683691"], ["updated_at", "2018-10-16 17:23:15.683691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005651032 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c3c55e1-57c0-46fa-8085-26d895efac7b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44bdf83d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1005651032], ["username", "billy_27"], ["access_token", "b353b876a3a778449ababc3dfa1c7d11"], ["uuid", "7c3c55e1-57c0-46fa-8085-26d895efac7b"], ["support_identifier", "cs_44bdf83d"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:15.688264"], ["updated_at", "2018-10-16 17:23:15.688264"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1176597629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5cac5690-b092-44a5-b060-6571d723138b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1289905' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1176597629], ["username", "billy_28"], ["access_token", "43d4bfb0d71a81d18bb10869959900a2"], ["uuid", "5cac5690-b092-44a5-b060-6571d723138b"], ["support_identifier", "cs_d1289905"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:15.692530"], ["updated_at", "2018-10-16 17:23:15.692530"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071546546 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '04b3af0a-580f-45f0-ae67-9b2330f417b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e64ef5ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1071546546], ["username", "billy_29"], ["access_token", "dcbde755ad57d79b8ec42300d60227ce"], ["uuid", "04b3af0a-580f-45f0-ae67-9b2330f417b2"], ["support_identifier", "cs_e64ef5ef"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:15.696545"], ["updated_at", "2018-10-16 17:23:15.696545"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -997502067 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f5cc376c-a8fe-47ba-9122-6028308e2aa3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_90b40564' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -997502067], ["username", "billy_30"], ["access_token", "35cd62d0f6b9167e9a1b9e1d314ba76b"], ["uuid", "f5cc376c-a8fe-47ba-9122-6028308e2aa3"], ["support_identifier", "cs_90b40564"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:15.700925"], ["updated_at", "2018-10-16 17:23:15.700925"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1006169610 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c693cfa1-e2d2-48a9-8995-9bf0c69fdae6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_42e11284' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1006169610], ["username", "billy_31"], ["access_token", "e4c6d1b005ef5a4a4cc98e48d444dc7e"], ["uuid", "c693cfa1-e2d2-48a9-8995-9bf0c69fdae6"], ["support_identifier", "cs_42e11284"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:15.705480"], ["updated_at", "2018-10-16 17:23:15.705480"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -94714508 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f7a0ae2-645d-4ace-848a-cfb6cd75959d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79c54275' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -94714508], ["username", "billy_32"], ["access_token", "349da7e06cf9f9492a230a6dffc1f5b0"], ["uuid", "5f7a0ae2-645d-4ace-848a-cfb6cd75959d"], ["support_identifier", "cs_79c54275"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:15.709489"], ["updated_at", "2018-10-16 17:23:15.709489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -763390387 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a53797a-b2e7-4723-b6ad-c0ecd7a38d9e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce120715' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -763390387], ["username", "billy_33"], ["access_token", "6df6e47a52d17475147e3afec3a22138"], ["uuid", "7a53797a-b2e7-4723-b6ad-c0ecd7a38d9e"], ["support_identifier", "cs_ce120715"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:15.713622"], ["updated_at", "2018-10-16 17:23:15.713622"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005143761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8eb362c9-10d3-48f2-ad38-fc7749581fb5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f4166920' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1005143761], ["username", "billy_34"], ["access_token", "bc80c84c0f622af37c228616717693e6"], ["uuid", "8eb362c9-10d3-48f2-ad38-fc7749581fb5"], ["support_identifier", "cs_f4166920"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:15.717939"], ["updated_at", "2018-10-16 17:23:15.717939"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -679181661 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '700b53b7-2ac2-4189-b851-54685d3f94de' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8038f325' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -679181661], ["username", "billy_35"], ["access_token", "ec10653887c115d40986a27ccb774017"], ["uuid", "700b53b7-2ac2-4189-b851-54685d3f94de"], ["support_identifier", "cs_8038f325"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:15.725479"], ["updated_at", "2018-10-16 17:23:15.725479"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864897187 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14e490d9-0083-49a8-aa92-adc5b4a0a5c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a559f79' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1864897187], ["username", "billy_36"], ["access_token", "0619f17a7875e259c15bf7fcf0dbf79d"], ["uuid", "14e490d9-0083-49a8-aa92-adc5b4a0a5c8"], ["support_identifier", "cs_8a559f79"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:15.729839"], ["updated_at", "2018-10-16 17:23:15.729839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1917562913 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2245f9bf-2974-4af2-9a68-8c3082cc2fe6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f27211d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1917562913], ["username", "billy_37"], ["access_token", "fe6dcaf6d93a1ae1cd0c89d072bb739c"], ["uuid", "2245f9bf-2974-4af2-9a68-8c3082cc2fe6"], ["support_identifier", "cs_3f27211d"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:15.734059"], ["updated_at", "2018-10-16 17:23:15.734059"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1555549976 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6111148d-6918-47ed-8ea4-168000d2b2ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c852cf1b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1555549976], ["username", "billy_38"], ["access_token", "4c4228962f52b29d15cdf9214f07eb84"], ["uuid", "6111148d-6918-47ed-8ea4-168000d2b2ee"], ["support_identifier", "cs_c852cf1b"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:15.738617"], ["updated_at", "2018-10-16 17:23:15.738617"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1057837428 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf3624c5-4b99-4967-9ba0-d943d5110808' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8489d116' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1057837428], ["username", "billy_39"], ["access_token", "2e48c751e794ea5dc6acc66b335f7b37"], ["uuid", "bf3624c5-4b99-4967-9ba0-d943d5110808"], ["support_identifier", "cs_8489d116"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:15.742785"], ["updated_at", "2018-10-16 17:23:15.742785"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -316523550 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2ce504e-3f87-445e-9883-f863818cf2f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b5128a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -316523550], ["username", "billy_40"], ["access_token", "bd02409d626ff1eda64f501c67e3aad4"], ["uuid", "c2ce504e-3f87-445e-9883-f863818cf2f4"], ["support_identifier", "cs_1b5128a6"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:15.746732"], ["updated_at", "2018-10-16 17:23:15.746732"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -51133010 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0ce71c3-6243-4163-b792-74089201790a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_241cb02e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -51133010], ["username", "billy_41"], ["access_token", "d253ec252064422428b78072b2d0b79d"], ["uuid", "e0ce71c3-6243-4163-b792-74089201790a"], ["support_identifier", "cs_241cb02e"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:15.750994"], ["updated_at", "2018-10-16 17:23:15.750994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1391414786 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '967b0cf6-b56b-4e50-ba55-0651b88b25b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e07f83f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1391414786], ["username", "billy_42"], ["access_token", "0c58b79043e775d51e96ab9d4ec70142"], ["uuid", "967b0cf6-b56b-4e50-ba55-0651b88b25b5"], ["support_identifier", "cs_4e07f83f"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:15.758376"], ["updated_at", "2018-10-16 17:23:15.758376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -694112208 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '495c0856-a565-4919-a4e5-8e04c81b5dc0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc386b1b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -694112208], ["username", "billy_43"], ["access_token", "c44e6cf8dd5d1bccdd1b0f3b7defc9da"], ["uuid", "495c0856-a565-4919-a4e5-8e04c81b5dc0"], ["support_identifier", "cs_dc386b1b"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:15.762963"], ["updated_at", "2018-10-16 17:23:15.762963"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -689419678 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6392d120-d5f7-44d1-a703-49f724a27415' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c79d4470' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -689419678], ["username", "billy_44"], ["access_token", "7647782149d8400c9418c77db1eede00"], ["uuid", "6392d120-d5f7-44d1-a703-49f724a27415"], ["support_identifier", "cs_c79d4470"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:15.767008"], ["updated_at", "2018-10-16 17:23:15.767008"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1632272330 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a26a6ab9-97fe-4cfc-a42c-169412c667ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dd177b52' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1632272330], ["username", "billy_45"], ["access_token", "efc62d343818cc24fb1d9b3f821065ac"], ["uuid", "a26a6ab9-97fe-4cfc-a42c-169412c667ce"], ["support_identifier", "cs_dd177b52"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:15.771691"], ["updated_at", "2018-10-16 17:23:15.771691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 8ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 12:23:15 -0500 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373475297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '52ba2cac6c4941d36b812ee6281c5728' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58e7110e-6f84-4be9-b49a-5695e5b2f837' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc8ad10c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1373475297], ["username", "52ba2cac6c4941d36b812ee6281c5728"], ["access_token", "8c86128c8e92f20a2bd78a06109e2d64"], ["uuid", "58e7110e-6f84-4be9-b49a-5695e5b2f837"], ["support_identifier", "cs_dc8ad10c"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.829490"], ["updated_at", "2018-10-16 17:23:15.829490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373475297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '52ba2cac6c4941d36b812ee6281c5728' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58e7110e-6f84-4be9-b49a-5695e5b2f837' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc8ad10c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373475297 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '52ba2cac6c4941d36b812ee6281c5728' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58E7110E-6F84-4BE9-B49A-5695E5B2F837' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc8ad10c' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936835241 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'aa981d5f40ff1287f4eb6f4a870201db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f19ebdcc-26b0-42f7-bc6f-ca3aa328a78a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f38653b7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1936835241], ["username", "aa981d5f40ff1287f4eb6f4a870201db"], ["access_token", "267161c36996895897c6feda00e70912"], ["uuid", "f19ebdcc-26b0-42f7-bc6f-ca3aa328a78a"], ["support_identifier", "cs_f38653b7"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.844824"], ["updated_at", "2018-10-16 17:23:15.844824"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936835241 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'aa981d5f40ff1287f4eb6f4a870201db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f19ebdcc-26b0-42f7-bc6f-ca3aa328a78a' LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f38653b7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936835241 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'aa981d5f40ff1287f4eb6f4a870201db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f19ebdcc-26b0-42f7-bc6f-ca3aa328a78a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'CS_F38653B7' LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "support_identifier" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["support_identifier", nil], ["updated_at", "2018-10-16 17:23:15.859015"], ["id", 223]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936835241 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'aa981d5f40ff1287f4eb6f4a870201db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f19ebdcc-26b0-42f7-bc6f-ca3aa328a78a' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -794403683 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '30047a2e9a01af98a148f99af2153cb4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b463a7e2-5a73-4b89-9411-e02a825afb24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15b4d248' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -794403683], ["username", "30047a2e9a01af98a148f99af2153cb4"], ["access_token", "edeeec094292e4648ab613fc7a2c38a8"], ["uuid", "b463a7e2-5a73-4b89-9411-e02a825afb24"], ["support_identifier", "cs_15b4d248"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.868285"], ["updated_at", "2018-10-16 17:23:15.868285"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -794403683 AND "openstax_accounts_accounts"."id" != 224) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '30047a2e9a01af98a148f99af2153cb4' AND "openstax_accounts_accounts"."id" != 224) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" IS NULL AND "openstax_accounts_accounts"."id" != 224) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_15b4d248' AND "openstax_accounts_accounts"."id" != 224) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -260581688 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c586f8ee-70f6-4398-9ded-f4bf25964d11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ab5cc595' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -260581688], ["access_token", "0eeaa41f2bb766e624d28980e00632e6"], ["uuid", "c586f8ee-70f6-4398-9ded-f4bf25964d11"], ["support_identifier", "cs_ab5cc595"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.877203"], ["updated_at", "2018-10-16 17:23:15.877203"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1710767607 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'faf26716-aa45-4ee1-85d3-11987a6405e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e9ae1e0d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -1710767607], ["access_token", "7475b010ed8c83719355c409759b21e3"], ["uuid", "faf26716-aa45-4ee1-85d3-11987a6405e7"], ["support_identifier", "cs_e9ae1e0d"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.880903"], ["updated_at", "2018-10-16 17:23:15.880903"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -81184472 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f1fd5c54f551a1213abac548116ada01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f44c5d4-bc58-40d6-a799-73165b794e3d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e03a5ce' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1678479647 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2fa1b4161cc14b2c758501078f04e8d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '93e4f30e-5f60-45c8-883e-34bfa33f8e29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_16834ff0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1678479647], ["username", "2fa1b4161cc14b2c758501078f04e8d1"], ["access_token", "50b622bde55fbfa3b8f02c8fb9778648"], ["uuid", "93e4f30e-5f60-45c8-883e-34bfa33f8e29"], ["support_identifier", "cs_16834ff0"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.890887"], ["updated_at", "2018-10-16 17:23:15.890887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1938440683 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2fa1b4161cc14b2c758501078f04e8d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8e0137dd-3796-4ddc-b377-de0ac8f95773' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a193ca60' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1649320313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2e5a92d3403d3e0f8f8295ad791286f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6017e2a5-1bae-4696-93db-8ee5ce232b68' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6079339' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1649320313], ["username", "2e5a92d3403d3e0f8f8295ad791286f9"], ["access_token", "367a791e9f8ba9b6fae202c1cf85c994"], ["uuid", "6017e2a5-1bae-4696-93db-8ee5ce232b68"], ["support_identifier", "cs_f6079339"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.899727"], ["updated_at", "2018-10-16 17:23:15.899727"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1649320313 AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '6017e2a5-1bae-4696-93db-8ee5ce232b68' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_f6079339' AND "openstax_accounts_accounts"."id" != 228) LIMIT 1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197031572 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'df1fb4188819bf3db99bd3b0c01e996c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bdf53ed7-ef2e-4702-aeb7-61ad070b472f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c7c72da' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1197031572], ["username", "df1fb4188819bf3db99bd3b0c01e996c"], ["access_token", "3a71d46b10031cd7bfbedf013f42b030"], ["uuid", "bdf53ed7-ef2e-4702-aeb7-61ad070b472f"], ["support_identifier", "cs_6c7c72da"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.914537"], ["updated_at", "2018-10-16 17:23:15.914537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'df1fb4188819bf3db99bd3b0c01e996c' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'bdf53ed7-ef2e-4702-aeb7-61ad070b472f' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_6c7c72da' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'df1fb4188819bf3db99bd3b0c01e996c' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'bdf53ed7-ef2e-4702-aeb7-61ad070b472f' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_6c7c72da' AND "openstax_accounts_accounts"."id" != 229) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["openstax_uid", -1], ["updated_at", "2018-10-16 17:23:15.921102"], ["id", 229]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f2279b680192367d45f2ca7e4b9c0485' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '064435ee-0a07-4ba6-b6e3-47a9398f6881' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4138148' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -493708446 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2dd6ecada8edd1d8e619d53b3f942167' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89dff6e8-c182-4eca-a787-279165ba9d8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_89930781' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -493708446], ["username", "2dd6ecada8edd1d8e619d53b3f942167"], ["access_token", "35739d946b6f1604b2a36e03a2f5d953"], ["uuid", "89dff6e8-c182-4eca-a787-279165ba9d8f"], ["support_identifier", "cs_89930781"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.929450"], ["updated_at", "2018-10-16 17:23:15.929450"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Stubbed User' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '89dff6e8-c182-4eca-a787-279165ba9d8f' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_89930781' AND "openstax_accounts_accounts"."id" != 230) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Stubbed User"], ["updated_at", "2018-10-16 17:23:15.933475"], ["id", 230]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -40177629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '8cc385ab4b96f040b8f0eb4c0199dfd6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b4c3ce17-90d8-4a18-9034-6a14e9870462' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57aa8662' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -40177629], ["username", "8cc385ab4b96f040b8f0eb4c0199dfd6"], ["access_token", "cc8a34030b35b9e0e1c0c2747b5adc0f"], ["uuid", "b4c3ce17-90d8-4a18-9034-6a14e9870462"], ["support_identifier", "cs_57aa8662"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.942632"], ["updated_at", "2018-10-16 17:23:15.942632"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Nil User' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b4c3ce17-90d8-4a18-9034-6a14e9870462' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_57aa8662' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", nil], ["username", "Nil User"], ["updated_at", "2018-10-16 17:23:15.946335"], ["id", 231]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 0 AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Zeroth User' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b4c3ce17-90d8-4a18-9034-6a14e9870462' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_57aa8662' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 0], ["username", "Zeroth User"], ["updated_at", "2018-10-16 17:23:15.950439"], ["id", 231]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Negative User' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'b4c3ce17-90d8-4a18-9034-6a14e9870462' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_57aa8662' AND "openstax_accounts_accounts"."id" != 231) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", -1], ["username", "Negative User"], ["updated_at", "2018-10-16 17:23:15.954980"], ["id", 231]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1412611838 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a769af77609924bb34803eb7f5266afb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b4c7e37-79da-491a-875e-69a952a3d51c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20b55d75' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1412611838], ["username", "a769af77609924bb34803eb7f5266afb"], ["access_token", "b4bb770b5e4bef1e1f03a09a26d573f8"], ["uuid", "9b4c7e37-79da-491a-875e-69a952a3d51c"], ["support_identifier", "cs_20b55d75"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.960445"], ["updated_at", "2018-10-16 17:23:15.960445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Real User' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '9b4c7e37-79da-491a-875e-69a952a3d51c' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_20b55d75' AND "openstax_accounts_accounts"."id" != 232) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Real User"], ["updated_at", "2018-10-16 17:23:15.964664"], ["id", 232]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1415560563 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '056e949211013074d1c92aa60010cdc7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6eebe177-b68e-46cb-902a-856b8c345fde' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0964a24' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1415560563], ["username", "056e949211013074d1c92aa60010cdc7"], ["access_token", "dd872795a460ed001ac272884720d8f8"], ["uuid", "6eebe177-b68e-46cb-902a-856b8c345fde"], ["support_identifier", "cs_b0964a24"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:15.970077"], ["updated_at", "2018-10-16 17:23:15.970077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 233) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Syncing User' AND "openstax_accounts_accounts"."id" != 233) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '6eebe177-b68e-46cb-902a-856b8c345fde' AND "openstax_accounts_accounts"."id" != 233) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_b0964a24' AND "openstax_accounts_accounts"."id" != 233) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Syncing User"], ["updated_at", "2018-10-16 17:23:15.974103"], ["id", 233]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1022790832 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad69a4ab-d38a-40f7-90ef-1ba4d37cae12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c920a03' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1022790832], ["username", "jstrav"], ["access_token", "25a04662ee22f90d27b5b0263d0b4702"], ["uuid", "ad69a4ab-d38a-40f7-90ef-1ba4d37cae12"], ["support_identifier", "cs_3c920a03"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:15.979209"], ["updated_at", "2018-10-16 17:23:15.979209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -743530197 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '641f15db-2e2a-44bd-aa81-f71e59091fd7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fafad2bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -743530197], ["username", "mary"], ["access_token", "79c7df374a7d40cfbd97efdf2034ad17"], ["uuid", "641f15db-2e2a-44bd-aa81-f71e59091fd7"], ["support_identifier", "cs_fafad2bd"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:15.983383"], ["updated_at", "2018-10-16 17:23:15.983383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -743090820 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1839bfc5-dfad-4a5e-9c5d-12dcc166ae95' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_51aaf245' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -743090820], ["username", "jstead"], ["access_token", "809b0945c11ab66a6a9ac56f1d5521bf"], ["uuid", "1839bfc5-dfad-4a5e-9c5d-12dcc166ae95"], ["support_identifier", "cs_51aaf245"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:15.989043"], ["updated_at", "2018-10-16 17:23:15.989043"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2035147714 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7da6b9dd-3587-44a4-abf6-e679741968d5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d75f242' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2035147714], ["username", "bigbear"], ["access_token", "8ec8720075c530adef841cb2d58251a8"], ["uuid", "7da6b9dd-3587-44a4-abf6-e679741968d5"], ["support_identifier", "cs_5d75f242"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:15.993706"], ["updated_at", "2018-10-16 17:23:15.993706"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -41945372 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cdf58dd7-8051-4fb3-a135-3179deda56e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_de34d752' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -41945372], ["username", "billy_00"], ["access_token", "eb34db8a32124bf56dbe879881c76bf2"], ["uuid", "cdf58dd7-8051-4fb3-a135-3179deda56e5"], ["support_identifier", "cs_de34d752"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:23:15.997863"], ["updated_at", "2018-10-16 17:23:15.997863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -952384009 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54143994-4b82-43ca-a33f-8716444db230' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b1f9759' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -952384009], ["username", "billy_01"], ["access_token", "6d42df875fb3b026dbcf81bde5936448"], ["uuid", "54143994-4b82-43ca-a33f-8716444db230"], ["support_identifier", "cs_0b1f9759"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:23:16.002186"], ["updated_at", "2018-10-16 17:23:16.002186"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1978292898 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1bd090a2-791b-4505-9eb5-a82b495c339d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_038281d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1978292898], ["username", "billy_02"], ["access_token", "61eb0842fb4735aa9f40b287fa9f9abe"], ["uuid", "1bd090a2-791b-4505-9eb5-a82b495c339d"], ["support_identifier", "cs_038281d1"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:23:16.007063"], ["updated_at", "2018-10-16 17:23:16.007063"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -407812022 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a510e980-52e4-4e05-b203-8640f25ed483' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2872595a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -407812022], ["username", "billy_03"], ["access_token", "a8240f2eb2eaf93eeac1f306fb2b6cc0"], ["uuid", "a510e980-52e4-4e05-b203-8640f25ed483"], ["support_identifier", "cs_2872595a"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:23:16.011631"], ["updated_at", "2018-10-16 17:23:16.011631"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1415420903 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '34f35011-07db-40a5-878e-d657beb909c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_23adde4f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1415420903], ["username", "billy_04"], ["access_token", "efe92eda62097379623d27f3333ad9bf"], ["uuid", "34f35011-07db-40a5-878e-d657beb909c4"], ["support_identifier", "cs_23adde4f"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:16.016130"], ["updated_at", "2018-10-16 17:23:16.016130"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -767192518 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ee076c91-7a82-4669-bbd3-22390650a07a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e03c257f' LIMIT 1 + SQL (1.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -767192518], ["username", "billy_05"], ["access_token", "f0442b238a641b27d52ce8d0c607c559"], ["uuid", "ee076c91-7a82-4669-bbd3-22390650a07a"], ["support_identifier", "cs_e03c257f"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:16.020972"], ["updated_at", "2018-10-16 17:23:16.020972"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -476291562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '930d355a-bbee-49b7-a291-42d9c563693d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f5eb1ed' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -476291562], ["username", "billy_06"], ["access_token", "ad69771ad302ad2a65e7da092544ec05"], ["uuid", "930d355a-bbee-49b7-a291-42d9c563693d"], ["support_identifier", "cs_4f5eb1ed"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:16.027527"], ["updated_at", "2018-10-16 17:23:16.027527"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1738518346 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a831bc2-3c12-49ff-aa51-e18fa8994e22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8a7cded' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1738518346], ["username", "billy_07"], ["access_token", "cc8109e3534af3b3470e29c355d28c58"], ["uuid", "4a831bc2-3c12-49ff-aa51-e18fa8994e22"], ["support_identifier", "cs_e8a7cded"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:16.032070"], ["updated_at", "2018-10-16 17:23:16.032070"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -448589361 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '054f032a-0460-44cf-b30b-9b4ecf636e44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98e88494' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -448589361], ["username", "billy_08"], ["access_token", "9dc40393de91aef93144f9493ab5ac7f"], ["uuid", "054f032a-0460-44cf-b30b-9b4ecf636e44"], ["support_identifier", "cs_98e88494"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:16.036439"], ["updated_at", "2018-10-16 17:23:16.036439"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1279856312 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f64fda28-8e35-4cc4-9d0c-c7917512fcc9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5109678' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1279856312], ["username", "billy_09"], ["access_token", "0db7137e11d53f7cfcd43d7b4fe975e8"], ["uuid", "f64fda28-8e35-4cc4-9d0c-c7917512fcc9"], ["support_identifier", "cs_c5109678"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:16.040806"], ["updated_at", "2018-10-16 17:23:16.040806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1649928943 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'afd3e7ce-88de-4d10-8dce-1c05f28bf0e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a96244cc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1649928943], ["username", "billy_10"], ["access_token", "a8fb0cbe3024579940b00eca3f64ab4b"], ["uuid", "afd3e7ce-88de-4d10-8dce-1c05f28bf0e6"], ["support_identifier", "cs_a96244cc"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:16.045298"], ["updated_at", "2018-10-16 17:23:16.045298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1621394256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e51d4e6c-ef09-43f6-bc99-ffb7fbffc83e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b633ba5a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1621394256], ["username", "billy_11"], ["access_token", "c07b81ef10e563eac27b972d450591c0"], ["uuid", "e51d4e6c-ef09-43f6-bc99-ffb7fbffc83e"], ["support_identifier", "cs_b633ba5a"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:16.049895"], ["updated_at", "2018-10-16 17:23:16.049895"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -645266110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '51578976-059f-4a8d-849c-7813efc2696e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f280fef' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -645266110], ["username", "billy_12"], ["access_token", "b8f036c0a254b48194d3ce0e7a264474"], ["uuid", "51578976-059f-4a8d-849c-7813efc2696e"], ["support_identifier", "cs_3f280fef"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:16.054448"], ["updated_at", "2018-10-16 17:23:16.054448"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -774798624 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7ba4c8ef-9d4e-46f2-890c-f8437f467ab5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b38fc28d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -774798624], ["username", "billy_13"], ["access_token", "f3289e038faf5c46f8a43f15b0343524"], ["uuid", "7ba4c8ef-9d4e-46f2-890c-f8437f467ab5"], ["support_identifier", "cs_b38fc28d"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:16.059145"], ["updated_at", "2018-10-16 17:23:16.059145"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1264466611 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f109166-fc20-4633-8de8-c1b251efaa8b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8d63f3dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1264466611], ["username", "billy_14"], ["access_token", "72a3a05278f79f0050d03987b244d9fd"], ["uuid", "2f109166-fc20-4633-8de8-c1b251efaa8b"], ["support_identifier", "cs_8d63f3dc"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:16.063681"], ["updated_at", "2018-10-16 17:23:16.063681"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1635711632 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '22798d30-4194-4053-b4f8-44109896026b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d473fa33' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1635711632], ["username", "billy_15"], ["access_token", "36927eb0cbfe3a399c02d216e637b061"], ["uuid", "22798d30-4194-4053-b4f8-44109896026b"], ["support_identifier", "cs_d473fa33"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:16.068271"], ["updated_at", "2018-10-16 17:23:16.068271"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1077820093 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9c5d20b-9533-409c-83a6-cd1e639dd836' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1bb5460f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1077820093], ["username", "billy_16"], ["access_token", "e65b733ec6a06eb72c3dfefe24518f58"], ["uuid", "b9c5d20b-9533-409c-83a6-cd1e639dd836"], ["support_identifier", "cs_1bb5460f"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:16.073053"], ["updated_at", "2018-10-16 17:23:16.073053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1926847354 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '839c80e6-da96-4c33-b292-5986678c34e1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_266bb33c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1926847354], ["username", "billy_17"], ["access_token", "58a7c9cdeaa63622efb72f5f570eedfc"], ["uuid", "839c80e6-da96-4c33-b292-5986678c34e1"], ["support_identifier", "cs_266bb33c"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:16.077550"], ["updated_at", "2018-10-16 17:23:16.077550"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2119219694 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd98f99bb-0e45-4628-b18d-8e8be368ca7c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b69a7a25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2119219694], ["username", "billy_18"], ["access_token", "b1537d3306d9df2c4b1a98eebed1a74e"], ["uuid", "d98f99bb-0e45-4628-b18d-8e8be368ca7c"], ["support_identifier", "cs_b69a7a25"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:16.082116"], ["updated_at", "2018-10-16 17:23:16.082116"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2139579373 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26ffd278-5958-42dc-82e3-6fabeefaf9dc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88009e9e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2139579373], ["username", "billy_19"], ["access_token", "bee9f015ee0b7aba6c73ca5bb2840594"], ["uuid", "26ffd278-5958-42dc-82e3-6fabeefaf9dc"], ["support_identifier", "cs_88009e9e"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:16.086738"], ["updated_at", "2018-10-16 17:23:16.086738"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1959336003 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54d016d8-e9c2-45c7-aabb-e5cbb239c9ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a696eaf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1959336003], ["username", "billy_20"], ["access_token", "5e05b46779bf1c7a98cbf80c10259cad"], ["uuid", "54d016d8-e9c2-45c7-aabb-e5cbb239c9ab"], ["support_identifier", "cs_4a696eaf"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:16.091582"], ["updated_at", "2018-10-16 17:23:16.091582"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1003043590 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1f16e0c-0419-4532-8659-5f7b5224ba23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_559741f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1003043590], ["username", "billy_21"], ["access_token", "210cbc6c43aad1c3c61c8a02df8fc935"], ["uuid", "a1f16e0c-0419-4532-8659-5f7b5224ba23"], ["support_identifier", "cs_559741f1"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:16.096290"], ["updated_at", "2018-10-16 17:23:16.096290"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1893805324 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '121db3af-9053-4a76-8663-492d9d8d4387' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b656749e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1893805324], ["username", "billy_22"], ["access_token", "a9b2f9db758fa2ab1d06708c6dc78913"], ["uuid", "121db3af-9053-4a76-8663-492d9d8d4387"], ["support_identifier", "cs_b656749e"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:16.101252"], ["updated_at", "2018-10-16 17:23:16.101252"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -622463065 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '884fa533-d166-4fc3-b5b4-00d2d9432054' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b7ae213' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -622463065], ["username", "billy_23"], ["access_token", "63c59d0b275ff566e503844974c76f9e"], ["uuid", "884fa533-d166-4fc3-b5b4-00d2d9432054"], ["support_identifier", "cs_1b7ae213"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:16.105937"], ["updated_at", "2018-10-16 17:23:16.105937"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1439317837 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1268a60-fe6e-42d0-9cef-a7a8dccbe883' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57d3585e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1439317837], ["username", "billy_24"], ["access_token", "ab90594b64c58d5bda58c8b6596547d7"], ["uuid", "d1268a60-fe6e-42d0-9cef-a7a8dccbe883"], ["support_identifier", "cs_57d3585e"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:16.110108"], ["updated_at", "2018-10-16 17:23:16.110108"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1019716771 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9518bfb2-5785-44dd-bd4f-fc1bc9e38093' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3df428e0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1019716771], ["username", "billy_25"], ["access_token", "b52177bca0652a58946e9492d507434f"], ["uuid", "9518bfb2-5785-44dd-bd4f-fc1bc9e38093"], ["support_identifier", "cs_3df428e0"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:16.114357"], ["updated_at", "2018-10-16 17:23:16.114357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1883931727 LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6c3bcf5f-7b0a-439b-bec3-387a6effcfa5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39d2baf0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1883931727], ["username", "billy_26"], ["access_token", "8d3c9161c98b58664cbb28754f1d3eb5"], ["uuid", "6c3bcf5f-7b0a-439b-bec3-387a6effcfa5"], ["support_identifier", "cs_39d2baf0"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:16.122070"], ["updated_at", "2018-10-16 17:23:16.122070"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1754861548 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8ad5857-d40e-4dfe-a241-71b4a5c99c05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2dbf32a2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1754861548], ["username", "billy_27"], ["access_token", "0770e370009857e333bb9adc847765de"], ["uuid", "b8ad5857-d40e-4dfe-a241-71b4a5c99c05"], ["support_identifier", "cs_2dbf32a2"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:16.126613"], ["updated_at", "2018-10-16 17:23:16.126613"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1607328270 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '177aa136-dba9-4294-bc1b-8262eac35ccf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ed5257f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1607328270], ["username", "billy_28"], ["access_token", "abb6c337b435ed1c56dbe85bba251f9d"], ["uuid", "177aa136-dba9-4294-bc1b-8262eac35ccf"], ["support_identifier", "cs_8ed5257f"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:16.130766"], ["updated_at", "2018-10-16 17:23:16.130766"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1205010162 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0054afc9-b8b9-4ad7-9a26-31bc987414d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3b8b9d61' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1205010162], ["username", "billy_29"], ["access_token", "35018673892470a2aebad933acc1d900"], ["uuid", "0054afc9-b8b9-4ad7-9a26-31bc987414d7"], ["support_identifier", "cs_3b8b9d61"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:16.134984"], ["updated_at", "2018-10-16 17:23:16.134984"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2129898203 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac2a50d2-c161-479a-bf68-3b8dcd486ba7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c9d6764' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2129898203], ["username", "billy_30"], ["access_token", "7b7c325763e51935935ef684b126f4b8"], ["uuid", "ac2a50d2-c161-479a-bf68-3b8dcd486ba7"], ["support_identifier", "cs_9c9d6764"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:16.139629"], ["updated_at", "2018-10-16 17:23:16.139629"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -788264970 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '401565f2-c378-4ac9-871c-867953600efe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_58e7577c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -788264970], ["username", "billy_31"], ["access_token", "80db278715eb83f8f8ed32ea820c29cc"], ["uuid", "401565f2-c378-4ac9-871c-867953600efe"], ["support_identifier", "cs_58e7577c"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:16.143739"], ["updated_at", "2018-10-16 17:23:16.143739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2015553062 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a7a3f56d-f8bc-4242-92e2-121704866e49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6cb87e6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2015553062], ["username", "billy_32"], ["access_token", "effa993796987994f0af6c0a76279c52"], ["uuid", "a7a3f56d-f8bc-4242-92e2-121704866e49"], ["support_identifier", "cs_f6cb87e6"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:16.147816"], ["updated_at", "2018-10-16 17:23:16.147816"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -361878294 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5189cfe4-49e7-4498-9817-010696f3d1e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_92df2157' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -361878294], ["username", "billy_33"], ["access_token", "3e976d1e658dee5e170c605c9ed5073f"], ["uuid", "5189cfe4-49e7-4498-9817-010696f3d1e7"], ["support_identifier", "cs_92df2157"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:16.151997"], ["updated_at", "2018-10-16 17:23:16.151997"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -953784776 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8071155b-69ed-4e84-b4e0-3b5bbdbc5f95' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9d90ff8f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -953784776], ["username", "billy_34"], ["access_token", "e79495648b3fc4f8c87eb7c40a264ff1"], ["uuid", "8071155b-69ed-4e84-b4e0-3b5bbdbc5f95"], ["support_identifier", "cs_9d90ff8f"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:16.156584"], ["updated_at", "2018-10-16 17:23:16.156584"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -774897275 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0005d283-6c5e-4678-a38f-a30a80de3bd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_72cf5dab' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -774897275], ["username", "billy_35"], ["access_token", "29014a16b0da7378302016090867053c"], ["uuid", "0005d283-6c5e-4678-a38f-a30a80de3bd8"], ["support_identifier", "cs_72cf5dab"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:16.160808"], ["updated_at", "2018-10-16 17:23:16.160808"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1796859650 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'abdeb9d0-3cdd-4d1c-8928-9b17f7e9223d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb09e8ca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1796859650], ["username", "billy_36"], ["access_token", "34650f77406ca985d4212523583fe64d"], ["uuid", "abdeb9d0-3cdd-4d1c-8928-9b17f7e9223d"], ["support_identifier", "cs_cb09e8ca"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:16.167265"], ["updated_at", "2018-10-16 17:23:16.167265"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2072578999 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68159ad0-ce14-4102-b00d-745590b2e41d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c910218' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2072578999], ["username", "billy_37"], ["access_token", "4582adfc29c2b9c871d8a008afd4bf92"], ["uuid", "68159ad0-ce14-4102-b00d-745590b2e41d"], ["support_identifier", "cs_7c910218"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:16.171871"], ["updated_at", "2018-10-16 17:23:16.171871"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1506598981 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b19eae2-dc83-426b-b19c-56678f2f5c24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_90d89ab9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1506598981], ["username", "billy_38"], ["access_token", "798b0e8584ba52c86b0f9bd75889a014"], ["uuid", "0b19eae2-dc83-426b-b19c-56678f2f5c24"], ["support_identifier", "cs_90d89ab9"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:16.176246"], ["updated_at", "2018-10-16 17:23:16.176246"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -494483505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e3bf4fa8-7cd6-406f-a357-51626861730e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_31990653' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -494483505], ["username", "billy_39"], ["access_token", "e0169c656e928eae20b5e8a7a035b7e0"], ["uuid", "e3bf4fa8-7cd6-406f-a357-51626861730e"], ["support_identifier", "cs_31990653"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:16.180425"], ["updated_at", "2018-10-16 17:23:16.180425"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1696251344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '06076bbd-f99a-45dd-b8f9-ed7e39598b62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09abb87e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1696251344], ["username", "billy_40"], ["access_token", "a347d3df1de58b49abc801ec41139bab"], ["uuid", "06076bbd-f99a-45dd-b8f9-ed7e39598b62"], ["support_identifier", "cs_09abb87e"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:16.184396"], ["updated_at", "2018-10-16 17:23:16.184396"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1629142880 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eae4829a-8d96-4157-8e47-189c2a38b86b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eed05518' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1629142880], ["username", "billy_41"], ["access_token", "f544c0a1bd7af9d968bcc09f351b3efc"], ["uuid", "eae4829a-8d96-4157-8e47-189c2a38b86b"], ["support_identifier", "cs_eed05518"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:16.191831"], ["updated_at", "2018-10-16 17:23:16.191831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -193365487 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2cc07a10-95c7-493f-bdef-3821490f9ddf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f4b8248' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -193365487], ["username", "billy_42"], ["access_token", "38999b7cf5184772c44979fb35938d88"], ["uuid", "2cc07a10-95c7-493f-bdef-3821490f9ddf"], ["support_identifier", "cs_6f4b8248"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:16.196403"], ["updated_at", "2018-10-16 17:23:16.196403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1797169000 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '030b100d-3987-4ef3-b732-960ed4a8915e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_446b1b8b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1797169000], ["username", "billy_43"], ["access_token", "3f54532a8c6f21b7fb5939ea1917ef10"], ["uuid", "030b100d-3987-4ef3-b732-960ed4a8915e"], ["support_identifier", "cs_446b1b8b"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:16.200518"], ["updated_at", "2018-10-16 17:23:16.200518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1575186049 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0a0b6ace-a823-4203-bc18-01bfb1a00212' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c10ae08' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1575186049], ["username", "billy_44"], ["access_token", "d85177f4d87cf724295c765b9e29a098"], ["uuid", "0a0b6ace-a823-4203-bc18-01bfb1a00212"], ["support_identifier", "cs_9c10ae08"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:16.205161"], ["updated_at", "2018-10-16 17:23:16.205161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -181305539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a56a773f-a744-4961-9633-9b15523e40fb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_91657f52' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -181305539], ["username", "billy_45"], ["access_token", "6954a6980d3e62815e4a4b2cdc902770"], ["uuid", "a56a773f-a744-4961-9633-9b15523e40fb"], ["support_identifier", "cs_91657f52"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:16.209363"], ["updated_at", "2018-10-16 17:23:16.209363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1715513213 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a6d6ce4e-0b0e-4116-b296-36cf1a5a6290' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_009c6978' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1715513213], ["username", "billy_46"], ["access_token", "09f6a6206d354c904c55e1c50ea06a66"], ["uuid", "a6d6ce4e-0b0e-4116-b296-36cf1a5a6290"], ["support_identifier", "cs_009c6978"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:16.213460"], ["updated_at", "2018-10-16 17:23:16.213460"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1231889757 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '180b0dac-8e9c-46cd-a0d6-01b8af3e7822' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed8b452a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1231889757], ["username", "billy_47"], ["access_token", "51f594fd58d4c07342351b7fe09f5413"], ["uuid", "180b0dac-8e9c-46cd-a0d6-01b8af3e7822"], ["support_identifier", "cs_ed8b452a"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:16.218543"], ["updated_at", "2018-10-16 17:23:16.218543"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1877096450 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd901a2b0-932f-4810-9026-76478fd664a5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e56bf436' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1877096450], ["username", "billy_48"], ["access_token", "77d0942a4cd826269a7ba01d10c72037"], ["uuid", "d901a2b0-932f-4810-9026-76478fd664a5"], ["support_identifier", "cs_e56bf436"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:16.223221"], ["updated_at", "2018-10-16 17:23:16.223221"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -491352463 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '406822e4-1007-4704-86a7-9af76fd8dfaa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8d87bb65' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -491352463], ["username", "billy_49"], ["access_token", "f965593443ac8278ba8a80ca0733a1f8"], ["uuid", "406822e4-1007-4704-86a7-9af76fd8dfaa"], ["support_identifier", "cs_8d87bb65"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:16.227354"], ["updated_at", "2018-10-16 17:23:16.227354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -897370795 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e3029bf7-4fab-45aa-ae49-be041b48993e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75d5236d' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -897370795], ["username", "jstrav"], ["access_token", "9ba51c5f5655190f664199d89be30bb2"], ["uuid", "e3029bf7-4fab-45aa-ae49-be041b48993e"], ["support_identifier", "cs_75d5236d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:16.235701"], ["updated_at", "2018-10-16 17:23:16.235701"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1655125540 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9928bcdb-2946-4316-834f-cfb50e9f9fd7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8d93606d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1655125540], ["username", "mary"], ["access_token", "679084a281ce47709ee20e078d8d133b"], ["uuid", "9928bcdb-2946-4316-834f-cfb50e9f9fd7"], ["support_identifier", "cs_8d93606d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:16.243686"], ["updated_at", "2018-10-16 17:23:16.243686"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1221570238 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '210fed4e-1199-42d3-a184-b8887922b416' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_84d6fb37' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1221570238], ["username", "jstead"], ["access_token", "dabe802936b278f327a2ae2855c6cad7"], ["uuid", "210fed4e-1199-42d3-a184-b8887922b416"], ["support_identifier", "cs_84d6fb37"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:16.248223"], ["updated_at", "2018-10-16 17:23:16.248223"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1295429891 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea7561f1-f6b4-4e76-a00f-985fa610b927' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e09bffc7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1295429891], ["username", "bigbear"], ["access_token", "a6b7e3d44f48296a40e5a7b3071cadcd"], ["uuid", "ea7561f1-f6b4-4e76-a00f-985fa610b927"], ["support_identifier", "cs_e09bffc7"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:16.252320"], ["updated_at", "2018-10-16 17:23:16.252320"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -190724583 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8988e7e1-7a2d-428a-9bdf-e7a324c3455f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9e74ea8d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -190724583], ["username", "billy_00"], ["access_token", "cbcf1f54c9ea5626f6e46d500ad083d4"], ["uuid", "8988e7e1-7a2d-428a-9bdf-e7a324c3455f"], ["support_identifier", "cs_9e74ea8d"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:23:16.257330"], ["updated_at", "2018-10-16 17:23:16.257330"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1441449598 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60cff3a1-c507-47e1-b1e0-b95fa7df2aab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a4f4e1a4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1441449598], ["username", "billy_01"], ["access_token", "42b71806f297ddd8c79a03380c9fcb4c"], ["uuid", "60cff3a1-c507-47e1-b1e0-b95fa7df2aab"], ["support_identifier", "cs_a4f4e1a4"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:23:16.261541"], ["updated_at", "2018-10-16 17:23:16.261541"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -177235130 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cad8cb9d-11d6-48ed-b606-b409de824f1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1ccaf14' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -177235130], ["username", "billy_02"], ["access_token", "d42136d1ba0af9cfcfa00c05d27693b1"], ["uuid", "cad8cb9d-11d6-48ed-b606-b409de824f1c"], ["support_identifier", "cs_b1ccaf14"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:23:16.265936"], ["updated_at", "2018-10-16 17:23:16.265936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1318745188 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '668dfc68-4e73-4b49-a1b6-795fe0cb17a5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4d06393' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1318745188], ["username", "billy_03"], ["access_token", "fe9ca4830403358ef6d663907f5e84bb"], ["uuid", "668dfc68-4e73-4b49-a1b6-795fe0cb17a5"], ["support_identifier", "cs_c4d06393"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:23:16.270728"], ["updated_at", "2018-10-16 17:23:16.270728"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -430878320 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd5386cea-96f8-4d0a-bafb-98595ef381d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e22c21c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -430878320], ["username", "billy_04"], ["access_token", "2d8e1c567606a2d6677c9ea23c17916a"], ["uuid", "d5386cea-96f8-4d0a-bafb-98595ef381d6"], ["support_identifier", "cs_0e22c21c"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:16.275090"], ["updated_at", "2018-10-16 17:23:16.275090"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083109795 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '36dbd1f3-2726-444c-be82-e52f5233a10c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_41efdd97' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1083109795], ["username", "billy_05"], ["access_token", "dbb1aa7672e9f8929cbfccbcc18a3a1a"], ["uuid", "36dbd1f3-2726-444c-be82-e52f5233a10c"], ["support_identifier", "cs_41efdd97"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:16.279226"], ["updated_at", "2018-10-16 17:23:16.279226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1505997330 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6941dab3-c511-4373-b164-251b3d01cdbb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce744ba7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1505997330], ["username", "billy_06"], ["access_token", "bfceb9de62cb00bc23a26e4c0025f84d"], ["uuid", "6941dab3-c511-4373-b164-251b3d01cdbb"], ["support_identifier", "cs_ce744ba7"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:16.283630"], ["updated_at", "2018-10-16 17:23:16.283630"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1629045060 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '311cbfcb-a6ef-4e56-87e0-c6e28864272f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ea011cb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1629045060], ["username", "billy_07"], ["access_token", "2d7af875c2703f556baf2b1ce883e18c"], ["uuid", "311cbfcb-a6ef-4e56-87e0-c6e28864272f"], ["support_identifier", "cs_2ea011cb"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:16.288123"], ["updated_at", "2018-10-16 17:23:16.288123"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -332815481 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1cfedb43-ebc7-4a33-90d4-461c19282b7a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e9ba3660' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -332815481], ["username", "billy_08"], ["access_token", "5e947c3f8fd9ecf1d0c961df17468691"], ["uuid", "1cfedb43-ebc7-4a33-90d4-461c19282b7a"], ["support_identifier", "cs_e9ba3660"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:16.292216"], ["updated_at", "2018-10-16 17:23:16.292216"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1113505908 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '10f9f7c4-c05f-4c93-944c-d9c91de54e8d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fc0eceef' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1113505908], ["username", "billy_09"], ["access_token", "a2c677ef4680910c4ee10e05e569440b"], ["uuid", "10f9f7c4-c05f-4c93-944c-d9c91de54e8d"], ["support_identifier", "cs_fc0eceef"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:16.296323"], ["updated_at", "2018-10-16 17:23:16.296323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796404558 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c6da330-282e-4f8c-b002-57e06e8a677b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed4cc0f6' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -796404558], ["username", "billy_10"], ["access_token", "5b5af0a3fe41ea1efdf21d353bdc3659"], ["uuid", "5c6da330-282e-4f8c-b002-57e06e8a677b"], ["support_identifier", "cs_ed4cc0f6"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:16.300491"], ["updated_at", "2018-10-16 17:23:16.300491"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1240982415 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '538cb66b-d868-4915-a59e-20ddbab3d2b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ac5c796' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1240982415], ["username", "billy_11"], ["access_token", "386cbe57f92b7d3f9742ae5e00792845"], ["uuid", "538cb66b-d868-4915-a59e-20ddbab3d2b5"], ["support_identifier", "cs_8ac5c796"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:16.308127"], ["updated_at", "2018-10-16 17:23:16.308127"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -187769610 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57aab7d8-08ef-45cd-9202-72b814f4bdbf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5e01cd56' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -187769610], ["username", "billy_12"], ["access_token", "8b498574a7b1c50afac77469f82664b7"], ["uuid", "57aab7d8-08ef-45cd-9202-72b814f4bdbf"], ["support_identifier", "cs_5e01cd56"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:16.312494"], ["updated_at", "2018-10-16 17:23:16.312494"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -552943265 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e24c1f00-2524-40fb-9b5f-c98595458347' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cde8cb42' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -552943265], ["username", "billy_13"], ["access_token", "d1792384da77087f350cc7004914e338"], ["uuid", "e24c1f00-2524-40fb-9b5f-c98595458347"], ["support_identifier", "cs_cde8cb42"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:16.316596"], ["updated_at", "2018-10-16 17:23:16.316596"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184126589 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9100a12f-9f1e-4203-ba93-9845d6db53d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cef868b7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1184126589], ["username", "billy_14"], ["access_token", "13749d337d97d913156bc934c54ba29d"], ["uuid", "9100a12f-9f1e-4203-ba93-9845d6db53d7"], ["support_identifier", "cs_cef868b7"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:16.321521"], ["updated_at", "2018-10-16 17:23:16.321521"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1484715073 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b4920af-25f9-4589-9186-cf0c6b40c73a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8106dd53' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1484715073], ["username", "billy_15"], ["access_token", "60c0c20ea60d0e220f168bd6aeaa63f7"], ["uuid", "1b4920af-25f9-4589-9186-cf0c6b40c73a"], ["support_identifier", "cs_8106dd53"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:16.325902"], ["updated_at", "2018-10-16 17:23:16.325902"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1661788475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47a6c4ae-d336-491c-8eaf-8c0725a4e160' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1765607' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1661788475], ["username", "billy_16"], ["access_token", "a380210e88a0a401797987ee9fcd742d"], ["uuid", "47a6c4ae-d336-491c-8eaf-8c0725a4e160"], ["support_identifier", "cs_d1765607"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:16.330135"], ["updated_at", "2018-10-16 17:23:16.330135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1146278822 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c1db365-7d3a-422d-85a5-3f8bc6bd0e48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9a6c5691' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1146278822], ["username", "billy_17"], ["access_token", "036640461ad9ef2685fee52dae01a5f9"], ["uuid", "9c1db365-7d3a-422d-85a5-3f8bc6bd0e48"], ["support_identifier", "cs_9a6c5691"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:16.334162"], ["updated_at", "2018-10-16 17:23:16.334162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1009886069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (1.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '39764f9d-2e89-4b36-96cc-44513c5821a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a7c317db' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1009886069], ["username", "billy_18"], ["access_token", "3a340aba2736d495e2c5501ad2a8c623"], ["uuid", "39764f9d-2e89-4b36-96cc-44513c5821a6"], ["support_identifier", "cs_a7c317db"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:16.341727"], ["updated_at", "2018-10-16 17:23:16.341727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1640525694 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '110ca1f9-73ff-4cf9-9c95-cde1bb513d20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4d49e4b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1640525694], ["username", "billy_19"], ["access_token", "4cadf759da87056acef897d94a36a3d2"], ["uuid", "110ca1f9-73ff-4cf9-9c95-cde1bb513d20"], ["support_identifier", "cs_b4d49e4b"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:16.346267"], ["updated_at", "2018-10-16 17:23:16.346267"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -305039081 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25c323a0-6680-4a7f-9d6d-20e1c8285706' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_856a9c75' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -305039081], ["username", "billy_20"], ["access_token", "63605598a9a5f6ca7109749607699d62"], ["uuid", "25c323a0-6680-4a7f-9d6d-20e1c8285706"], ["support_identifier", "cs_856a9c75"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:16.350420"], ["updated_at", "2018-10-16 17:23:16.350420"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -669825187 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '679bcb9e-ae89-4f83-8e93-25f04832ea95' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_28f5b2ad' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -669825187], ["username", "billy_21"], ["access_token", "989503a01b05126dcf20263f201bcec8"], ["uuid", "679bcb9e-ae89-4f83-8e93-25f04832ea95"], ["support_identifier", "cs_28f5b2ad"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:16.355136"], ["updated_at", "2018-10-16 17:23:16.355136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1925231562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57df4a2f-2742-4383-92a0-63cee6710c41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20565f63' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1925231562], ["username", "billy_22"], ["access_token", "f35917935dbdb6c427b60f45fe768ee1"], ["uuid", "57df4a2f-2742-4383-92a0-63cee6710c41"], ["support_identifier", "cs_20565f63"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:16.359556"], ["updated_at", "2018-10-16 17:23:16.359556"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1407117802 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9643f39f-78e4-4003-9914-46bf548facee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_048f5ed7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1407117802], ["username", "billy_23"], ["access_token", "1a7d191071a43f9e5f347f1f815a7ee3"], ["uuid", "9643f39f-78e4-4003-9914-46bf548facee"], ["support_identifier", "cs_048f5ed7"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:16.363694"], ["updated_at", "2018-10-16 17:23:16.363694"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1726789966 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dd15cb4f-280b-435e-a488-65fc355b9afe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ec54966' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1726789966], ["username", "billy_24"], ["access_token", "25c3d883f814d2d34d45d0741e98d2a2"], ["uuid", "dd15cb4f-280b-435e-a488-65fc355b9afe"], ["support_identifier", "cs_8ec54966"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:16.367881"], ["updated_at", "2018-10-16 17:23:16.367881"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -598558730 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c130bcc-c101-4630-9e82-972bed18228b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d4327cf9' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -598558730], ["username", "billy_25"], ["access_token", "85c355650726fab8f46ffebb99c07064"], ["uuid", "4c130bcc-c101-4630-9e82-972bed18228b"], ["support_identifier", "cs_d4327cf9"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:16.372807"], ["updated_at", "2018-10-16 17:23:16.372807"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1144619882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7641aff2-3bf8-4a32-8f52-5c0001fed433' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e99d7e51' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1144619882], ["username", "billy_26"], ["access_token", "943c81ee2282d7d2676aef93bde73567"], ["uuid", "7641aff2-3bf8-4a32-8f52-5c0001fed433"], ["support_identifier", "cs_e99d7e51"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:16.377301"], ["updated_at", "2018-10-16 17:23:16.377301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805299606 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f25218d4-d8e1-4d5c-8e3e-5db042a8171d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1a642dce' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -805299606], ["username", "billy_27"], ["access_token", "0cc1acd7ba2cb29020b1a55be4659189"], ["uuid", "f25218d4-d8e1-4d5c-8e3e-5db042a8171d"], ["support_identifier", "cs_1a642dce"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:16.381379"], ["updated_at", "2018-10-16 17:23:16.381379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1498632369 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1edf6d23-8e3e-42ba-8277-8131a9e11729' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_baca3596' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1498632369], ["username", "billy_28"], ["access_token", "155e7ae483eeae5991920ac6deb816df"], ["uuid", "1edf6d23-8e3e-42ba-8277-8131a9e11729"], ["support_identifier", "cs_baca3596"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:16.385455"], ["updated_at", "2018-10-16 17:23:16.385455"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1146731069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ffef8b4f-62b6-4a88-8180-00ce0a881611' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8653fff5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1146731069], ["username", "billy_29"], ["access_token", "4b2217c08f43931a45204bc3ab6e5952"], ["uuid", "ffef8b4f-62b6-4a88-8180-00ce0a881611"], ["support_identifier", "cs_8653fff5"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:16.393467"], ["updated_at", "2018-10-16 17:23:16.393467"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1859293328 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2507c76-1a0e-4085-a70e-03c491472551' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_545c1538' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1859293328], ["username", "billy_30"], ["access_token", "ab8b76e65cfe49f751252f5ec333d236"], ["uuid", "d2507c76-1a0e-4085-a70e-03c491472551"], ["support_identifier", "cs_545c1538"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:16.398198"], ["updated_at", "2018-10-16 17:23:16.398198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -998892279 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '03428cbc-c9fa-4bf3-985b-6435ed6d6479' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_537d555d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -998892279], ["username", "billy_31"], ["access_token", "e8b20d64b9e34b4741cee7de7a42778a"], ["uuid", "03428cbc-c9fa-4bf3-985b-6435ed6d6479"], ["support_identifier", "cs_537d555d"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:16.406840"], ["updated_at", "2018-10-16 17:23:16.406840"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -667562037 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a65c45d7-f99d-43d1-a985-0f6db668219a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e40fa5e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -667562037], ["username", "billy_32"], ["access_token", "b718faa43811bd71be813b9856a0b72e"], ["uuid", "a65c45d7-f99d-43d1-a985-0f6db668219a"], ["support_identifier", "cs_e40fa5e1"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:16.410980"], ["updated_at", "2018-10-16 17:23:16.410980"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -620696955 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9456fc4-d290-46ec-8433-ecb4074faced' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc6084b3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -620696955], ["username", "billy_33"], ["access_token", "e8b6a9f0dbb0ef87bca8ba5368433609"], ["uuid", "b9456fc4-d290-46ec-8433-ecb4074faced"], ["support_identifier", "cs_dc6084b3"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:16.414955"], ["updated_at", "2018-10-16 17:23:16.414955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -916325676 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd5865955-c47e-4007-a45a-3f2c6e0aa99d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a8c28f5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -916325676], ["username", "billy_34"], ["access_token", "85638a9d995e5b81c37278dcba13e805"], ["uuid", "d5865955-c47e-4007-a45a-3f2c6e0aa99d"], ["support_identifier", "cs_6a8c28f5"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:16.419046"], ["updated_at", "2018-10-16 17:23:16.419046"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2015619951 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1665cea4-f8f0-44be-ad9e-c75aa929cc84' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67d5ef5b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2015619951], ["username", "billy_35"], ["access_token", "2e8b8f0c684da90d9f8dcf780bedb518"], ["uuid", "1665cea4-f8f0-44be-ad9e-c75aa929cc84"], ["support_identifier", "cs_67d5ef5b"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:16.423709"], ["updated_at", "2018-10-16 17:23:16.423709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1283530554 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e2eaf00-376d-46c3-b93c-5b3ddf485be1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_94c06fd9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1283530554], ["username", "billy_36"], ["access_token", "e0892b5fb4a5ee1219f6ea6cac850bd7"], ["uuid", "2e2eaf00-376d-46c3-b93c-5b3ddf485be1"], ["support_identifier", "cs_94c06fd9"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:16.427916"], ["updated_at", "2018-10-16 17:23:16.427916"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -609231308 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11cdc7ea-b36b-4c21-9733-6706766c77bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f9abadd4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -609231308], ["username", "billy_37"], ["access_token", "90c5dedf55e3bf2f505a7b20d9f47e25"], ["uuid", "11cdc7ea-b36b-4c21-9733-6706766c77bf"], ["support_identifier", "cs_f9abadd4"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:16.431885"], ["updated_at", "2018-10-16 17:23:16.431885"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1519425617 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '04d42ca5-db2b-4937-b1fe-69c0db422c99' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_151004cb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1519425617], ["username", "billy_38"], ["access_token", "48a9b790efacbb4de365e9c1e42499b3"], ["uuid", "04d42ca5-db2b-4937-b1fe-69c0db422c99"], ["support_identifier", "cs_151004cb"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:16.435967"], ["updated_at", "2018-10-16 17:23:16.435967"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1680031845 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3e8f80c6-8d81-49ed-abd3-497a7618fd02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_feab70ec' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1680031845], ["username", "billy_39"], ["access_token", "f96922d70a1273256b5d3df8e505b3b4"], ["uuid", "3e8f80c6-8d81-49ed-abd3-497a7618fd02"], ["support_identifier", "cs_feab70ec"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:16.443463"], ["updated_at", "2018-10-16 17:23:16.443463"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1818166954 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cff57037-563b-4fe6-8290-a32b72a8f5e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3a18c9e4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1818166954], ["username", "billy_40"], ["access_token", "e53eaacd3a5a5b121484dd4ac1a748d9"], ["uuid", "cff57037-563b-4fe6-8290-a32b72a8f5e7"], ["support_identifier", "cs_3a18c9e4"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:16.447901"], ["updated_at", "2018-10-16 17:23:16.447901"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -724369235 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6fb4166e-0cc5-4def-b0a1-295a51924e79' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_745f98b0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -724369235], ["username", "billy_41"], ["access_token", "df31aa500711e201dda37c832ae251fd"], ["uuid", "6fb4166e-0cc5-4def-b0a1-295a51924e79"], ["support_identifier", "cs_745f98b0"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:16.452505"], ["updated_at", "2018-10-16 17:23:16.452505"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1204617642 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '467ca50a-7d95-47d1-8db1-bbb2f5c30266' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_24f81df1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1204617642], ["username", "billy_42"], ["access_token", "c18ed748bdfa1a3dd28a8f2544b38a79"], ["uuid", "467ca50a-7d95-47d1-8db1-bbb2f5c30266"], ["support_identifier", "cs_24f81df1"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:16.457244"], ["updated_at", "2018-10-16 17:23:16.457244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1963441563 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '449dd711-53b0-4440-89ea-93382dd8c2e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d4610a7e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1963441563], ["username", "billy_43"], ["access_token", "f77d7181943062754159a4b2066be757"], ["uuid", "449dd711-53b0-4440-89ea-93382dd8c2e3"], ["support_identifier", "cs_d4610a7e"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:16.461510"], ["updated_at", "2018-10-16 17:23:16.461510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1014764450 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cd0ac1d5-082b-437f-8cbd-d6449f89727e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1ca514b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1014764450], ["username", "billy_44"], ["access_token", "f3d605fa156cffc64432d5b86de4e7c4"], ["uuid", "cd0ac1d5-082b-437f-8cbd-d6449f89727e"], ["support_identifier", "cs_f1ca514b"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:16.465710"], ["updated_at", "2018-10-16 17:23:16.465710"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -682030729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5915cc4-c6fc-4f3f-8880-bf592b21558b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc23632e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -682030729], ["username", "billy_45"], ["access_token", "4643c25b9dd739508fb0c8fe29259af7"], ["uuid", "b5915cc4-c6fc-4f3f-8880-bf592b21558b"], ["support_identifier", "cs_cc23632e"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:16.469994"], ["updated_at", "2018-10-16 17:23:16.469994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -559509667 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '318f0ea2-8403-4acf-9ad0-098795960272' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4c01ec08' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -559509667], ["username", "billy_46"], ["access_token", "34880b026226b82fdee3107ce0b201fb"], ["uuid", "318f0ea2-8403-4acf-9ad0-098795960272"], ["support_identifier", "cs_4c01ec08"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:16.474531"], ["updated_at", "2018-10-16 17:23:16.474531"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -349894993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '46ec18c4-b228-476a-a934-e7953d2651eb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9fdeaa31' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -349894993], ["username", "billy_47"], ["access_token", "78bac0af177d93aa00a3a1644d3990bf"], ["uuid", "46ec18c4-b228-476a-a934-e7953d2651eb"], ["support_identifier", "cs_9fdeaa31"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:16.478732"], ["updated_at", "2018-10-16 17:23:16.478732"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -839480886 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cab05c25-1afb-453b-840e-bd1654f67114' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54a559f6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -839480886], ["username", "billy_48"], ["access_token", "a72673612f44ea21f997fffdfc821876"], ["uuid", "cab05c25-1afb-453b-840e-bd1654f67114"], ["support_identifier", "cs_54a559f6"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:16.482732"], ["updated_at", "2018-10-16 17:23:16.482732"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -482431559 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf77657d-a1dc-47d7-aedc-870f0001b5df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_817b1af7' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -482431559], ["username", "billy_49"], ["access_token", "2e7a5d943112a5e6d662918b52cd1d66"], ["uuid", "bf77657d-a1dc-47d7-aedc-870f0001b5df"], ["support_identifier", "cs_817b1af7"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:16.486954"], ["updated_at", "2018-10-16 17:23:16.486954"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -725666575 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'afdaadf0-7368-479b-bcf2-013cd7c5c485' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fb10400c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -725666575], ["username", "jstrav"], ["access_token", "01186b67ce8da1bd4aedab6e0a112ace"], ["uuid", "afdaadf0-7368-479b-bcf2-013cd7c5c485"], ["support_identifier", "cs_fb10400c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:16.496198"], ["updated_at", "2018-10-16 17:23:16.496198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1688367809 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8974e0c9-37f7-4831-a976-ba8f880efeac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78265f43' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1688367809], ["username", "mary"], ["access_token", "a572befdec9a2e06456223f393bcda62"], ["uuid", "8974e0c9-37f7-4831-a976-ba8f880efeac"], ["support_identifier", "cs_78265f43"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:16.500607"], ["updated_at", "2018-10-16 17:23:16.500607"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1410725132 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b712ed5-b21a-47bb-8615-d861ea63af58' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_74da7fda' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1410725132], ["username", "jstead"], ["access_token", "86bbf8f85d337d505ed3bf88f3793831"], ["uuid", "1b712ed5-b21a-47bb-8615-d861ea63af58"], ["support_identifier", "cs_74da7fda"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:16.505336"], ["updated_at", "2018-10-16 17:23:16.505336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2099908687 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a81b68d4-e635-4eda-8b83-4591ce5ba183' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22c02796' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2099908687], ["username", "bigbear"], ["access_token", "d01c983ff81db0a4b023cf71e4c8b65d"], ["uuid", "a81b68d4-e635-4eda-8b83-4591ce5ba183"], ["support_identifier", "cs_22c02796"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:16.509534"], ["updated_at", "2018-10-16 17:23:16.509534"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1092776525 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bad1bf63-3259-4c4a-99fc-aa044595fad5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34996a18' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1092776525], ["username", "billy_00"], ["access_token", "d172ecc8693e0c4be86e43ede85f73b1"], ["uuid", "bad1bf63-3259-4c4a-99fc-aa044595fad5"], ["support_identifier", "cs_34996a18"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:23:16.513623"], ["updated_at", "2018-10-16 17:23:16.513623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -433997290 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7bf21889-db21-4675-bf70-161dab861780' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_416e050b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -433997290], ["username", "billy_01"], ["access_token", "838032d2492812830321b0f2fc6e8c65"], ["uuid", "7bf21889-db21-4675-bf70-161dab861780"], ["support_identifier", "cs_416e050b"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:23:16.517672"], ["updated_at", "2018-10-16 17:23:16.517672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2041700166 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ac0d112-9058-4241-b7d9-80e207d6777f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79045eb5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2041700166], ["username", "billy_02"], ["access_token", "72c22f3a6995b792dc4154153f46c348"], ["uuid", "3ac0d112-9058-4241-b7d9-80e207d6777f"], ["support_identifier", "cs_79045eb5"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:23:16.522403"], ["updated_at", "2018-10-16 17:23:16.522403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2094829313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25304beb-2695-4de9-8b6a-1dfc631b3523' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_00f2246d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2094829313], ["username", "billy_03"], ["access_token", "1b44cb3e06ac03559c8b0cf8d11024f0"], ["uuid", "25304beb-2695-4de9-8b6a-1dfc631b3523"], ["support_identifier", "cs_00f2246d"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:23:16.526756"], ["updated_at", "2018-10-16 17:23:16.526756"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1547985228 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '348beec2-ac22-4951-81cc-33783b4711c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_730887c5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1547985228], ["username", "billy_04"], ["access_token", "ce5df3ccb8a620ff410d7fd33fad7306"], ["uuid", "348beec2-ac22-4951-81cc-33783b4711c0"], ["support_identifier", "cs_730887c5"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:16.531062"], ["updated_at", "2018-10-16 17:23:16.531062"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1891656820 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c9a2a5df-0e31-41bd-b104-447f8df3c6ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f523f23d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1891656820], ["username", "billy_05"], ["access_token", "fe32b67e48fd1757e2425bdfaad79b01"], ["uuid", "c9a2a5df-0e31-41bd-b104-447f8df3c6ea"], ["support_identifier", "cs_f523f23d"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:16.535126"], ["updated_at", "2018-10-16 17:23:16.535126"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -939905133 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1435b7c8-b0e5-4e13-bc18-d65c30a5188a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9d8b23d5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -939905133], ["username", "billy_06"], ["access_token", "8f0658443a50f638bfcc11873819b353"], ["uuid", "1435b7c8-b0e5-4e13-bc18-d65c30a5188a"], ["support_identifier", "cs_9d8b23d5"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:16.543495"], ["updated_at", "2018-10-16 17:23:16.543495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -437448158 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8613ef1-86b1-4542-8087-dce82a83d5c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8529b438' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -437448158], ["username", "billy_07"], ["access_token", "05d1ce5d0b32a42c3fdede09c524826a"], ["uuid", "f8613ef1-86b1-4542-8087-dce82a83d5c4"], ["support_identifier", "cs_8529b438"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:16.547874"], ["updated_at", "2018-10-16 17:23:16.547874"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -310001459 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73b0ce6c-e8e8-49d8-877c-4ce0a6063570' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2fbd75eb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -310001459], ["username", "billy_08"], ["access_token", "b8c06b250fab0c94c3fb72afa70ef1f3"], ["uuid", "73b0ce6c-e8e8-49d8-877c-4ce0a6063570"], ["support_identifier", "cs_2fbd75eb"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:16.552688"], ["updated_at", "2018-10-16 17:23:16.552688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1049237895 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0369d773-a7a0-452b-a71c-38affb3dc80b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_48941eff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1049237895], ["username", "billy_09"], ["access_token", "41ab0ae0eae980980954f423b2a73731"], ["uuid", "0369d773-a7a0-452b-a71c-38affb3dc80b"], ["support_identifier", "cs_48941eff"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:16.557148"], ["updated_at", "2018-10-16 17:23:16.557148"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -555845319 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '860ff57c-c4f8-4da3-bed6-881c0350db51' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98a85d06' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -555845319], ["username", "billy_10"], ["access_token", "0510d29cbb24f8f8ace657d3526e6cd7"], ["uuid", "860ff57c-c4f8-4da3-bed6-881c0350db51"], ["support_identifier", "cs_98a85d06"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:16.561380"], ["updated_at", "2018-10-16 17:23:16.561380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -808173529 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f0d13fde-c209-4a87-ad2f-ee435ddcf7c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3a5c1efa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -808173529], ["username", "billy_11"], ["access_token", "9db8ac8d5670486344a0e6424279a86b"], ["uuid", "f0d13fde-c209-4a87-ad2f-ee435ddcf7c0"], ["support_identifier", "cs_3a5c1efa"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:16.565457"], ["updated_at", "2018-10-16 17:23:16.565457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1256780299 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '299ab232-4328-472b-8481-13dbb3bbd76b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e1718d66' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1256780299], ["username", "billy_12"], ["access_token", "7643bbf87d0bf456cd0a2f50c1c60d52"], ["uuid", "299ab232-4328-472b-8481-13dbb3bbd76b"], ["support_identifier", "cs_e1718d66"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:16.569998"], ["updated_at", "2018-10-16 17:23:16.569998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -29392063 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7115939-8008-4577-ba45-72736a2b8000' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cda8bf5e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -29392063], ["username", "billy_13"], ["access_token", "6caa2c16ce3631e8710e971064fd84a7"], ["uuid", "b7115939-8008-4577-ba45-72736a2b8000"], ["support_identifier", "cs_cda8bf5e"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:16.574220"], ["updated_at", "2018-10-16 17:23:16.574220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2016910226 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fe2b7662-9976-4837-abee-c69759f744fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4aa0d91a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2016910226], ["username", "billy_14"], ["access_token", "726be2b56230a1e47b34e5704b5ac10e"], ["uuid", "fe2b7662-9976-4837-abee-c69759f744fa"], ["support_identifier", "cs_4aa0d91a"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:16.578276"], ["updated_at", "2018-10-16 17:23:16.578276"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -332396038 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ff746f79-3625-4d6f-a395-0e46fb45dfd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9e0e4a64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -332396038], ["username", "billy_15"], ["access_token", "af38bbbd2cae5ff6d00a8ef1027cd6b8"], ["uuid", "ff746f79-3625-4d6f-a395-0e46fb45dfd8"], ["support_identifier", "cs_9e0e4a64"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:16.582525"], ["updated_at", "2018-10-16 17:23:16.582525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -11625631 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '62ec9931-7966-4586-9a85-abc86f321050' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_975944e0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -11625631], ["username", "billy_16"], ["access_token", "07e11d2f88ec801171a47b2a293947a7"], ["uuid", "62ec9931-7966-4586-9a85-abc86f321050"], ["support_identifier", "cs_975944e0"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:16.590445"], ["updated_at", "2018-10-16 17:23:16.590445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1345400378 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '579e5ac5-73e2-4de1-b858-b6e2e4301aa4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e2befe46' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1345400378], ["username", "billy_17"], ["access_token", "6a995c0dd4a157cf2a1f5d84f0771d46"], ["uuid", "579e5ac5-73e2-4de1-b858-b6e2e4301aa4"], ["support_identifier", "cs_e2befe46"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:16.594963"], ["updated_at", "2018-10-16 17:23:16.594963"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2141398590 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0f3780d-2337-4a87-8c75-6d557f334ae1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bd25b11e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2141398590], ["username", "billy_18"], ["access_token", "6bfcb30cd7baa940d1d2998b850fe051"], ["uuid", "e0f3780d-2337-4a87-8c75-6d557f334ae1"], ["support_identifier", "cs_bd25b11e"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:16.599013"], ["updated_at", "2018-10-16 17:23:16.599013"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1157498372 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f9d0539-eb5d-4dd1-b703-f1e045810f52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8e8c0abe' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1157498372], ["username", "billy_19"], ["access_token", "d9d0ccd98da0d52e26cc349d9e97c539"], ["uuid", "5f9d0539-eb5d-4dd1-b703-f1e045810f52"], ["support_identifier", "cs_8e8c0abe"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:16.603806"], ["updated_at", "2018-10-16 17:23:16.603806"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1130677923 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dc379be4-efae-48fe-8f65-2ad8a56eeeeb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88567e14' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1130677923], ["username", "billy_20"], ["access_token", "dfbbd6b06e90df52c0ff9480551a2dc9"], ["uuid", "dc379be4-efae-48fe-8f65-2ad8a56eeeeb"], ["support_identifier", "cs_88567e14"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:16.608670"], ["updated_at", "2018-10-16 17:23:16.608670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -994078019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc7fb999-bf6d-4dd2-aace-0566cc15e50c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce22b1ac' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -994078019], ["username", "billy_21"], ["access_token", "972547431523539c6ac121c1a687c6d3"], ["uuid", "fc7fb999-bf6d-4dd2-aace-0566cc15e50c"], ["support_identifier", "cs_ce22b1ac"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:16.612852"], ["updated_at", "2018-10-16 17:23:16.612852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -779845425 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb069d96-f26c-4643-be0a-d62f0498c1e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_afc0ba5e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -779845425], ["username", "billy_22"], ["access_token", "fa20c374fb508ad1c30a4017695cf6cc"], ["uuid", "bb069d96-f26c-4643-be0a-d62f0498c1e3"], ["support_identifier", "cs_afc0ba5e"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:16.616882"], ["updated_at", "2018-10-16 17:23:16.616882"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -320701250 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3dba40a6-68c3-4169-ac77-96bff982c4e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1825eec2' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -320701250], ["username", "billy_23"], ["access_token", "1e519a5d8c4747aeec398b5e320a0ee1"], ["uuid", "3dba40a6-68c3-4169-ac77-96bff982c4e2"], ["support_identifier", "cs_1825eec2"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:16.622977"], ["updated_at", "2018-10-16 17:23:16.622977"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2130998484 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c079fe59-504a-428b-afe2-74ff66ce2692' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1fdc64b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2130998484], ["username", "billy_24"], ["access_token", "b52b383680477bb5502869f388352ec1"], ["uuid", "c079fe59-504a-428b-afe2-74ff66ce2692"], ["support_identifier", "cs_1fdc64b2"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:16.629100"], ["updated_at", "2018-10-16 17:23:16.629100"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -512416335 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a63a7ee9-dbb2-456a-8860-84ecc002f35f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0a278aa3' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -512416335], ["username", "billy_25"], ["access_token", "07b334349425d44377e46bebe2474ffc"], ["uuid", "a63a7ee9-dbb2-456a-8860-84ecc002f35f"], ["support_identifier", "cs_0a278aa3"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:16.636559"], ["updated_at", "2018-10-16 17:23:16.636559"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1132323316 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1eb27355-476f-46b7-8b23-2c8a17446ae1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71b6993e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1132323316], ["username", "billy_26"], ["access_token", "2dfc5085451c422b6922c275b1823e83"], ["uuid", "1eb27355-476f-46b7-8b23-2c8a17446ae1"], ["support_identifier", "cs_71b6993e"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:16.641653"], ["updated_at", "2018-10-16 17:23:16.641653"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -414991204 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f2ec0ee-05c0-4616-af92-c993aa0a28b5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22dfb7a4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -414991204], ["username", "billy_27"], ["access_token", "16cd168c4fdcd57aa5b6ede166f347c2"], ["uuid", "1f2ec0ee-05c0-4616-af92-c993aa0a28b5"], ["support_identifier", "cs_22dfb7a4"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:16.645873"], ["updated_at", "2018-10-16 17:23:16.645873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1499938519 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '186d8264-87b0-4acb-8ff0-1690d0f71989' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fed8a248' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1499938519], ["username", "billy_28"], ["access_token", "f870359a2e38c60c7f316685c1212a80"], ["uuid", "186d8264-87b0-4acb-8ff0-1690d0f71989"], ["support_identifier", "cs_fed8a248"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:16.650065"], ["updated_at", "2018-10-16 17:23:16.650065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -694792008 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f9643e1-c53a-473f-aa21-2b5337825803' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_265e00df' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -694792008], ["username", "billy_29"], ["access_token", "f68c6bb52779799ade9a273d18690816"], ["uuid", "5f9643e1-c53a-473f-aa21-2b5337825803"], ["support_identifier", "cs_265e00df"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:16.654941"], ["updated_at", "2018-10-16 17:23:16.654941"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071863789 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bcaafed9-dca0-4d31-80aa-fad67334b7fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b87f77b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1071863789], ["username", "billy_30"], ["access_token", "825083b70626fa549be2bbb3073ff237"], ["uuid", "bcaafed9-dca0-4d31-80aa-fad67334b7fa"], ["support_identifier", "cs_9b87f77b"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:16.661872"], ["updated_at", "2018-10-16 17:23:16.661872"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -650383411 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0a28f85-9995-444a-9091-88e270f0bd30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_00b08b39' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -650383411], ["username", "billy_31"], ["access_token", "627de19a801ca2cf7f2b5db7d2210561"], ["uuid", "d0a28f85-9995-444a-9091-88e270f0bd30"], ["support_identifier", "cs_00b08b39"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:16.666016"], ["updated_at", "2018-10-16 17:23:16.666016"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -564250916 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4988e53-5dbc-4dfc-925a-709cb44cfd5c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_84220026' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -564250916], ["username", "billy_32"], ["access_token", "846545582020397f053163c386a7d96e"], ["uuid", "e4988e53-5dbc-4dfc-925a-709cb44cfd5c"], ["support_identifier", "cs_84220026"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:16.670260"], ["updated_at", "2018-10-16 17:23:16.670260"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1187802966 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be7b0303-c702-4a9b-8d0e-fbb62234b80d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b6b4a86e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1187802966], ["username", "billy_33"], ["access_token", "9c0caf273ec6636cb83f2817873bffad"], ["uuid", "be7b0303-c702-4a9b-8d0e-fbb62234b80d"], ["support_identifier", "cs_b6b4a86e"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:16.674923"], ["updated_at", "2018-10-16 17:23:16.674923"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1991389593 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c9275e6d-3515-4cb2-8a2c-8bcba91a03e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_812f3408' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1991389593], ["username", "billy_34"], ["access_token", "202663afb78eb2a73dc802d43ba3c3aa"], ["uuid", "c9275e6d-3515-4cb2-8a2c-8bcba91a03e6"], ["support_identifier", "cs_812f3408"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:16.679104"], ["updated_at", "2018-10-16 17:23:16.679104"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2020694377 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c34c3b7e-2b58-4579-aa96-ac8d82d062a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_daf38a2b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2020694377], ["username", "billy_35"], ["access_token", "014ce8e905e990ed357c8a8f6197ff71"], ["uuid", "c34c3b7e-2b58-4579-aa96-ac8d82d062a6"], ["support_identifier", "cs_daf38a2b"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:16.683202"], ["updated_at", "2018-10-16 17:23:16.683202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -627843110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '55efd9c3-a8a5-46e7-958b-19310b6d1059' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa82b5e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -627843110], ["username", "billy_36"], ["access_token", "4bae197df437ce8d8ca23489358a7a4b"], ["uuid", "55efd9c3-a8a5-46e7-958b-19310b6d1059"], ["support_identifier", "cs_fa82b5e1"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:16.687449"], ["updated_at", "2018-10-16 17:23:16.687449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1649445614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4436037b-0181-4b43-abab-50b0a85cfcc5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b0b4f1f9' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1649445614], ["username", "billy_37"], ["access_token", "a153533fe3d465390823453ad1c91477"], ["uuid", "4436037b-0181-4b43-abab-50b0a85cfcc5"], ["support_identifier", "cs_b0b4f1f9"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:16.693480"], ["updated_at", "2018-10-16 17:23:16.693480"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1381280927 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f65cc193-9f9a-4864-be91-4b709b2e1e53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1739143' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1381280927], ["username", "billy_38"], ["access_token", "428718ee679161667712cf2dfc9a2686"], ["uuid", "f65cc193-9f9a-4864-be91-4b709b2e1e53"], ["support_identifier", "cs_d1739143"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:16.699063"], ["updated_at", "2018-10-16 17:23:16.699063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1885735996 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27407e55-b809-4459-b1c5-d0f763b5a909' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_059c8339' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1885735996], ["username", "billy_39"], ["access_token", "0f7293aa16f26ed006f7e51fc7a60e64"], ["uuid", "27407e55-b809-4459-b1c5-d0f763b5a909"], ["support_identifier", "cs_059c8339"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:16.704084"], ["updated_at", "2018-10-16 17:23:16.704084"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1440288786 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '37c31718-c7c4-4ae6-bfe5-4c1d6b22995e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5ebd8c52' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1440288786], ["username", "billy_40"], ["access_token", "5f2a74b1d78cd3430a824cb58df6ce46"], ["uuid", "37c31718-c7c4-4ae6-bfe5-4c1d6b22995e"], ["support_identifier", "cs_5ebd8c52"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:16.708428"], ["updated_at", "2018-10-16 17:23:16.708428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1392757724 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a6f0410e-c7e1-4e59-8a15-d58f073b2db2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6b19b9f9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1392757724], ["username", "billy_41"], ["access_token", "a9cd16fdba4c2fa9550a811afbe2b5c9"], ["uuid", "a6f0410e-c7e1-4e59-8a15-d58f073b2db2"], ["support_identifier", "cs_6b19b9f9"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:16.712571"], ["updated_at", "2018-10-16 17:23:16.712571"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1796447516 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '44c77767-17f3-47d1-bd95-7c340ab1dc65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3999cecc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1796447516], ["username", "billy_42"], ["access_token", "e8d895ddbf34c48a3ecc2e8b1f449e05"], ["uuid", "44c77767-17f3-47d1-bd95-7c340ab1dc65"], ["support_identifier", "cs_3999cecc"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:16.716618"], ["updated_at", "2018-10-16 17:23:16.716618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1273770255 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '51522825-2281-4a0d-ac5d-2ed1321fd3d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3bb8a30' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1273770255], ["username", "billy_43"], ["access_token", "53e6b106bc229935983ebf038f8097c6"], ["uuid", "51522825-2281-4a0d-ac5d-2ed1321fd3d8"], ["support_identifier", "cs_f3bb8a30"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:16.721309"], ["updated_at", "2018-10-16 17:23:16.721309"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -448958797 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0ff758ed-9709-47a4-b295-95a8a06ed211' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8850ed24' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -448958797], ["username", "billy_44"], ["access_token", "31534631ade0040899a64de7946d3eac"], ["uuid", "0ff758ed-9709-47a4-b295-95a8a06ed211"], ["support_identifier", "cs_8850ed24"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:16.728037"], ["updated_at", "2018-10-16 17:23:16.728037"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013745276 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '936b062e-8b13-4bd1-baba-4a721895a63d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_812f66aa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2013745276], ["username", "billy_45"], ["access_token", "ad818c09bbcf55edc9b8a1964d1a083f"], ["uuid", "936b062e-8b13-4bd1-baba-4a721895a63d"], ["support_identifier", "cs_812f66aa"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:16.732141"], ["updated_at", "2018-10-16 17:23:16.732141"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -867506539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4767ff35-3e97-478b-b8b6-da2ad83112f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06ca9e8a' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -867506539], ["username", "billy_46"], ["access_token", "6ff67c1bbd11654d7ee96958204352e5"], ["uuid", "4767ff35-3e97-478b-b8b6-da2ad83112f6"], ["support_identifier", "cs_06ca9e8a"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:16.736309"], ["updated_at", "2018-10-16 17:23:16.736309"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1360827817 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c46c0244-a48a-4386-99f7-e3667085ccc3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30ea1139' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1360827817], ["username", "billy_47"], ["access_token", "425772e0b1c8fa97aa83098877a76240"], ["uuid", "c46c0244-a48a-4386-99f7-e3667085ccc3"], ["support_identifier", "cs_30ea1139"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:16.741198"], ["updated_at", "2018-10-16 17:23:16.741198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -599304419 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2a98195-56c4-4d3a-926e-b77a87d2ff8a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_71a1b17f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -599304419], ["username", "billy_48"], ["access_token", "8219a0f275e5d1501faf66d345e465bc"], ["uuid", "a2a98195-56c4-4d3a-926e-b77a87d2ff8a"], ["support_identifier", "cs_71a1b17f"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:16.745299"], ["updated_at", "2018-10-16 17:23:16.745299"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1573320468 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ebe8c7d6-d471-4ec6-bf19-3e63de55700a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1da20f7f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1573320468], ["username", "billy_49"], ["access_token", "6642d2f596e4516f04577a8345d7e2d0"], ["uuid", "ebe8c7d6-d471-4ec6-bf19-3e63de55700a"], ["support_identifier", "cs_1da20f7f"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:16.749325"], ["updated_at", "2018-10-16 17:23:16.749325"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'billy%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c2b135c-f7b2-4892-aa8f-ea7c3471fdc3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_203c54af' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "3232d1d69d61325e6a7a05a5021f0794"], ["uuid", "8c2b135c-f7b2-4892-aa8f-ea7c3471fdc3"], ["support_identifier", "cs_203c54af"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:16.760586"], ["updated_at", "2018-10-16 17:23:16.760586"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 396], ["created_at", "2018-10-16 17:23:16.762586"], ["updated_at", "2018-10-16 17:23:16.762586"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'another_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24ecfaba-35c7-432e-a269-437ea6eb5ff1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_910493ad' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "another_user"], ["access_token", "f90b52209b37cb109ea67c62b5dd318e"], ["uuid", "24ecfaba-35c7-432e-a269-437ea6eb5ff1"], ["support_identifier", "cs_910493ad"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:16.766419"], ["updated_at", "2018-10-16 17:23:16.766419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 397], ["created_at", "2018-10-16 17:23:16.768018"], ["updated_at", "2018-10-16 17:23:16.768018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -337766322 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -337766322], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:16.770333"], ["updated_at", "2018-10-16 17:23:16.770333"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1818859981 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1818859981], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:16.773081"], ["updated_at", "2018-10-16 17:23:16.773081"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 8 LIMIT 1 + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -1818859981 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -1818859981 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 8]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 7]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -337766322 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -337766322 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 7]] + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1818859981 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -337766322 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -337766322], ["member_group_id", -1818859981], ["created_at", "2018-10-16 17:23:16.775306"], ["updated_at", "2018-10-16 17:23:16.775306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 396 AND "openstax_accounts_group_members"."group_id" = -1818859981) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 396 AND "openstax_accounts_group_members"."group_id" = -1818859981) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -1818859981], ["user_id", 1], ["created_at", "2018-10-16 17:23:16.786919"], ["updated_at", "2018-10-16 17:23:16.786919"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 396 AND "openstax_accounts_group_members"."id" != 4 AND "openstax_accounts_group_members"."group_id" = -1818859981) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + Ownership Load (0.3ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 396]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1818859981 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -1818859981 +- -337766322 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 8]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.5ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.5ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 7], ["owner_type", "User"], ["created_at", "2018-10-16 17:23:16.814069"], ["updated_at", "2018-10-16 17:23:16.814069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.7ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 396]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 6], ["owner_type", "User"], ["created_at", "2018-10-16 17:23:16.821604"], ["updated_at", "2018-10-16 17:23:16.821604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 396]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 8], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 17:23:16.827485"], ["updated_at", "2018-10-16 17:23:16.827485"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.3ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 396]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 7], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 17:23:16.835635"], ["updated_at", "2018-10-16 17:23:16.835635"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 6]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 6], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 396]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1818859981, -337766322) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (7, 8) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -282947216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9abeba8e-6024-4014-baa7-c58c2551db5a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_213c59ed' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -282947216], ["username", "jstrav"], ["access_token", "87f6806c008228ef829a61a9e05664ca"], ["uuid", "9abeba8e-6024-4014-baa7-c58c2551db5a"], ["support_identifier", "cs_213c59ed"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:16.850267"], ["updated_at", "2018-10-16 17:23:16.850267"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1086465305 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2ac752f-6a5c-4bd2-8f3a-1b9a94c21593' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60fe43d6' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1086465305], ["username", "mary"], ["access_token", "9d37471ea186fc147bf3fcde15003a11"], ["uuid", "d2ac752f-6a5c-4bd2-8f3a-1b9a94c21593"], ["support_identifier", "cs_60fe43d6"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:16.857075"], ["updated_at", "2018-10-16 17:23:16.857075"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1980789948 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '31c87380-c7ec-465e-b78a-89fb0fa6764e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_054dde7c' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1980789948], ["username", "jstead"], ["access_token", "57d3532b35b6aafe61f52f7c270fadbd"], ["uuid", "31c87380-c7ec-465e-b78a-89fb0fa6764e"], ["support_identifier", "cs_054dde7c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:16.862686"], ["updated_at", "2018-10-16 17:23:16.862686"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -549197196 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ed57401-7ddc-4d3f-9abe-c3a68563a96a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9bd2403' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -549197196], ["username", "bigbear"], ["access_token", "003f82c29ad9cb0fad3df2c1e15b582f"], ["uuid", "3ed57401-7ddc-4d3f-9abe-c3a68563a96a"], ["support_identifier", "cs_b9bd2403"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:16.867596"], ["updated_at", "2018-10-16 17:23:16.867596"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -294569977 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2920b4ae-f314-49fb-90e9-90bfe665b8ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04665f51' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -294569977], ["username", "billy_00"], ["access_token", "a379ba32d704064849e863f8aa80065f"], ["uuid", "2920b4ae-f314-49fb-90e9-90bfe665b8ee"], ["support_identifier", "cs_04665f51"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:23:16.876426"], ["updated_at", "2018-10-16 17:23:16.876426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -169694455 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '023f23d4-e7d6-4c4e-9b74-1104471a70bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5aba75b6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -169694455], ["username", "billy_01"], ["access_token", "f143fe0fd2bbab34a71967f1971c724f"], ["uuid", "023f23d4-e7d6-4c4e-9b74-1104471a70bb"], ["support_identifier", "cs_5aba75b6"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:23:16.880827"], ["updated_at", "2018-10-16 17:23:16.880827"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1822155770 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a033d049-1d3c-4cc5-8df6-827a408b7ad5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f88cbcc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1822155770], ["username", "billy_02"], ["access_token", "4d9a368d63ea5578fe33336ccb74ca06"], ["uuid", "a033d049-1d3c-4cc5-8df6-827a408b7ad5"], ["support_identifier", "cs_6f88cbcc"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:23:16.885300"], ["updated_at", "2018-10-16 17:23:16.885300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -725384960 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24a71c8a-23dc-48d3-867f-83ee84fae1e4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b89231f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -725384960], ["username", "billy_03"], ["access_token", "8fbd11d933aec209cc43e9d248effad8"], ["uuid", "24a71c8a-23dc-48d3-867f-83ee84fae1e4"], ["support_identifier", "cs_1b89231f"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:23:16.890012"], ["updated_at", "2018-10-16 17:23:16.890012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1104309242 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f35cba41-1531-4342-88c9-ad68621cba5b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a61c8c1e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1104309242], ["username", "billy_04"], ["access_token", "bd5ffd7e3e872b7e601fdaf294a925c1"], ["uuid", "f35cba41-1531-4342-88c9-ad68621cba5b"], ["support_identifier", "cs_a61c8c1e"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:16.894403"], ["updated_at", "2018-10-16 17:23:16.894403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -426583179 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '86de5f27-2c0f-4e5e-917f-bbefd5a6c700' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4c64e3a0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -426583179], ["username", "billy_05"], ["access_token", "c0ec1cc1f419474953190c872a7f042f"], ["uuid", "86de5f27-2c0f-4e5e-917f-bbefd5a6c700"], ["support_identifier", "cs_4c64e3a0"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:16.898417"], ["updated_at", "2018-10-16 17:23:16.898417"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -251464634 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a231c6f-9aca-48a8-9d93-d6fef3817bd6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9bc765f3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -251464634], ["username", "billy_06"], ["access_token", "9df2d0f3f32a89901dc48d8bbe7fab76"], ["uuid", "4a231c6f-9aca-48a8-9d93-d6fef3817bd6"], ["support_identifier", "cs_9bc765f3"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:16.903493"], ["updated_at", "2018-10-16 17:23:16.903493"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -779886300 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ecfc504c-28ac-4c05-ae5b-023ada3cf635' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54d497b8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -779886300], ["username", "billy_07"], ["access_token", "9a72bea3ca6672b0c61694c3a140094b"], ["uuid", "ecfc504c-28ac-4c05-ae5b-023ada3cf635"], ["support_identifier", "cs_54d497b8"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:16.907660"], ["updated_at", "2018-10-16 17:23:16.907660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1715672358 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c577d914-c86a-472a-bec9-597bba39cb09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee1927aa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1715672358], ["username", "billy_08"], ["access_token", "d25411ad8a7604a4ea2809202c90e210"], ["uuid", "c577d914-c86a-472a-bec9-597bba39cb09"], ["support_identifier", "cs_ee1927aa"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:16.911634"], ["updated_at", "2018-10-16 17:23:16.911634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142628851 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '21b5aa46-18f5-4b63-ba5d-a19933cdf144' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c2c0972' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -142628851], ["username", "billy_09"], ["access_token", "1936e326f4c9d54acbd488092ffa23ab"], ["uuid", "21b5aa46-18f5-4b63-ba5d-a19933cdf144"], ["support_identifier", "cs_6c2c0972"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:16.915724"], ["updated_at", "2018-10-16 17:23:16.915724"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -890357451 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3703eaf8-173e-4df0-ac2d-09065cecef2b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2481ff06' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -890357451], ["username", "billy_10"], ["access_token", "86256a6c47cd5294aebdb2df07421b95"], ["uuid", "3703eaf8-173e-4df0-ac2d-09065cecef2b"], ["support_identifier", "cs_2481ff06"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:16.923421"], ["updated_at", "2018-10-16 17:23:16.923421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1041669179 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '04994e71-3a83-49f0-afc2-53d1220ef2b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2193f583' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1041669179], ["username", "billy_11"], ["access_token", "f8fdae235ed981fb316aa889d1943282"], ["uuid", "04994e71-3a83-49f0-afc2-53d1220ef2b3"], ["support_identifier", "cs_2193f583"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:16.927955"], ["updated_at", "2018-10-16 17:23:16.927955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2102656885 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5d4cbf0e-0dc7-4709-a784-dd19e7e17b6d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed310193' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2102656885], ["username", "billy_12"], ["access_token", "ff13060dc5266f759822a5b5616cd9ff"], ["uuid", "5d4cbf0e-0dc7-4709-a784-dd19e7e17b6d"], ["support_identifier", "cs_ed310193"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:16.932073"], ["updated_at", "2018-10-16 17:23:16.932073"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1209442927 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '91ae527a-3153-4b5a-ad89-77c6427216cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b965e563' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1209442927], ["username", "billy_13"], ["access_token", "703029bdfee2dd3f62f2e556c4a37ae2"], ["uuid", "91ae527a-3153-4b5a-ad89-77c6427216cd"], ["support_identifier", "cs_b965e563"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:16.937239"], ["updated_at", "2018-10-16 17:23:16.937239"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639852083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce733309-0a8c-4281-b86e-f7c923864e01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57169437' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -639852083], ["username", "billy_14"], ["access_token", "e5db53bdab0cf2aab8f9491f2a33acc2"], ["uuid", "ce733309-0a8c-4281-b86e-f7c923864e01"], ["support_identifier", "cs_57169437"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:16.941767"], ["updated_at", "2018-10-16 17:23:16.941767"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1108390232 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f551eeb5-ed4f-495d-8c0b-caf7aa609210' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04be64eb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1108390232], ["username", "billy_15"], ["access_token", "6de2cd90e3d8c5909742b0b26152b5fc"], ["uuid", "f551eeb5-ed4f-495d-8c0b-caf7aa609210"], ["support_identifier", "cs_04be64eb"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:16.945838"], ["updated_at", "2018-10-16 17:23:16.945838"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -78390194 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e134770b-70b7-4efb-8450-99e9cd5d8cd3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_481df7da' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -78390194], ["username", "billy_16"], ["access_token", "413478feccd95e9d39d08e752a7db852"], ["uuid", "e134770b-70b7-4efb-8450-99e9cd5d8cd3"], ["support_identifier", "cs_481df7da"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:16.949873"], ["updated_at", "2018-10-16 17:23:16.949873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1724394293 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6411cbe0-8ce8-4e2f-938b-e11bed9bcfda' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_201cd0e3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1724394293], ["username", "billy_17"], ["access_token", "8c0fbcdb558097ac943c99bdc54aa985"], ["uuid", "6411cbe0-8ce8-4e2f-938b-e11bed9bcfda"], ["support_identifier", "cs_201cd0e3"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:16.954054"], ["updated_at", "2018-10-16 17:23:16.954054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -150298907 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '15345c4e-6946-4367-9904-b1a7e45d05a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d81c33c3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -150298907], ["username", "billy_18"], ["access_token", "0e0cb3ec909f82d06d54e2378d16293f"], ["uuid", "15345c4e-6946-4367-9904-b1a7e45d05a6"], ["support_identifier", "cs_d81c33c3"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:16.958379"], ["updated_at", "2018-10-16 17:23:16.958379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2030843708 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '83484082-03e2-40c6-bb77-110adb2e580e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1f835c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2030843708], ["username", "billy_19"], ["access_token", "2090aa442ff38404b3478fe1ed0fd024"], ["uuid", "83484082-03e2-40c6-bb77-110adb2e580e"], ["support_identifier", "cs_f1f835c8"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:16.962418"], ["updated_at", "2018-10-16 17:23:16.962418"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77449141 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e820435a-69cf-4c5e-b27a-74fba98001c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d639ad02' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -77449141], ["username", "billy_20"], ["access_token", "a32745c474a3cf9cdfa4f677c2049b67"], ["uuid", "e820435a-69cf-4c5e-b27a-74fba98001c7"], ["support_identifier", "cs_d639ad02"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:16.966417"], ["updated_at", "2018-10-16 17:23:16.966417"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1846783228 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b0f25c2-e05a-4c77-ad0a-4eeb7db97fab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bd76ba7' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1846783228], ["username", "billy_21"], ["access_token", "880b9644068f76521499c265648c73bc"], ["uuid", "3b0f25c2-e05a-4c77-ad0a-4eeb7db97fab"], ["support_identifier", "cs_4bd76ba7"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:16.970949"], ["updated_at", "2018-10-16 17:23:16.970949"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -858860826 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e7755d85-1d5c-4d36-83f5-2b718e363047' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4ecfcbb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -858860826], ["username", "billy_22"], ["access_token", "d31c6a3089502a3ca5a34de4be3a62f7"], ["uuid", "e7755d85-1d5c-4d36-83f5-2b718e363047"], ["support_identifier", "cs_c4ecfcbb"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:16.979010"], ["updated_at", "2018-10-16 17:23:16.979010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -275047414 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b1593244-0456-4622-9a5f-56c192b89bc4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d9cc111' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -275047414], ["username", "billy_23"], ["access_token", "72027b91aeb7cae5743b97b5b69ed41c"], ["uuid", "b1593244-0456-4622-9a5f-56c192b89bc4"], ["support_identifier", "cs_7d9cc111"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:16.983215"], ["updated_at", "2018-10-16 17:23:16.983215"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1709095456 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f3da5ea6-e364-4732-8508-4141aba40b57' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_723151dd' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1709095456], ["username", "billy_24"], ["access_token", "fc9d2644581a51b926a399d75fbf3ff1"], ["uuid", "f3da5ea6-e364-4732-8508-4141aba40b57"], ["support_identifier", "cs_723151dd"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:16.987383"], ["updated_at", "2018-10-16 17:23:16.987383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -729310017 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e30e383d-082c-46e0-af41-7c2c1501e038' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a48ce7d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -729310017], ["username", "billy_25"], ["access_token", "31b88fec2cee65b943e86bee8a560f18"], ["uuid", "e30e383d-082c-46e0-af41-7c2c1501e038"], ["support_identifier", "cs_5a48ce7d"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:16.992001"], ["updated_at", "2018-10-16 17:23:16.992001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -585495890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89a4907c-b27b-462f-b092-9f606cc12d20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3b96c7a1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -585495890], ["username", "billy_26"], ["access_token", "aeec4634594c7bb5798e69c0a68363b3"], ["uuid", "89a4907c-b27b-462f-b092-9f606cc12d20"], ["support_identifier", "cs_3b96c7a1"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:16.996059"], ["updated_at", "2018-10-16 17:23:16.996059"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1684091084 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ec74df3c-477c-402f-bae2-c9fd21f31620' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_777bba85' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1684091084], ["username", "billy_27"], ["access_token", "6c401cf73eca7dce153d37125a5259db"], ["uuid", "ec74df3c-477c-402f-bae2-c9fd21f31620"], ["support_identifier", "cs_777bba85"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:17.000087"], ["updated_at", "2018-10-16 17:23:17.000087"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -938700687 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f42b68c-3a01-4334-b4a0-b06f19291e73' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c2cf842' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -938700687], ["username", "billy_28"], ["access_token", "2f6c3044af14cd7ae0e349a68a621727"], ["uuid", "8f42b68c-3a01-4334-b4a0-b06f19291e73"], ["support_identifier", "cs_3c2cf842"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:17.004474"], ["updated_at", "2018-10-16 17:23:17.004474"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -203120896 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '40c5916d-0a62-4269-a6d4-00899909f6dc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ba108ff1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -203120896], ["username", "billy_29"], ["access_token", "9fde6c5fed66c71e6b4d0b0320cfb90e"], ["uuid", "40c5916d-0a62-4269-a6d4-00899909f6dc"], ["support_identifier", "cs_ba108ff1"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:17.008964"], ["updated_at", "2018-10-16 17:23:17.008964"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1385519818 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '51256394-3d7f-4867-8cf1-d359a50eee28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7addcf6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1385519818], ["username", "billy_30"], ["access_token", "c1aabbfe9ee9ecaf8517c607f49ee224"], ["uuid", "51256394-3d7f-4867-8cf1-d359a50eee28"], ["support_identifier", "cs_d7addcf6"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:17.013122"], ["updated_at", "2018-10-16 17:23:17.013122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1266666959 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f0ffd0c2-738e-4d6b-b029-790738f487e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_044930db' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1266666959], ["username", "billy_31"], ["access_token", "a576fd25ae00aea24d6190c7c23fd240"], ["uuid", "f0ffd0c2-738e-4d6b-b029-790738f487e2"], ["support_identifier", "cs_044930db"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:17.017176"], ["updated_at", "2018-10-16 17:23:17.017176"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2024124928 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f209ccc0-412c-414d-b6c0-1ce4f00dd543' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ab6b9fff' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2024124928], ["username", "billy_32"], ["access_token", "d7bd67adfbb29ae644b82dab18e7f05c"], ["uuid", "f209ccc0-412c-414d-b6c0-1ce4f00dd543"], ["support_identifier", "cs_ab6b9fff"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:17.022112"], ["updated_at", "2018-10-16 17:23:17.022112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1986657371 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bfc910ac-fcd2-49ca-84dd-5a1f40b14243' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cdb1c63d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1986657371], ["username", "billy_33"], ["access_token", "cd89085a02e8e884a155e4ff72f6c7e7"], ["uuid", "bfc910ac-fcd2-49ca-84dd-5a1f40b14243"], ["support_identifier", "cs_cdb1c63d"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:17.028286"], ["updated_at", "2018-10-16 17:23:17.028286"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -126502439 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '41fa487b-fc20-42e7-ba02-fa1aa4a2b2e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aaaa5663' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -126502439], ["username", "billy_34"], ["access_token", "492ec8cbd6dd2db5bf0708ccb382412d"], ["uuid", "41fa487b-fc20-42e7-ba02-fa1aa4a2b2e7"], ["support_identifier", "cs_aaaa5663"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:17.032607"], ["updated_at", "2018-10-16 17:23:17.032607"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -464791369 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '42a1a085-48f0-49e4-8b2c-f97fd7ccf3f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_945d238e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -464791369], ["username", "billy_35"], ["access_token", "e2b8c2e545b468ec1b2c64dbe974134f"], ["uuid", "42a1a085-48f0-49e4-8b2c-f97fd7ccf3f0"], ["support_identifier", "cs_945d238e"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:17.036911"], ["updated_at", "2018-10-16 17:23:17.036911"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -622230255 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fdf3949c-272e-4368-9694-b2b220c8932b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_215937ae' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -622230255], ["username", "billy_36"], ["access_token", "4f786b61eec734bc5bd7e2b2218e1c09"], ["uuid", "fdf3949c-272e-4368-9694-b2b220c8932b"], ["support_identifier", "cs_215937ae"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:17.041608"], ["updated_at", "2018-10-16 17:23:17.041608"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -643459575 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6960452-5205-49fd-b790-ccecd28b9971' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99987aee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -643459575], ["username", "billy_37"], ["access_token", "aee3f4902a3dc03a6161efea41501753"], ["uuid", "c6960452-5205-49fd-b790-ccecd28b9971"], ["support_identifier", "cs_99987aee"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:17.045714"], ["updated_at", "2018-10-16 17:23:17.045714"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1293119809 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4be91d34-9ef3-427c-9728-89de9c6b931e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22ef7132' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1293119809], ["username", "billy_38"], ["access_token", "aedb426c267146e96d021032cf45ad87"], ["uuid", "4be91d34-9ef3-427c-9728-89de9c6b931e"], ["support_identifier", "cs_22ef7132"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:17.049797"], ["updated_at", "2018-10-16 17:23:17.049797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1475593216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad3f2da4-3337-4765-958b-11bd882e44e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bbd15036' LIMIT 1 + SQL (1.0ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1475593216], ["username", "billy_39"], ["access_token", "101e3e01a390f3a104f873eac000e6f7"], ["uuid", "ad3f2da4-3337-4765-958b-11bd882e44e6"], ["support_identifier", "cs_bbd15036"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:17.054131"], ["updated_at", "2018-10-16 17:23:17.054131"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2009570470 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9af6d3d-cef8-4fc6-bac3-6d186ffc7c69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e710cf9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2009570470], ["username", "billy_40"], ["access_token", "4dedc29772c2b650cfd0191eec70bb82"], ["uuid", "b9af6d3d-cef8-4fc6-bac3-6d186ffc7c69"], ["support_identifier", "cs_1e710cf9"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:17.062262"], ["updated_at", "2018-10-16 17:23:17.062262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647261695 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef218389-9730-4c31-bf2d-85f135234960' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_81f1d070' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -647261695], ["username", "billy_41"], ["access_token", "8af4df89f7325b2fe5f26ff4ec1e1602"], ["uuid", "ef218389-9730-4c31-bf2d-85f135234960"], ["support_identifier", "cs_81f1d070"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:17.066549"], ["updated_at", "2018-10-16 17:23:17.066549"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1129995604 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd078cea-adac-4f58-8c64-38e198769a30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7f7cfaca' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1129995604], ["username", "billy_42"], ["access_token", "747a098c46922e601c1b6532ad7e633c"], ["uuid", "fd078cea-adac-4f58-8c64-38e198769a30"], ["support_identifier", "cs_7f7cfaca"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:17.070948"], ["updated_at", "2018-10-16 17:23:17.070948"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -625717882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7999f7bd-d287-4c9d-b226-13ec2d801eac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2273357d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -625717882], ["username", "billy_43"], ["access_token", "1f9045c571a8bc138206cd7ed2731033"], ["uuid", "7999f7bd-d287-4c9d-b226-13ec2d801eac"], ["support_identifier", "cs_2273357d"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:17.075704"], ["updated_at", "2018-10-16 17:23:17.075704"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1051281626 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14b1a70a-fc83-4fd8-83c8-9d49c93669bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35678b25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1051281626], ["username", "billy_44"], ["access_token", "db173804fb19d1acd5d2c5be83616f42"], ["uuid", "14b1a70a-fc83-4fd8-83c8-9d49c93669bf"], ["support_identifier", "cs_35678b25"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:17.080252"], ["updated_at", "2018-10-16 17:23:17.080252"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -261022290 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fff20c05-1e8a-4b31-9d68-3bd3e3abd9ff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_410e05d6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -261022290], ["username", "billy_45"], ["access_token", "186f3779e1b1b2ec9079501459b49b8e"], ["uuid", "fff20c05-1e8a-4b31-9d68-3bd3e3abd9ff"], ["support_identifier", "cs_410e05d6"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:17.084481"], ["updated_at", "2018-10-16 17:23:17.084481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -589841665 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2bc9a968-a685-4be3-87ef-09f6cd00a639' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2f40c77' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -589841665], ["username", "billy_46"], ["access_token", "1cf825859ebbe5a4a9f02a89be6ca72f"], ["uuid", "2bc9a968-a685-4be3-87ef-09f6cd00a639"], ["support_identifier", "cs_c2f40c77"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:17.092078"], ["updated_at", "2018-10-16 17:23:17.092078"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -124653315 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eab404f7-e6c1-49bf-a087-4285191278be' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2eea6e3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -124653315], ["username", "billy_47"], ["access_token", "1b006d291908b46e18823769e2af1d6a"], ["uuid", "eab404f7-e6c1-49bf-a087-4285191278be"], ["support_identifier", "cs_c2eea6e3"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:17.096163"], ["updated_at", "2018-10-16 17:23:17.096163"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -907223447 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76cdfd4c-9773-422b-bb03-e2ce32c7188b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_947c2ff0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -907223447], ["username", "billy_48"], ["access_token", "699b48bee9afcd572630da7edeb125c5"], ["uuid", "76cdfd4c-9773-422b-bb03-e2ce32c7188b"], ["support_identifier", "cs_947c2ff0"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:17.100326"], ["updated_at", "2018-10-16 17:23:17.100326"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1557431299 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a36fee5e-83c6-4b93-978f-86032ee5b94e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f313867' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1557431299], ["username", "billy_49"], ["access_token", "2a04c5dd5d3402c3b0281a412f35e723"], ["uuid", "a36fee5e-83c6-4b93-978f-86032ee5b94e"], ["support_identifier", "cs_9f313867"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:17.106235"], ["updated_at", "2018-10-16 17:23:17.106235"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.8ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -867730577 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c75bd3ef-b094-4b14-ab16-ec573115b380' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5d682b3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -867730577], ["username", "jstrav"], ["access_token", "993af0aa8c08658482813d5e0e127b5d"], ["uuid", "c75bd3ef-b094-4b14-ab16-ec573115b380"], ["support_identifier", "cs_b5d682b3"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.117975"], ["updated_at", "2018-10-16 17:23:17.117975"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -964527085 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2d5710f2-6a17-41ba-8ff7-c893d8c37715' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18a7e65b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -964527085], ["username", "mary"], ["access_token", "375d04b63e47e89e0094a785a227b0b6"], ["uuid", "2d5710f2-6a17-41ba-8ff7-c893d8c37715"], ["support_identifier", "cs_18a7e65b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.122920"], ["updated_at", "2018-10-16 17:23:17.122920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657015284 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc2a5f16-0899-451b-9c45-ec255e45ab0f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56c23d27' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -657015284], ["username", "jstead"], ["access_token", "e9daf910e04cad0157820359ad357a73"], ["uuid", "bc2a5f16-0899-451b-9c45-ec255e45ab0f"], ["support_identifier", "cs_56c23d27"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.126972"], ["updated_at", "2018-10-16 17:23:17.126972"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1569232098 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5526be51-cb32-4b1d-a9bf-3d708f1a03cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35ee88e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1569232098], ["username", "bigbear"], ["access_token", "7426a1c3edaa1f03b228cbf0b9aa4169"], ["uuid", "5526be51-cb32-4b1d-a9bf-3d708f1a03cf"], ["support_identifier", "cs_35ee88e5"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.130909"], ["updated_at", "2018-10-16 17:23:17.130909"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1456806433 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6e02674-91e9-467b-8342-3aaa0264e2f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0734ebc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1456806433], ["username", "billy_00"], ["access_token", "e0a40901d49dc2ed8528bbe118d38f20"], ["uuid", "c6e02674-91e9-467b-8342-3aaa0264e2f4"], ["support_identifier", "cs_e0734ebc"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 17:23:17.135089"], ["updated_at", "2018-10-16 17:23:17.135089"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1468294489 LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2335dc6-34c7-48b7-bb58-98efe477984e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5d2406a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1468294489], ["username", "billy_01"], ["access_token", "34cb2376f6214b23bb0b8b6991fe0c74"], ["uuid", "d2335dc6-34c7-48b7-bb58-98efe477984e"], ["support_identifier", "cs_b5d2406a"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 17:23:17.142969"], ["updated_at", "2018-10-16 17:23:17.142969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1642853662 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6bf3a9fa-5b3c-498f-b112-598bf6822d80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0a32128' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1642853662], ["username", "billy_02"], ["access_token", "beab49fa58d7a4c2f1b48d0e93b70d16"], ["uuid", "6bf3a9fa-5b3c-498f-b112-598bf6822d80"], ["support_identifier", "cs_e0a32128"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 17:23:17.147356"], ["updated_at", "2018-10-16 17:23:17.147356"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1848028466 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1e742c11-fa1d-4583-a09f-f9ff013b241b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e7d0dc33' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1848028466], ["username", "billy_03"], ["access_token", "9bfe7af347bb140f6e0f8e94f4a33cc5"], ["uuid", "1e742c11-fa1d-4583-a09f-f9ff013b241b"], ["support_identifier", "cs_e7d0dc33"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 17:23:17.152361"], ["updated_at", "2018-10-16 17:23:17.152361"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1252814161 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b926ef25-afde-439d-83ac-d3be14e36598' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_501d5516' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1252814161], ["username", "billy_04"], ["access_token", "7a9bf09bf51175ac04314129b00744c2"], ["uuid", "b926ef25-afde-439d-83ac-d3be14e36598"], ["support_identifier", "cs_501d5516"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:17.157215"], ["updated_at", "2018-10-16 17:23:17.157215"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1329259946 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ffcee80a-f94d-4566-af4c-8e333416b88f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d81a18a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1329259946], ["username", "billy_05"], ["access_token", "7746ecc77ef63961ebf0343ecd0d2c23"], ["uuid", "ffcee80a-f94d-4566-af4c-8e333416b88f"], ["support_identifier", "cs_4d81a18a"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:17.161355"], ["updated_at", "2018-10-16 17:23:17.161355"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -331070765 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08052297-102c-46d7-9b1e-0fe15bb27721' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cfe6eed9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -331070765], ["username", "billy_06"], ["access_token", "9c5169786ea5b15d39cba4018fd21269"], ["uuid", "08052297-102c-46d7-9b1e-0fe15bb27721"], ["support_identifier", "cs_cfe6eed9"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:17.165480"], ["updated_at", "2018-10-16 17:23:17.165480"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659536840 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7bbe7b59-8399-433a-8ac4-1f6063378e31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bbbb65cb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1659536840], ["username", "billy_07"], ["access_token", "0162dc247829b0f59cc8cb97cd6bc349"], ["uuid", "7bbe7b59-8399-433a-8ac4-1f6063378e31"], ["support_identifier", "cs_bbbb65cb"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:17.169651"], ["updated_at", "2018-10-16 17:23:17.169651"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1156848534 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7ba1edb-a80c-4ea0-9ff8-71017412ab47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff4a0630' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1156848534], ["username", "billy_08"], ["access_token", "94b2c41af335a00a3c851d6df55a03f6"], ["uuid", "c7ba1edb-a80c-4ea0-9ff8-71017412ab47"], ["support_identifier", "cs_ff4a0630"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:17.177354"], ["updated_at", "2018-10-16 17:23:17.177354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1834585948 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f77416fa-a3f0-4c36-abe9-7934e8d10c47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_03a49215' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1834585948], ["username", "billy_09"], ["access_token", "9893ca92562e82886c72e700a1aa59df"], ["uuid", "f77416fa-a3f0-4c36-abe9-7934e8d10c47"], ["support_identifier", "cs_03a49215"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:17.182196"], ["updated_at", "2018-10-16 17:23:17.182196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -442821742 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9868b218-4964-4867-a4c5-81749f8ffa18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_95340c17' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -442821742], ["username", "billy_10"], ["access_token", "e80eff37c6f941186714132af1388a92"], ["uuid", "9868b218-4964-4867-a4c5-81749f8ffa18"], ["support_identifier", "cs_95340c17"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:17.186426"], ["updated_at", "2018-10-16 17:23:17.186426"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1841161063 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6215d179-12fb-4f82-badd-8a34d855532e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b71d031e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1841161063], ["username", "billy_11"], ["access_token", "91b3ff6691cd9e7f54a2eb986a3d791c"], ["uuid", "6215d179-12fb-4f82-badd-8a34d855532e"], ["support_identifier", "cs_b71d031e"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:17.191301"], ["updated_at", "2018-10-16 17:23:17.191301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -186896103 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ddcf685a-ebf0-4dd5-aeeb-c775618b40e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7958bdbc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -186896103], ["username", "billy_12"], ["access_token", "f9052cb8e5859fa1684d7131ec273337"], ["uuid", "ddcf685a-ebf0-4dd5-aeeb-c775618b40e3"], ["support_identifier", "cs_7958bdbc"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:17.195457"], ["updated_at", "2018-10-16 17:23:17.195457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -585117881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b93b0507-0554-4ffe-a479-fe5f22cb7217' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4c31a1dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -585117881], ["username", "billy_13"], ["access_token", "888703d05ce76b4009fe3559342f3ce5"], ["uuid", "b93b0507-0554-4ffe-a479-fe5f22cb7217"], ["support_identifier", "cs_4c31a1dc"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:17.199545"], ["updated_at", "2018-10-16 17:23:17.199545"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1640424212 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6e1372f9-a00e-41e3-9fbb-3124b282b9bd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9f6a157' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1640424212], ["username", "billy_14"], ["access_token", "89f73f35a5bf959fb17a1331408b44cc"], ["uuid", "6e1372f9-a00e-41e3-9fbb-3124b282b9bd"], ["support_identifier", "cs_b9f6a157"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:17.203906"], ["updated_at", "2018-10-16 17:23:17.203906"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1178378302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a8fd6fb-1683-4c39-9a01-f0bd994e8f45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c1c807c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1178378302], ["username", "billy_15"], ["access_token", "5888e71cc070c051f965f8ab4b2c2992"], ["uuid", "6a8fd6fb-1683-4c39-9a01-f0bd994e8f45"], ["support_identifier", "cs_7c1c807c"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:17.208523"], ["updated_at", "2018-10-16 17:23:17.208523"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -398028184 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7f03b43-a8e9-4553-b763-ced2283bccdb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a756f21' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -398028184], ["username", "billy_16"], ["access_token", "f3fc9cb1f86b560b16e49be7e43163cc"], ["uuid", "f7f03b43-a8e9-4553-b763-ced2283bccdb"], ["support_identifier", "cs_7a756f21"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:17.212698"], ["updated_at", "2018-10-16 17:23:17.212698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -346609572 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bdf2bc29-7427-4736-ae71-241d11750f5b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9827275b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -346609572], ["username", "billy_17"], ["access_token", "305c32ff53ab25c82b0a440e596f3319"], ["uuid", "bdf2bc29-7427-4736-ae71-241d11750f5b"], ["support_identifier", "cs_9827275b"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:17.216703"], ["updated_at", "2018-10-16 17:23:17.216703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1903119791 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6c6ace9a-732d-4101-a28e-a660f6ddbaa8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c48abbfd' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1903119791], ["username", "billy_18"], ["access_token", "1eb6d721fabead1ddb55dc43698e1565"], ["uuid", "6c6ace9a-732d-4101-a28e-a660f6ddbaa8"], ["support_identifier", "cs_c48abbfd"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:17.220985"], ["updated_at", "2018-10-16 17:23:17.220985"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -758159944 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '491f7ae5-c9fc-4b7f-bc45-cebccc83560f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30c06d0c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -758159944], ["username", "billy_19"], ["access_token", "35371cf198f710d4e397d1dd58574b2e"], ["uuid", "491f7ae5-c9fc-4b7f-bc45-cebccc83560f"], ["support_identifier", "cs_30c06d0c"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:17.227767"], ["updated_at", "2018-10-16 17:23:17.227767"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1848603009 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '413e8bac-e188-4cce-b2f6-d393c45d7a25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0078839' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1848603009], ["username", "billy_20"], ["access_token", "857a1226519bef8d42cd9a5a06606311"], ["uuid", "413e8bac-e188-4cce-b2f6-d393c45d7a25"], ["support_identifier", "cs_a0078839"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:17.232184"], ["updated_at", "2018-10-16 17:23:17.232184"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1669384254 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ff6fdf0-ec0e-45a9-96f1-e224ad8b7bfa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c721d9c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1669384254], ["username", "billy_21"], ["access_token", "181daa0cc18d77940ddd5b778bcba1d1"], ["uuid", "6ff6fdf0-ec0e-45a9-96f1-e224ad8b7bfa"], ["support_identifier", "cs_7c721d9c"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:17.236262"], ["updated_at", "2018-10-16 17:23:17.236262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -920890758 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ceed091-2288-4c05-b31f-177886758009' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_37bf4449' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -920890758], ["username", "billy_22"], ["access_token", "bbe31aa7e138c11a8bc87dca5d95a71e"], ["uuid", "6ceed091-2288-4c05-b31f-177886758009"], ["support_identifier", "cs_37bf4449"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:17.240995"], ["updated_at", "2018-10-16 17:23:17.240995"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96082198 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf1e936b-0028-4f82-b388-1275c500add8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2d62f591' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -96082198], ["username", "billy_23"], ["access_token", "6b5d5d8e17e9b4b4797dddcacf608307"], ["uuid", "bf1e936b-0028-4f82-b388-1275c500add8"], ["support_identifier", "cs_2d62f591"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:17.245153"], ["updated_at", "2018-10-16 17:23:17.245153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -152221856 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7d51a36-8f92-40ff-b512-04f411976df5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99d04955' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -152221856], ["username", "billy_24"], ["access_token", "2eeb6924f2af3c0bdeb08f5f69168a6c"], ["uuid", "f7d51a36-8f92-40ff-b512-04f411976df5"], ["support_identifier", "cs_99d04955"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:17.249158"], ["updated_at", "2018-10-16 17:23:17.249158"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1017630007 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3998f79-008f-4234-8617-ae469931decb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60c73608' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1017630007], ["username", "billy_25"], ["access_token", "fc5db9a0a47409ab5c892f5baf353fe8"], ["uuid", "c3998f79-008f-4234-8617-ae469931decb"], ["support_identifier", "cs_60c73608"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:17.253581"], ["updated_at", "2018-10-16 17:23:17.253581"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.5ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1823809377 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3740dfca-c002-4e6f-94e1-19498b2c91df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_275e838e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1823809377], ["username", "billy_26"], ["access_token", "0dc4d8b6efb18233c0d0cfed1f82084a"], ["uuid", "3740dfca-c002-4e6f-94e1-19498b2c91df"], ["support_identifier", "cs_275e838e"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:17.261264"], ["updated_at", "2018-10-16 17:23:17.261264"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1423743348 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '956dbfc7-23ae-43c3-a290-5ec765c064b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_252b37a2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1423743348], ["username", "billy_27"], ["access_token", "7e2b009a9259774ad4f9055753a031a3"], ["uuid", "956dbfc7-23ae-43c3-a290-5ec765c064b6"], ["support_identifier", "cs_252b37a2"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:17.265792"], ["updated_at", "2018-10-16 17:23:17.265792"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1856421094 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1debcc71-754d-4381-badb-3e35d8270f3d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb7ad072' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1856421094], ["username", "billy_28"], ["access_token", "d4d34fdb6db309f70550b7385ab1769e"], ["uuid", "1debcc71-754d-4381-badb-3e35d8270f3d"], ["support_identifier", "cs_eb7ad072"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:17.269957"], ["updated_at", "2018-10-16 17:23:17.269957"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1023018334 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fccb5230-d44a-4ef1-bf41-af35a126f1ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_feb63776' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1023018334], ["username", "billy_29"], ["access_token", "49b3c8e5781f79615cef76aa5261f4bf"], ["uuid", "fccb5230-d44a-4ef1-bf41-af35a126f1ea"], ["support_identifier", "cs_feb63776"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:17.274854"], ["updated_at", "2018-10-16 17:23:17.274854"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1582513326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '80af7c64-75b7-444d-94a8-7fc42bc0d65b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4972beb8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1582513326], ["username", "billy_30"], ["access_token", "7a88434b784b168025af1a3cd94726ce"], ["uuid", "80af7c64-75b7-444d-94a8-7fc42bc0d65b"], ["support_identifier", "cs_4972beb8"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:17.279110"], ["updated_at", "2018-10-16 17:23:17.279110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -293692056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b1881bc-98c8-435f-82f0-e55806412230' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6ae54c00' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -293692056], ["username", "billy_31"], ["access_token", "58e866a8becdb90d521fe683692f943e"], ["uuid", "7b1881bc-98c8-435f-82f0-e55806412230"], ["support_identifier", "cs_6ae54c00"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:17.283457"], ["updated_at", "2018-10-16 17:23:17.283457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1957542846 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb9a3d64-807c-4c5f-aa56-e7edb79565b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a32dc646' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1957542846], ["username", "billy_32"], ["access_token", "ed8b1cc4b685beaa835570c0bef9180a"], ["uuid", "bb9a3d64-807c-4c5f-aa56-e7edb79565b2"], ["support_identifier", "cs_a32dc646"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:17.287872"], ["updated_at", "2018-10-16 17:23:17.287872"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -512335927 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20b96062-ef37-4ea4-9698-107444a6db6c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bc95ebb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -512335927], ["username", "billy_33"], ["access_token", "6612700cf5ea12da1701893c24453af2"], ["uuid", "20b96062-ef37-4ea4-9698-107444a6db6c"], ["support_identifier", "cs_4bc95ebb"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:17.295253"], ["updated_at", "2018-10-16 17:23:17.295253"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1130494876 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9a7ad586-f401-4771-8aeb-c91125b9bc42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bd75adf7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1130494876], ["username", "billy_34"], ["access_token", "68713ad36ba3616100a28abfda6b4555"], ["uuid", "9a7ad586-f401-4771-8aeb-c91125b9bc42"], ["support_identifier", "cs_bd75adf7"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:17.299737"], ["updated_at", "2018-10-16 17:23:17.299737"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -428962796 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2fa52df-3969-425a-9320-245bc49a4b87' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12aa4067' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -428962796], ["username", "billy_35"], ["access_token", "c941853d851ee794de1ba3d8cd7c3445"], ["uuid", "a2fa52df-3969-425a-9320-245bc49a4b87"], ["support_identifier", "cs_12aa4067"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:17.307946"], ["updated_at", "2018-10-16 17:23:17.307946"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1819110882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e85ce9bb-0768-4f25-b625-e2cb1867a4e8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20d70e24' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1819110882], ["username", "billy_36"], ["access_token", "5afc018a2493c369e887306348573adf"], ["uuid", "e85ce9bb-0768-4f25-b625-e2cb1867a4e8"], ["support_identifier", "cs_20d70e24"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:17.312097"], ["updated_at", "2018-10-16 17:23:17.312097"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428529260 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8da462e2-0d57-47c6-952e-6971ae413417' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_81d02bb1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1428529260], ["username", "billy_37"], ["access_token", "b1ff7b14aaef714a03f5348b280711ff"], ["uuid", "8da462e2-0d57-47c6-952e-6971ae413417"], ["support_identifier", "cs_81d02bb1"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:17.316151"], ["updated_at", "2018-10-16 17:23:17.316151"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647850223 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b4e1c6aa-9719-434b-8ed1-212013120710' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_61648ea5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -647850223], ["username", "billy_38"], ["access_token", "a59bb67d4c452ba50d30804a0ec03d7f"], ["uuid", "b4e1c6aa-9719-434b-8ed1-212013120710"], ["support_identifier", "cs_61648ea5"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:17.320303"], ["updated_at", "2018-10-16 17:23:17.320303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -3269757 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c282a6f9-f275-481a-b5cd-26f9477b577d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6fef00fc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -3269757], ["username", "billy_39"], ["access_token", "631dcf493935c0e12ffbb523885f0b7a"], ["uuid", "c282a6f9-f275-481a-b5cd-26f9477b577d"], ["support_identifier", "cs_6fef00fc"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:17.324912"], ["updated_at", "2018-10-16 17:23:17.324912"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2092344532 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'af5d6e22-1a6e-42cb-85ad-dbac3b4f3e26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_913f9b83' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2092344532], ["username", "billy_40"], ["access_token", "9113d9adfd792100d78d7db45a1fe95a"], ["uuid", "af5d6e22-1a6e-42cb-85ad-dbac3b4f3e26"], ["support_identifier", "cs_913f9b83"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:17.329156"], ["updated_at", "2018-10-16 17:23:17.329156"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886880932 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0e3d8abd-5258-486d-a379-33504cf1394b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8322b129' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -886880932], ["username", "billy_41"], ["access_token", "8def292f5e997fdb09b76cf845b1e098"], ["uuid", "0e3d8abd-5258-486d-a379-33504cf1394b"], ["support_identifier", "cs_8322b129"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:17.333322"], ["updated_at", "2018-10-16 17:23:17.333322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2119861816 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa009736-3440-44c0-b8d9-0e8e79544341' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1c357fd' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2119861816], ["username", "billy_42"], ["access_token", "7551aa3347b0ed177e90895b6b985734"], ["uuid", "fa009736-3440-44c0-b8d9-0e8e79544341"], ["support_identifier", "cs_f1c357fd"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:17.337558"], ["updated_at", "2018-10-16 17:23:17.337558"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -328171093 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5014eeb-f0c3-40e8-b4d7-4a16e9f1d29b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_656fb6c4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -328171093], ["username", "billy_43"], ["access_token", "d1f29831c18dab180ea08b649975cd07"], ["uuid", "e5014eeb-f0c3-40e8-b4d7-4a16e9f1d29b"], ["support_identifier", "cs_656fb6c4"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:17.344952"], ["updated_at", "2018-10-16 17:23:17.344952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1174024730 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ca30057-3757-4a6f-8896-bd25fd669ba2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_41f5ee7d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1174024730], ["username", "billy_44"], ["access_token", "ccfe61f164db8188f063a9fc4eddad34"], ["uuid", "6ca30057-3757-4a6f-8896-bd25fd669ba2"], ["support_identifier", "cs_41f5ee7d"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:17.349279"], ["updated_at", "2018-10-16 17:23:17.349279"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -827052404 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'af7e0740-f61d-43f4-ba37-d0f0e3fda324' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_828dd097' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -827052404], ["username", "billy_45"], ["access_token", "512d281c551b7c9c7beb7cf88139f3fc"], ["uuid", "af7e0740-f61d-43f4-ba37-d0f0e3fda324"], ["support_identifier", "cs_828dd097"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:17.353900"], ["updated_at", "2018-10-16 17:23:17.353900"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -968890814 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89c48f16-ab53-45cb-b924-a77419f9ca4c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7acb2d01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -968890814], ["username", "billy_46"], ["access_token", "74b14845cd4a8c2962893c51a3736faf"], ["uuid", "89c48f16-ab53-45cb-b924-a77419f9ca4c"], ["support_identifier", "cs_7acb2d01"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:17.358698"], ["updated_at", "2018-10-16 17:23:17.358698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -795200690 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '72c619d3-6936-47da-9632-a0a1405aa10c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4ae1322' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -795200690], ["username", "billy_47"], ["access_token", "813e92f53ab6d33117bd35e44d57fd32"], ["uuid", "72c619d3-6936-47da-9632-a0a1405aa10c"], ["support_identifier", "cs_e4ae1322"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:17.363142"], ["updated_at", "2018-10-16 17:23:17.363142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372799753 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5059abf3-6786-40e8-ad35-ea200d22286a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30a6746a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -372799753], ["username", "billy_48"], ["access_token", "2eaacbc545270110ae95d605577f17d5"], ["uuid", "5059abf3-6786-40e8-ad35-ea200d22286a"], ["support_identifier", "cs_30a6746a"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:17.367214"], ["updated_at", "2018-10-16 17:23:17.367214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1670730614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f93f364-8ed4-4986-be98-1e1921c74dc7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe2b898d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1670730614], ["username", "billy_49"], ["access_token", "937da1fba565720579a44af1334b5365"], ["uuid", "8f93f364-8ed4-4986-be98-1e1921c74dc7"], ["support_identifier", "cs_fe2b898d"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:17.371477"], ["updated_at", "2018-10-16 17:23:17.371477"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'u' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ce9fd6c-0cbf-40fe-ac40-6fc36513d96d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75ba5994' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "u"], ["access_token", "32f6d5a0325469672e6f8f2d1c34cb62"], ["uuid", "4ce9fd6c-0cbf-40fe-ac40-6fc36513d96d"], ["support_identifier", "cs_75ba5994"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.386481"], ["updated_at", "2018-10-16 17:23:17.386481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 506]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '23813ee5-8748-4fa5-a4d4-390adc30444f' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2f4d6fdd' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "role" = $2, "uuid" = $3, "support_identifier" = $4, "updated_at" = $5 WHERE "openstax_accounts_accounts"."id" = $6 [["username", "user"], ["role", 2], ["uuid", "23813ee5-8748-4fa5-a4d4-390adc30444f"], ["support_identifier", "cs_2f4d6fdd"], ["updated_at", "2018-10-16 17:23:17.422524"], ["id", 506]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0027938-2e29-47a7-8afe-c22a9024d36f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75277e8c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 4], ["username", "fuego"], ["uuid", "d0027938-2e29-47a7-8afe-c22a9024d36f"], ["support_identifier", "cs_75277e8c"], ["created_at", "2018-10-16 17:23:17.427131"], ["updated_at", "2018-10-16 17:23:17.427131"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "application_user"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 506]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '23813ee5-8748-4fa5-a4d4-390adc30444f' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2f4d6fdd' AND "openstax_accounts_accounts"."id" != 506) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 507) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'fuego' AND "openstax_accounts_accounts"."id" != 507) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'd0027938-2e29-47a7-8afe-c22a9024d36f' AND "openstax_accounts_accounts"."id" != 507) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_75277e8c' AND "openstax_accounts_accounts"."id" != 507) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:23:17 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "application_user"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 506]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 507]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 1]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "e75ad7"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e75ad7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c0acac1-a0fc-433d-b919-cff9017cac43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd7d0c0b' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "full_name", "salesforce_contact_id", "faculty_status", "role", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING "id" [["openstax_uid", 1], ["username", "e75ad7"], ["first_name", "Bob"], ["last_name", "Smith"], ["full_name", "Bob Smith"], ["salesforce_contact_id", "b0b"], ["faculty_status", 3], ["role", 2], ["school_type", 2], ["uuid", "5c0acac1-a0fc-433d-b919-cff9017cac43"], ["support_identifier", "cs_fd7d0c0b"], ["created_at", "2018-10-16 17:23:17.501145"], ["updated_at", "2018-10-16 17:23:17.501145"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 18]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "36f293"]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 18 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '36f293' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c5c819f-d9d9-46e7-98b9-d737fc0f13fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f3b305b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", 18], ["username", "36f293"], ["role", 2], ["uuid", "8c5c819f-d9d9-46e7-98b9-d737fc0f13fe"], ["support_identifier", "cs_6f3b305b"], ["created_at", "2018-10-16 17:23:17.524075"], ["updated_at", "2018-10-16 17:23:17.524075"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 19]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 19 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1ebaa86-b8ef-4100-9213-a16ca741d47f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_edc0b069' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 19], ["username", "alice"], ["uuid", "c1ebaa86-b8ef-4100-9213-a16ca741d47f"], ["support_identifier", "cs_edc0b069"], ["created_at", "2018-10-16 17:23:17.534070"], ["updated_at", "2018-10-16 17:23:17.534070"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 20]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice2"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 20 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76c36a75-5b5a-4dbd-8800-5c1916c6f1f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bccb058a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 20], ["username", "alice2"], ["uuid", "76c36a75-5b5a-4dbd-8800-5c1916c6f1f2"], ["support_identifier", "cs_bccb058a"], ["created_at", "2018-10-16 17:23:17.543413"], ["updated_at", "2018-10-16 17:23:17.543413"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1559835420 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a0fd59c963eaeffe95140e246a12c88f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4cfd8c37-a6f3-4df8-b754-944d563adc26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b61480bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1559835420], ["username", "a0fd59c963eaeffe95140e246a12c88f"], ["access_token", "bc3c80f6c3fb71ddb9d5f9fbba51e676"], ["uuid", "4cfd8c37-a6f3-4df8-b754-944d563adc26"], ["support_identifier", "cs_b61480bd"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.548756"], ["updated_at", "2018-10-16 17:23:17.548756"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 512 AND "openstax_accounts_group_owners"."group_id" = -1046601527) LIMIT 1 + OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", -1046601527]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 512 AND "openstax_accounts_group_owners"."group_id" = -1046601527) LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1046601527 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "is_public", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "Test"], ["is_public", "t"], ["openstax_uid", -1046601527], ["created_at", "2018-10-16 17:23:17.553457"], ["updated_at", "2018-10-16 17:23:17.553457"]] + OpenStax::Accounts::GroupOwner Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 512 AND "openstax_accounts_group_owners"."group_id" = -1046601527) LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -1046601527], ["user_id", -1559835420], ["created_at", "2018-10-16 17:23:17.555535"], ["updated_at", "2018-10-16 17:23:17.555535"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["group_id", -1046601527]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 LIMIT 1 [["group_id", -1046601527]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4f25ce2f-a367-4d90-a15a-d76d68f34b81' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8355d35' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "c92d1d73ec381be45e23f4a8ddbb79e1"], ["uuid", "4f25ce2f-a367-4d90-a15a-d76d68f34b81"], ["support_identifier", "cs_f8355d35"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.568130"], ["updated_at", "2018-10-16 17:23:17.568130"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"http://jimmy"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '518cb5e9-09d1-4188-9cf8-bca9d9911e53' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_90b459b4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "651254d4278323cf538d95b52ab52d43"], ["uuid", "518cb5e9-09d1-4188-9cf8-bca9d9911e53"], ["support_identifier", "cs_90b459b4"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.580316"], ["updated_at", "2018-10-16 17:23:17.580316"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 514]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://localhost:56282/logout +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa4e77d0-a160-4615-9671-9bb1f867782e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_526488a8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "809528d624f821fc328a3ff497f5a1f7"], ["uuid", "fa4e77d0-a160-4615-9671-9bb1f867782e"], ["support_identifier", "cs_526488a8"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.590637"], ["updated_at", "2018-10-16 17:23:17.590637"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '908c37aa-741c-4807-9a4e-e675872cd8cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8aff5cd4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "da43dd89ba2895e313dc7a0926ea289f"], ["uuid", "908c37aa-741c-4807-9a4e-e675872cd8cc"], ["support_identifier", "cs_8aff5cd4"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.600723"], ["updated_at", "2018-10-16 17:23:17.600723"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2acdae6e-22f7-4f47-8c80-04c2f87c91ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29c270eb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "edee448dec9cdd162c50e5d41f3e35d5"], ["uuid", "2acdae6e-22f7-4f47-8c80-04c2f87c91ea"], ["support_identifier", "cs_29c270eb"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.611385"], ["updated_at", "2018-10-16 17:23:17.611385"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML +Redirected to http://test.host/accounts/dev/accounts +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0bc4c998-019d-4523-9fa2-5ffece9e564f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5087d063' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "6ac7df6d385f7dba18e613c1c14af913"], ["uuid", "0bc4c998-019d-4523-9fa2-5ffece9e564f"], ["support_identifier", "cs_5087d063"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.623234"], ["updated_at", "2018-10-16 17:23:17.623234"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 518]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://test.host/ +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25d29fdf-e851-4432-80bc-d83beac02143' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb3ea1f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "6a81529f3c9f1cf7f2ccb288f177fe81"], ["uuid", "25d29fdf-e851-4432-80bc-d83beac02143"], ["support_identifier", "cs_cb3ea1f8"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:17.632262"], ["updated_at", "2018-10-16 17:23:17.632262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1780824830 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd8a1864f-c192-4101-b725-7351a7b1d81e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6663a9f9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1780824830], ["username", "jstrav"], ["access_token", "25a577af262c2adb80dc2c9f5f077433"], ["uuid", "d8a1864f-c192-4101-b725-7351a7b1d81e"], ["support_identifier", "cs_6663a9f9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.638742"], ["updated_at", "2018-10-16 17:23:17.638742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -942348634 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b88c2d0-44f6-467d-a7bb-aa7953b2e2fc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea53bc84' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -942348634], ["username", "mary"], ["access_token", "4a32b6d183680c4c3463f3c0b53a28c3"], ["uuid", "9b88c2d0-44f6-467d-a7bb-aa7953b2e2fc"], ["support_identifier", "cs_ea53bc84"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.643137"], ["updated_at", "2018-10-16 17:23:17.643137"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1714830783 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '963b74b3-bef6-4fb4-be2e-424c09466fe7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fdde3029' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1714830783], ["username", "jstead"], ["access_token", "3c88b781605d27f772be94fdb134f0a0"], ["uuid", "963b74b3-bef6-4fb4-be2e-424c09466fe7"], ["support_identifier", "cs_fdde3029"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.647303"], ["updated_at", "2018-10-16 17:23:17.647303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1156678422 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9adea191-7df3-45a3-aa0c-112ab1a29542' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0004d1ba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1156678422], ["username", "bigbear"], ["access_token", "97f32ea85d23a5f44d081dc55b085520"], ["uuid", "9adea191-7df3-45a3-aa0c-112ab1a29542"], ["support_identifier", "cs_0004d1ba"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.651408"], ["updated_at", "2018-10-16 17:23:17.651408"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -527758933 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '35b943b4-ff2c-4938-a32a-af676a097e96' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54bf3575' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -527758933], ["username", "jstrav"], ["access_token", "02e3639dee25d1130b713ca5cedd7762"], ["uuid", "35b943b4-ff2c-4938-a32a-af676a097e96"], ["support_identifier", "cs_54bf3575"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.660547"], ["updated_at", "2018-10-16 17:23:17.660547"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -82001809 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cb66ee56-5a7f-4120-ab47-69b6514f1d79' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33e904e4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -82001809], ["username", "mary"], ["access_token", "6b8fc1682ae593526fe7d49ebe7300fd"], ["uuid", "cb66ee56-5a7f-4120-ab47-69b6514f1d79"], ["support_identifier", "cs_33e904e4"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.665000"], ["updated_at", "2018-10-16 17:23:17.665000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1159905756 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b27c5620-504e-4543-9c68-59a9f97d84aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c897367a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1159905756], ["username", "jstead"], ["access_token", "118e3c7ca0f42107f51199366d3b7de0"], ["uuid", "b27c5620-504e-4543-9c68-59a9f97d84aa"], ["support_identifier", "cs_c897367a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.669216"], ["updated_at", "2018-10-16 17:23:17.669216"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -912474803 LIMIT 1 + OpenStax::Accounts::Account Exists (1.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '85a5ba57-75f4-4bac-a117-8d2b219c0340' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9468678a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -912474803], ["username", "bigbear"], ["access_token", "7811bbd7c3aa0bbba3c31739b0ffde8e"], ["uuid", "85a5ba57-75f4-4bac-a117-8d2b219c0340"], ["support_identifier", "cs_9468678a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.677550"], ["updated_at", "2018-10-16 17:23:17.677550"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1642520854 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b21adcc-1e0d-4d8f-a507-5daf2f56a085' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30f565a9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1642520854], ["username", "jstrav"], ["access_token", "b473db23d62298cf95fca34ca8be6772"], ["uuid", "3b21adcc-1e0d-4d8f-a507-5daf2f56a085"], ["support_identifier", "cs_30f565a9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.686574"], ["updated_at", "2018-10-16 17:23:17.686574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2143679997 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a22e0e90-5077-4b8c-9640-f0b724af757c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_546d508b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2143679997], ["username", "mary"], ["access_token", "14491afee28986fc2107d82f2db7261b"], ["uuid", "a22e0e90-5077-4b8c-9640-f0b724af757c"], ["support_identifier", "cs_546d508b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.691703"], ["updated_at", "2018-10-16 17:23:17.691703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1115181302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b717d32-1cc5-4e9f-9717-2c93615d80e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dcf9f330' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1115181302], ["username", "jstead"], ["access_token", "559211960b6de5c272e0800d12a3a27b"], ["uuid", "3b717d32-1cc5-4e9f-9717-2c93615d80e3"], ["support_identifier", "cs_dcf9f330"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.695943"], ["updated_at", "2018-10-16 17:23:17.695943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1980364022 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '53f1ec48-486e-4081-97dc-2d2262671ba9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_310be6cb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1980364022], ["username", "bigbear"], ["access_token", "79a37e730b96b9bc11fb50b63a3fd38f"], ["uuid", "53f1ec48-486e-4081-97dc-2d2262671ba9"], ["support_identifier", "cs_310be6cb"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.700111"], ["updated_at", "2018-10-16 17:23:17.700111"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -8910972 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b4617f2-78fc-437e-a947-bb6088e40b1a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b71f2e6' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -8910972], ["username", "jstrav"], ["access_token", "5453186403b6f63fc42499eec4816bc4"], ["uuid", "9b4617f2-78fc-437e-a947-bb6088e40b1a"], ["support_identifier", "cs_7b71f2e6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.708328"], ["updated_at", "2018-10-16 17:23:17.708328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1338979434 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4ec4c78-0150-4379-ace3-646bc3da750a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_28035f0d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1338979434], ["username", "mary"], ["access_token", "0a11938e7303737e99700655f567647f"], ["uuid", "c4ec4c78-0150-4379-ace3-646bc3da750a"], ["support_identifier", "cs_28035f0d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.712819"], ["updated_at", "2018-10-16 17:23:17.712819"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2022490422 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b28b6de-2606-40dd-a4a4-9584eea2c7da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c09bb9cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2022490422], ["username", "jstead"], ["access_token", "1dbd4ad547db0c8fa463368e5984cfc6"], ["uuid", "0b28b6de-2606-40dd-a4a4-9584eea2c7da"], ["support_identifier", "cs_c09bb9cf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.717015"], ["updated_at", "2018-10-16 17:23:17.717015"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1802236291 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b651749-3ce1-4535-aa54-3dbc37605f61' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_479722e4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1802236291], ["username", "bigbear"], ["access_token", "cb0e83114b8c5da0c6d41af81b51b2ef"], ["uuid", "0b651749-3ce1-4535-aa54-3dbc37605f61"], ["support_identifier", "cs_479722e4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.728475"], ["updated_at", "2018-10-16 17:23:17.728475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -2022490422) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -2022490422) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1028889494 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '192e8049-fb9a-47ff-a31c-b6b5aa49c2d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f0a81295' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1028889494], ["username", "jstrav"], ["access_token", "e2bfa40baa1a5c9881d52fbb97c8b263"], ["uuid", "192e8049-fb9a-47ff-a31c-b6b5aa49c2d3"], ["support_identifier", "cs_f0a81295"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.736736"], ["updated_at", "2018-10-16 17:23:17.736736"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1238248035 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f8b2657-b9a6-4f4f-a85e-c2eccd6a6b65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f1e987a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1238248035], ["username", "mary"], ["access_token", "1f79a5c3d45d1ef0ad2783ff918517b6"], ["uuid", "9f8b2657-b9a6-4f4f-a85e-c2eccd6a6b65"], ["support_identifier", "cs_2f1e987a"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.741660"], ["updated_at", "2018-10-16 17:23:17.741660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1496991825 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '52ef3524-ce63-4e3b-bf3c-f43d7f22e04d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2d0d4872' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1496991825], ["username", "jstead"], ["access_token", "060fdc63b599f0d2f3623acb8a8ae77c"], ["uuid", "52ef3524-ce63-4e3b-bf3c-f43d7f22e04d"], ["support_identifier", "cs_2d0d4872"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.745848"], ["updated_at", "2018-10-16 17:23:17.745848"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -781636629 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7aca4675-c2aa-4adf-8cbb-2dd2433628f7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_65403139' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -781636629], ["username", "bigbear"], ["access_token", "4e5c248ced5be8051646bc64fc4d499e"], ["uuid", "7aca4675-c2aa-4adf-8cbb-2dd2433628f7"], ["support_identifier", "cs_65403139"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.749986"], ["updated_at", "2018-10-16 17:23:17.749986"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '52ef3524-ce63-4e3b-bf3c-f43d7f22e04d') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '52ef3524-ce63-4e3b-bf3c-f43d7f22e04d') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -537840366 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '835ff5c8-df2b-4dcc-ad2b-b63eae6cbce8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09bda900' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -537840366], ["username", "jstrav"], ["access_token", "85c2bea687820f3aa5707014184587a1"], ["uuid", "835ff5c8-df2b-4dcc-ad2b-b63eae6cbce8"], ["support_identifier", "cs_09bda900"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.757618"], ["updated_at", "2018-10-16 17:23:17.757618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2091571090 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '563f0ad1-cf8d-4453-978c-a69a0f4beb26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_017bed2b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2091571090], ["username", "mary"], ["access_token", "840e7c5e43b28368d0739c58b2e753cb"], ["uuid", "563f0ad1-cf8d-4453-978c-a69a0f4beb26"], ["support_identifier", "cs_017bed2b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.761881"], ["updated_at", "2018-10-16 17:23:17.761881"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1478886379 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '75ca388c-ad5d-4c3b-b2df-40931b5fa74e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c984d762' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1478886379], ["username", "jstead"], ["access_token", "65bf736357e2afc703c11ebb29832360"], ["uuid", "75ca388c-ad5d-4c3b-b2df-40931b5fa74e"], ["support_identifier", "cs_c984d762"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.765992"], ["updated_at", "2018-10-16 17:23:17.765992"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1605307089 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1f5d21e-9dad-48fe-bdee-7c9b288ccc0e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4c01afb' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1605307089], ["username", "bigbear"], ["access_token", "27699d26ea5850db0923dd73dd5b1aed"], ["uuid", "a1f5d21e-9dad-48fe-bdee-7c9b288ccc0e"], ["support_identifier", "cs_c4c01afb"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.770567"], ["updated_at", "2018-10-16 17:23:17.770567"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1511877542 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fffde80b-d72d-40d1-9584-602ba7bfabed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_033d7813' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1511877542], ["username", "jstrav"], ["access_token", "b490bd4e8a4b74f2938a63be405a6bfa"], ["uuid", "fffde80b-d72d-40d1-9584-602ba7bfabed"], ["support_identifier", "cs_033d7813"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.782521"], ["updated_at", "2018-10-16 17:23:17.782521"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -636441714 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c256be7-53b7-4289-b89a-240134c8eb12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_638e01da' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -636441714], ["username", "mary"], ["access_token", "71c67192259eeacaf159b0bf444781f1"], ["uuid", "5c256be7-53b7-4289-b89a-240134c8eb12"], ["support_identifier", "cs_638e01da"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.786794"], ["updated_at", "2018-10-16 17:23:17.786794"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -606004653 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a78c8a75-db22-4ab6-9f88-65015a5d5488' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_05a0e80a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -606004653], ["username", "jstead"], ["access_token", "015767eb7ba6ed74970777c9fc810252"], ["uuid", "a78c8a75-db22-4ab6-9f88-65015a5d5488"], ["support_identifier", "cs_05a0e80a"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.791553"], ["updated_at", "2018-10-16 17:23:17.791553"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -899435574 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '80f6a2d0-6466-42dd-a1b0-33e27eee0192' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a1f2c379' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -899435574], ["username", "bigbear"], ["access_token", "67493db160ed347feae85af9714e3ae0"], ["uuid", "80f6a2d0-6466-42dd-a1b0-33e27eee0192"], ["support_identifier", "cs_a1f2c379"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.795701"], ["updated_at", "2018-10-16 17:23:17.795701"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1850233876 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '135664cf-3cda-46d4-b19b-dec8b0ccf65c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b77ca34d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1850233876], ["username", "jstrav"], ["access_token", "55bd92d87e62ab99c0aac3eea243a18d"], ["uuid", "135664cf-3cda-46d4-b19b-dec8b0ccf65c"], ["support_identifier", "cs_b77ca34d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.803037"], ["updated_at", "2018-10-16 17:23:17.803037"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -431631010 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a47acd63-07c2-4523-99b3-06e92c6601ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c2ec149' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -431631010], ["username", "mary"], ["access_token", "3464b71898cdf7874ed78cfaadeecdb0"], ["uuid", "a47acd63-07c2-4523-99b3-06e92c6601ce"], ["support_identifier", "cs_2c2ec149"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.807747"], ["updated_at", "2018-10-16 17:23:17.807747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -740467132 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e68df6ca-2e63-4080-a89e-cb84485165c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cd9bdc9e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -740467132], ["username", "jstead"], ["access_token", "81f611890a2ad83522019dcb9c0ffac3"], ["uuid", "e68df6ca-2e63-4080-a89e-cb84485165c4"], ["support_identifier", "cs_cd9bdc9e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.812118"], ["updated_at", "2018-10-16 17:23:17.812118"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -728626593 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '110d01bd-0a89-44ed-9704-101ce31c2098' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18ec5bda' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -728626593], ["username", "bigbear"], ["access_token", "a99a5c85af21c7ec49d019e42a60975f"], ["uuid", "110d01bd-0a89-44ed-9704-101ce31c2098"], ["support_identifier", "cs_18ec5bda"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.816425"], ["updated_at", "2018-10-16 17:23:17.816425"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1910930136 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f975ac4a-878d-4863-bf63-1726909bb5f3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a8c6cb4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1910930136], ["username", "jstrav"], ["access_token", "fe25e84e55f5cbc4ca20087337aa8802"], ["uuid", "f975ac4a-878d-4863-bf63-1726909bb5f3"], ["support_identifier", "cs_7a8c6cb4"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.828005"], ["updated_at", "2018-10-16 17:23:17.828005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -903055808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f63bb0b-62b6-4506-84fb-4498a3be4369' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25a7b385' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -903055808], ["username", "mary"], ["access_token", "acde3b9fe3443af130d5f46445ba2888"], ["uuid", "6f63bb0b-62b6-4506-84fb-4498a3be4369"], ["support_identifier", "cs_25a7b385"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.832811"], ["updated_at", "2018-10-16 17:23:17.832811"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -152589029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aa5950f6-3b9e-4f4e-b3c1-41ccd2f3a7ed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_05df915f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -152589029], ["username", "jstead"], ["access_token", "368d3303f4a2e10d09ded6411db04a00"], ["uuid", "aa5950f6-3b9e-4f4e-b3c1-41ccd2f3a7ed"], ["support_identifier", "cs_05df915f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.837321"], ["updated_at", "2018-10-16 17:23:17.837321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1883881044 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3d133a25-41d7-4874-bc95-13ad6bb6a5a8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_018be7bf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1883881044], ["username", "bigbear"], ["access_token", "6fd02b75390119cf17fb37e818508d33"], ["uuid", "3d133a25-41d7-4874-bc95-13ad6bb6a5a8"], ["support_identifier", "cs_018be7bf"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.842131"], ["updated_at", "2018-10-16 17:23:17.842131"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1855007563 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '50d2917e-c7d8-49dc-a901-56f39db0249a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8908ada' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1855007563], ["username", "jstrav"], ["access_token", "64ad1e8bea5b74f650e618e8a4fab8fd"], ["uuid", "50d2917e-c7d8-49dc-a901-56f39db0249a"], ["support_identifier", "cs_f8908ada"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.849876"], ["updated_at", "2018-10-16 17:23:17.849876"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -716513557 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f6117dd-64d5-4aa0-baa6-6af185bbdfd5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cd9abd93' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -716513557], ["username", "mary"], ["access_token", "ee36fa02d6b4b04bb4677ff6ce1c4bdd"], ["uuid", "9f6117dd-64d5-4aa0-baa6-6af185bbdfd5"], ["support_identifier", "cs_cd9abd93"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.854312"], ["updated_at", "2018-10-16 17:23:17.854312"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1548990638 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a829c41f-d23f-4994-a45d-64437e8ba72a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dab00bec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1548990638], ["username", "jstead"], ["access_token", "3557bf76930ad074df605f1ea526b1be"], ["uuid", "a829c41f-d23f-4994-a45d-64437e8ba72a"], ["support_identifier", "cs_dab00bec"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.859107"], ["updated_at", "2018-10-16 17:23:17.859107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2004593227 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '714142d0-4a07-414d-8235-02291c3eb3d2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_89f8fd67' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2004593227], ["username", "bigbear"], ["access_token", "01313616a73ac016a07f46b81d76dbad"], ["uuid", "714142d0-4a07-414d-8235-02291c3eb3d2"], ["support_identifier", "cs_89f8fd67"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.863321"], ["updated_at", "2018-10-16 17:23:17.863321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1711720173 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6865b213-e0d1-4c76-932d-74339f0cedb0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57c98dea' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1711720173], ["username", "jstrav"], ["access_token", "7b31886810a6d54b36be5bf932616ca7"], ["uuid", "6865b213-e0d1-4c76-932d-74339f0cedb0"], ["support_identifier", "cs_57c98dea"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.871896"], ["updated_at", "2018-10-16 17:23:17.871896"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1201176208 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30100862-8d54-4a13-b4de-3cd30f1723f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2213183f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1201176208], ["username", "mary"], ["access_token", "b0f7c3d148569d4481b369049ef96997"], ["uuid", "30100862-8d54-4a13-b4de-3cd30f1723f8"], ["support_identifier", "cs_2213183f"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.876331"], ["updated_at", "2018-10-16 17:23:17.876331"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1015679336 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c00fc930-fbcf-401c-9f9b-121653e7af10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_004f0991' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1015679336], ["username", "jstead"], ["access_token", "90ddd76be989eee320b23f4f1da2b257"], ["uuid", "c00fc930-fbcf-401c-9f9b-121653e7af10"], ["support_identifier", "cs_004f0991"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.880566"], ["updated_at", "2018-10-16 17:23:17.880566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1780398121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '959e3a01-06b8-4df1-951e-f7f2002641c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa73eb5f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1780398121], ["username", "bigbear"], ["access_token", "b1a0966b35b8a60308cd46567ec1a459"], ["uuid", "959e3a01-06b8-4df1-951e-f7f2002641c7"], ["support_identifier", "cs_fa73eb5f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.884761"], ["updated_at", "2018-10-16 17:23:17.884761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_004f0991') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_004f0991') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1848180056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9b1963c-d9d3-45bf-9aee-2b4bb37c1ae7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d3bb82c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1848180056], ["username", "jstrav"], ["access_token", "2fdf31a94c42c6ea48c3c9bef7cc4803"], ["uuid", "e9b1963c-d9d3-45bf-9aee-2b4bb37c1ae7"], ["support_identifier", "cs_5d3bb82c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.896071"], ["updated_at", "2018-10-16 17:23:17.896071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1630230469 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b8546db-785a-40d4-bbf3-1a127ef651db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_86a55623' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1630230469], ["username", "mary"], ["access_token", "3520dfb17f41c7b293b74fbd0efaeda9"], ["uuid", "4b8546db-785a-40d4-bbf3-1a127ef651db"], ["support_identifier", "cs_86a55623"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.900785"], ["updated_at", "2018-10-16 17:23:17.900785"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1143803457 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3e102e0d-e5d0-49ac-a6b6-53c34d374d5e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b7c5ff9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1143803457], ["username", "jstead"], ["access_token", "c9ca0eb9877355080e9e767888e10742"], ["uuid", "3e102e0d-e5d0-49ac-a6b6-53c34d374d5e"], ["support_identifier", "cs_7b7c5ff9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.905672"], ["updated_at", "2018-10-16 17:23:17.905672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -858038179 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2d3c4ba-99d8-4bac-ac41-c7a1ddf18f2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c536aa5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -858038179], ["username", "bigbear"], ["access_token", "17f4e162a50a3afc50d0f489d83aeaf5"], ["uuid", "c2d3c4ba-99d8-4bac-ac41-c7a1ddf18f2a"], ["support_identifier", "cs_2c536aa5"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.910852"], ["updated_at", "2018-10-16 17:23:17.910852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1792499029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf2f72b7-3394-417a-9259-018eb056ac1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_020df789' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1792499029], ["username", "jstrav"], ["access_token", "e5fcc9f76e5fc038652a69af91394317"], ["uuid", "bf2f72b7-3394-417a-9259-018eb056ac1c"], ["support_identifier", "cs_020df789"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.918726"], ["updated_at", "2018-10-16 17:23:17.918726"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -196421253 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a5fdae1-fd64-40c5-9ff4-b2c6e9b7dc02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60dd6889' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -196421253], ["username", "mary"], ["access_token", "e513222acc8ccfd0c29519bfdd181bee"], ["uuid", "5a5fdae1-fd64-40c5-9ff4-b2c6e9b7dc02"], ["support_identifier", "cs_60dd6889"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.923557"], ["updated_at", "2018-10-16 17:23:17.923557"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -379982263 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3acdadb4-a922-4aa9-869d-44a3416d917c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bcacfcf3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -379982263], ["username", "jstead"], ["access_token", "5dbfe54cbbe117eec632ae643d73619e"], ["uuid", "3acdadb4-a922-4aa9-869d-44a3416d917c"], ["support_identifier", "cs_bcacfcf3"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.930484"], ["updated_at", "2018-10-16 17:23:17.930484"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1600775319 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3276d1ff-9d6a-49fe-8995-61efcb435c57' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d6ab93a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1600775319], ["username", "bigbear"], ["access_token", "6bb7ee170b9e1a10880944790159a4f8"], ["uuid", "3276d1ff-9d6a-49fe-8995-61efcb435c57"], ["support_identifier", "cs_6d6ab93a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.934638"], ["updated_at", "2018-10-16 17:23:17.934638"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -377459637 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '026b5e50-9b61-4dcd-8dea-78ceab76ba28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_45227c6f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -377459637], ["username", "jstrav"], ["access_token", "fa73217df0fece42e5cef3da7ee642d1"], ["uuid", "026b5e50-9b61-4dcd-8dea-78ceab76ba28"], ["support_identifier", "cs_45227c6f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.942511"], ["updated_at", "2018-10-16 17:23:17.942511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -459239271 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1caf4f8-3451-4f86-99c5-32051d198670' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_966858f9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -459239271], ["username", "mary"], ["access_token", "79157c59ae2c40f8dd1ce1836d6ecd02"], ["uuid", "a1caf4f8-3451-4f86-99c5-32051d198670"], ["support_identifier", "cs_966858f9"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.946763"], ["updated_at", "2018-10-16 17:23:17.946763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -961504259 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f0fd09f1-af13-4ac3-a299-0b46d6e85fda' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3da9f8df' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -961504259], ["username", "jstead"], ["access_token", "911f37fd4b064a678d200caa60518e69"], ["uuid", "f0fd09f1-af13-4ac3-a299-0b46d6e85fda"], ["support_identifier", "cs_3da9f8df"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.951082"], ["updated_at", "2018-10-16 17:23:17.951082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -154692131 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25105078-5faf-4a5b-86ed-ec23cc8148b4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4a78ba7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -154692131], ["username", "bigbear"], ["access_token", "d5929ac2ca643544bb1da843ac67a5c5"], ["uuid", "25105078-5faf-4a5b-86ed-ec23cc8148b4"], ["support_identifier", "cs_b4a78ba7"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.955760"], ["updated_at", "2018-10-16 17:23:17.955760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -571615706 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '02456329-55e3-4bd2-bdb6-e0f08b306170' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79b6304b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -571615706], ["username", "foo_bb"], ["access_token", "36676266df574c165796402e833441b2"], ["uuid", "02456329-55e3-4bd2-bdb6-e0f08b306170"], ["support_identifier", "cs_79b6304b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 17:23:17.960148"], ["updated_at", "2018-10-16 17:23:17.960148"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1382106148 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b2bd56d-8474-4753-8497-c8c4256b1daa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1611c17' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1382106148], ["username", "foo_bj"], ["access_token", "339b171650e9e65e323deeed51bf4b55"], ["uuid", "3b2bd56d-8474-4753-8497-c8c4256b1daa"], ["support_identifier", "cs_d1611c17"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:23:17.964182"], ["updated_at", "2018-10-16 17:23:17.964182"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -325450152 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a83a1bd4-a780-48f7-8de8-c25f178e9b84' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9dfd6846' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -325450152], ["username", "foo_tj"], ["access_token", "5c2633af4e7b5647a3d1a864094d1ce9"], ["uuid", "a83a1bd4-a780-48f7-8de8-c25f178e9b84"], ["support_identifier", "cs_9dfd6846"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 17:23:17.968329"], ["updated_at", "2018-10-16 17:23:17.968329"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -816379258 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3e03a88-22ff-4191-933c-cfe7bf4491e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff2e34e6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -816379258], ["username", "jstrav"], ["access_token", "2f2ab6e992d9217d0c5197eeec98a105"], ["uuid", "c3e03a88-22ff-4191-933c-cfe7bf4491e7"], ["support_identifier", "cs_ff2e34e6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:17.978716"], ["updated_at", "2018-10-16 17:23:17.978716"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1833484415 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2b2d622f-1104-4ca8-9306-d5594331ea98' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f2a3577c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1833484415], ["username", "mary"], ["access_token", "106e951efb588c24ff5f05deb1306f70"], ["uuid", "2b2d622f-1104-4ca8-9306-d5594331ea98"], ["support_identifier", "cs_f2a3577c"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:17.983072"], ["updated_at", "2018-10-16 17:23:17.983072"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2055975650 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e58c35f4-a068-4689-9623-eaa80e596298' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f11e8b88' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2055975650], ["username", "jstead"], ["access_token", "ddbd901263521e74482562e553fa6ea4"], ["uuid", "e58c35f4-a068-4689-9623-eaa80e596298"], ["support_identifier", "cs_f11e8b88"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:17.987214"], ["updated_at", "2018-10-16 17:23:17.987214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1609040170 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54c2af26-a301-4b1b-b64d-d65bcd2d9d2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f71e34b4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1609040170], ["username", "bigbear"], ["access_token", "f65df9303e81bb660d8d31bb0db71234"], ["uuid", "54c2af26-a301-4b1b-b64d-d65bcd2d9d2a"], ["support_identifier", "cs_f71e34b4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:17.991642"], ["updated_at", "2018-10-16 17:23:17.991642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -55565881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '667c3f39-902f-49a6-b093-3db15d199d82' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18ee8a4f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -55565881], ["username", "billy_00"], ["access_token", "5fc5045cbfa0539af7c89a21c1a0c34d"], ["uuid", "667c3f39-902f-49a6-b093-3db15d199d82"], ["support_identifier", "cs_18ee8a4f"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:17.995632"], ["updated_at", "2018-10-16 17:23:17.995632"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -667036590 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcdde9ce-8f09-4903-bd05-d0e7b425c5c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_012837b7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -667036590], ["username", "billy_01"], ["access_token", "86dc74e127f7ee15e43c7f23952a7528"], ["uuid", "dcdde9ce-8f09-4903-bd05-d0e7b425c5c4"], ["support_identifier", "cs_012837b7"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:17.999675"], ["updated_at", "2018-10-16 17:23:17.999675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -184978332 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1b1774a-e92a-4556-9451-4a7452fc350a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67fc6185' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -184978332], ["username", "billy_02"], ["access_token", "3ab18b4d45f8b67cbf0f44c83285da3c"], ["uuid", "a1b1774a-e92a-4556-9451-4a7452fc350a"], ["support_identifier", "cs_67fc6185"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:18.004321"], ["updated_at", "2018-10-16 17:23:18.004321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -256144596 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ea29e3b-2104-4963-b8b7-19fa8fa078d9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c35bdff' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -256144596], ["username", "billy_03"], ["access_token", "59e3e8c38fafe313d3a4982f06806c9b"], ["uuid", "4ea29e3b-2104-4963-b8b7-19fa8fa078d9"], ["support_identifier", "cs_2c35bdff"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:18.009130"], ["updated_at", "2018-10-16 17:23:18.009130"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1669327567 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c077a05d-8c88-403f-aedc-16479e75c544' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f2133eb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1669327567], ["username", "billy_04"], ["access_token", "244d3518ddcdf8b971b4979a74ee65f8"], ["uuid", "c077a05d-8c88-403f-aedc-16479e75c544"], ["support_identifier", "cs_6f2133eb"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:18.014024"], ["updated_at", "2018-10-16 17:23:18.014024"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1123817019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0803b532-ff57-47d6-b4fa-c6a27bfb76da' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eada50bc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1123817019], ["username", "billy_05"], ["access_token", "ffc801d89ee0fc62b452e7f2a9373b05"], ["uuid", "0803b532-ff57-47d6-b4fa-c6a27bfb76da"], ["support_identifier", "cs_eada50bc"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:18.019255"], ["updated_at", "2018-10-16 17:23:18.019255"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1324580125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b622b7af-2ee0-41e8-baf9-b85735fdc68b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e819b4a0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1324580125], ["username", "billy_06"], ["access_token", "ccc23b3fbdfe50a62a31540f77f24bb2"], ["uuid", "b622b7af-2ee0-41e8-baf9-b85735fdc68b"], ["support_identifier", "cs_e819b4a0"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:18.024421"], ["updated_at", "2018-10-16 17:23:18.024421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -538703880 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb7a4ee6-16c7-4a42-9994-4dc750d6542e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e0518bc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -538703880], ["username", "billy_07"], ["access_token", "f1bbf96269a66ae67ceba0e0be9a4760"], ["uuid", "bb7a4ee6-16c7-4a42-9994-4dc750d6542e"], ["support_identifier", "cs_1e0518bc"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:18.028859"], ["updated_at", "2018-10-16 17:23:18.028859"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -873666225 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2648da96-c664-4760-a62c-16e679d6333d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b41173c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -873666225], ["username", "billy_08"], ["access_token", "0925a37f2412e7f39bd24992b4233f33"], ["uuid", "2648da96-c664-4760-a62c-16e679d6333d"], ["support_identifier", "cs_1b41173c"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:18.033430"], ["updated_at", "2018-10-16 17:23:18.033430"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -326909437 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3f84cdcd-613e-41db-a2a2-da41da944c62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_32e9637d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -326909437], ["username", "billy_09"], ["access_token", "0e67412c9468ff5bb2fa32c7653b2690"], ["uuid", "3f84cdcd-613e-41db-a2a2-da41da944c62"], ["support_identifier", "cs_32e9637d"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:18.038294"], ["updated_at", "2018-10-16 17:23:18.038294"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433281969 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd9ef89f5-31c7-4a65-aa93-a094ae5eeca9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c1e37f7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1433281969], ["username", "billy_10"], ["access_token", "f10c4933a02d217865f43123e26effee"], ["uuid", "d9ef89f5-31c7-4a65-aa93-a094ae5eeca9"], ["support_identifier", "cs_3c1e37f7"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:18.043131"], ["updated_at", "2018-10-16 17:23:18.043131"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1287778595 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3f16c28d-d460-498d-bfaf-738e74fcbbf9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0a38146e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1287778595], ["username", "billy_11"], ["access_token", "4484751b74622824c68fa4cec52fc511"], ["uuid", "3f16c28d-d460-498d-bfaf-738e74fcbbf9"], ["support_identifier", "cs_0a38146e"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:18.047825"], ["updated_at", "2018-10-16 17:23:18.047825"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2056630844 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6032bb5-f614-4fb6-9e1c-01441e41722e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ecb2cfbd' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2056630844], ["username", "billy_12"], ["access_token", "c233b8ef3109919fbc06a34d0014b941"], ["uuid", "d6032bb5-f614-4fb6-9e1c-01441e41722e"], ["support_identifier", "cs_ecb2cfbd"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:18.052605"], ["updated_at", "2018-10-16 17:23:18.052605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1592615903 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c3ee551-3f7f-4236-8242-6aeaace8ad2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_451b6e97' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1592615903], ["username", "billy_13"], ["access_token", "e7429df5466c257be856a96fbe422ac9"], ["uuid", "8c3ee551-3f7f-4236-8242-6aeaace8ad2d"], ["support_identifier", "cs_451b6e97"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:18.057355"], ["updated_at", "2018-10-16 17:23:18.057355"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370051676 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e0e7d5c-d495-4471-81fc-b7dee6722846' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df664b0e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -370051676], ["username", "billy_14"], ["access_token", "9c0e9f00ebf289b0f24ab45b34c250ce"], ["uuid", "2e0e7d5c-d495-4471-81fc-b7dee6722846"], ["support_identifier", "cs_df664b0e"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:18.062006"], ["updated_at", "2018-10-16 17:23:18.062006"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1090139650 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '304ebcae-6477-43d3-9ec7-ed825ccd5002' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c30b0c6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1090139650], ["username", "billy_15"], ["access_token", "cf459285f0d2c6a5d8890c32ad88215e"], ["uuid", "304ebcae-6477-43d3-9ec7-ed825ccd5002"], ["support_identifier", "cs_7c30b0c6"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:18.066621"], ["updated_at", "2018-10-16 17:23:18.066621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1914632109 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30f03eb4-1f66-4a23-8c6c-a9a0413b4d41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a03ce70e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1914632109], ["username", "billy_16"], ["access_token", "2abfbadbf131fd09feedd323a5ecffc1"], ["uuid", "30f03eb4-1f66-4a23-8c6c-a9a0413b4d41"], ["support_identifier", "cs_a03ce70e"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:18.071354"], ["updated_at", "2018-10-16 17:23:18.071354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1292215803 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac76ab30-5bd1-4873-b0de-fa021bd08c1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_40f9af64' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1292215803], ["username", "billy_17"], ["access_token", "06f7fdbd3b5ece2b6a29af9c303de3cc"], ["uuid", "ac76ab30-5bd1-4873-b0de-fa021bd08c1c"], ["support_identifier", "cs_40f9af64"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:18.076370"], ["updated_at", "2018-10-16 17:23:18.076370"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -48943080 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4764ea53-8a66-41b0-8fa4-47dbd88b5ad0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e67d2d40' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -48943080], ["username", "billy_18"], ["access_token", "5c4e4852be8791c44c211f743d26b854"], ["uuid", "4764ea53-8a66-41b0-8fa4-47dbd88b5ad0"], ["support_identifier", "cs_e67d2d40"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:18.081384"], ["updated_at", "2018-10-16 17:23:18.081384"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000081054 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '59f2b4b2-9f83-4dc5-abbc-d6d690eba533' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_86ea0caf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2000081054], ["username", "billy_19"], ["access_token", "dcdf39aa48ad1357d6cc0f19d92acf8e"], ["uuid", "59f2b4b2-9f83-4dc5-abbc-d6d690eba533"], ["support_identifier", "cs_86ea0caf"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:18.086287"], ["updated_at", "2018-10-16 17:23:18.086287"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -253328655 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b43e60f-d861-46e5-9657-5e1af61cf976' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7249426' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -253328655], ["username", "billy_20"], ["access_token", "10d5adc1e52156789ccbb036e492f1ce"], ["uuid", "3b43e60f-d861-46e5-9657-5e1af61cf976"], ["support_identifier", "cs_d7249426"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:18.091296"], ["updated_at", "2018-10-16 17:23:18.091296"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141958664 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb707d69-e6f7-4847-b743-ec251b190c7f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3459ba11' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1141958664], ["username", "billy_21"], ["access_token", "3b439e79df87152b4f927d26015e9930"], ["uuid", "bb707d69-e6f7-4847-b743-ec251b190c7f"], ["support_identifier", "cs_3459ba11"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:18.096203"], ["updated_at", "2018-10-16 17:23:18.096203"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1685151418 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd49d3928-5bd1-4d35-a6ac-5f6a7aa1430e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb0b2d05' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1685151418], ["username", "billy_22"], ["access_token", "cd00410164937644a861a34e2fa5d6f8"], ["uuid", "d49d3928-5bd1-4d35-a6ac-5f6a7aa1430e"], ["support_identifier", "cs_cb0b2d05"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:18.101149"], ["updated_at", "2018-10-16 17:23:18.101149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1905491783 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30d8aee0-70d5-44cc-83bf-24776b7289d5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aa0a7909' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1905491783], ["username", "billy_23"], ["access_token", "3a1734474f1526959a93e5f36d186737"], ["uuid", "30d8aee0-70d5-44cc-83bf-24776b7289d5"], ["support_identifier", "cs_aa0a7909"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:18.106328"], ["updated_at", "2018-10-16 17:23:18.106328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -181505310 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '86cea7f7-5d6c-4df8-afb9-e3261f1ced2b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8794d9dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -181505310], ["username", "billy_24"], ["access_token", "e3a483ed5518f40249fd2b276772f86d"], ["uuid", "86cea7f7-5d6c-4df8-afb9-e3261f1ced2b"], ["support_identifier", "cs_8794d9dc"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:18.110659"], ["updated_at", "2018-10-16 17:23:18.110659"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1274697515 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1f3641b-db93-403a-8c09-a64c3af0c958' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34a5313d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1274697515], ["username", "billy_25"], ["access_token", "aa5be7e2d6901c799c76f05da74f49d9"], ["uuid", "d1f3641b-db93-403a-8c09-a64c3af0c958"], ["support_identifier", "cs_34a5313d"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:18.115481"], ["updated_at", "2018-10-16 17:23:18.115481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659996882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a62f9368-eeb7-4eae-a015-769e22c2264c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a0cf27b' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1659996882], ["username", "billy_26"], ["access_token", "c7df6d315a7a6d775b96840efda91012"], ["uuid", "a62f9368-eeb7-4eae-a015-769e22c2264c"], ["support_identifier", "cs_8a0cf27b"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:18.124124"], ["updated_at", "2018-10-16 17:23:18.124124"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1558427307 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9b8e188a-d08f-4595-9fed-95c05ae8412e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d55c7452' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1558427307], ["username", "billy_27"], ["access_token", "dcb5c78df45002211ddcd4a654a5520c"], ["uuid", "9b8e188a-d08f-4595-9fed-95c05ae8412e"], ["support_identifier", "cs_d55c7452"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:18.129022"], ["updated_at", "2018-10-16 17:23:18.129022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -608351146 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ff824bc-e70a-40b4-9054-caeda5ff7cfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b48c25e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -608351146], ["username", "billy_28"], ["access_token", "c7f01b8b6b14b7a75e51a504626d2dc7"], ["uuid", "6ff824bc-e70a-40b4-9054-caeda5ff7cfe"], ["support_identifier", "cs_8b48c25e"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:18.133309"], ["updated_at", "2018-10-16 17:23:18.133309"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1889477735 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60392acc-a36b-4c03-bf75-75ec8aed14ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3cbaaeb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1889477735], ["username", "billy_29"], ["access_token", "28e908193edbc01b171666a542c70776"], ["uuid", "60392acc-a36b-4c03-bf75-75ec8aed14ad"], ["support_identifier", "cs_b3cbaaeb"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:18.137792"], ["updated_at", "2018-10-16 17:23:18.137792"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1836278110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f6a6420d-5595-44b3-8ddf-1679c7b4d2e1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_82017d80' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1836278110], ["username", "billy_30"], ["access_token", "4bac76de745d59b99d45694dcd938227"], ["uuid", "f6a6420d-5595-44b3-8ddf-1679c7b4d2e1"], ["support_identifier", "cs_82017d80"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:18.142959"], ["updated_at", "2018-10-16 17:23:18.142959"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -941976313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a6dfc0ca-d39a-455c-8ce9-bab48c116343' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_712f8a08' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -941976313], ["username", "billy_31"], ["access_token", "aed61e98e80acb2e6e077f4a7b0e84d1"], ["uuid", "a6dfc0ca-d39a-455c-8ce9-bab48c116343"], ["support_identifier", "cs_712f8a08"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:18.147236"], ["updated_at", "2018-10-16 17:23:18.147236"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1919258545 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '325abd9f-f561-43a5-95bd-39fbd56866c5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5863016d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1919258545], ["username", "billy_32"], ["access_token", "ee4a82ec8e2e1d2ba8edd89cfe0c115e"], ["uuid", "325abd9f-f561-43a5-95bd-39fbd56866c5"], ["support_identifier", "cs_5863016d"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:18.151567"], ["updated_at", "2018-10-16 17:23:18.151567"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2039260765 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c4b3fe9-055d-4e23-b252-8c9d39c432ba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df908c48' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2039260765], ["username", "billy_33"], ["access_token", "ff262f49c23cc522c25d53db53c55171"], ["uuid", "7c4b3fe9-055d-4e23-b252-8c9d39c432ba"], ["support_identifier", "cs_df908c48"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:18.156172"], ["updated_at", "2018-10-16 17:23:18.156172"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1618484516 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f94ee6cb-db0a-489f-a9d1-9e88df4e3578' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_074114f4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1618484516], ["username", "billy_34"], ["access_token", "2907e70f70775bcc801fd3985070b0c1"], ["uuid", "f94ee6cb-db0a-489f-a9d1-9e88df4e3578"], ["support_identifier", "cs_074114f4"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:18.160343"], ["updated_at", "2018-10-16 17:23:18.160343"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1553319574 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a656b636-b77e-41c9-8f9d-41e60f735e97' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a06af523' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1553319574], ["username", "billy_35"], ["access_token", "908c01c0e5bdb7015e538f74b213b7bd"], ["uuid", "a656b636-b77e-41c9-8f9d-41e60f735e97"], ["support_identifier", "cs_a06af523"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:18.164642"], ["updated_at", "2018-10-16 17:23:18.164642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1918347303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '706b6b6e-6d31-4e8e-be41-539086273864' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63782347' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1918347303], ["username", "billy_36"], ["access_token", "11fdb41cbbfe13117d9333e1d1d67dbb"], ["uuid", "706b6b6e-6d31-4e8e-be41-539086273864"], ["support_identifier", "cs_63782347"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:18.169033"], ["updated_at", "2018-10-16 17:23:18.169033"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -588959964 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7f9c7745-189e-4083-9446-7c33a146e753' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a940501' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -588959964], ["username", "billy_37"], ["access_token", "ec92f9f8b8cea539dbbfe5e87418cd20"], ["uuid", "7f9c7745-189e-4083-9446-7c33a146e753"], ["support_identifier", "cs_6a940501"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:18.176820"], ["updated_at", "2018-10-16 17:23:18.176820"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1252776002 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e8c401bf-c0b5-4982-9f54-8ce7bdf68694' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15b3c775' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1252776002], ["username", "billy_38"], ["access_token", "24c3dd6402758b991ebf6119b3469a73"], ["uuid", "e8c401bf-c0b5-4982-9f54-8ce7bdf68694"], ["support_identifier", "cs_15b3c775"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:18.181367"], ["updated_at", "2018-10-16 17:23:18.181367"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2049737033 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8191bcd0-ff9b-40a1-aedc-d4231871b9fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_660ebfc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2049737033], ["username", "billy_39"], ["access_token", "4c7f84c9ca09c210a7dc4b31b2de18f7"], ["uuid", "8191bcd0-ff9b-40a1-aedc-d4231871b9fd"], ["support_identifier", "cs_660ebfc8"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:18.185721"], ["updated_at", "2018-10-16 17:23:18.185721"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1674631770 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '83b92018-56b7-4c17-8695-40fa0cbf6e16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bb287f62' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1674631770], ["username", "billy_40"], ["access_token", "f5625fcc72628eff13e66e12c746ccf7"], ["uuid", "83b92018-56b7-4c17-8695-40fa0cbf6e16"], ["support_identifier", "cs_bb287f62"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:18.190357"], ["updated_at", "2018-10-16 17:23:18.190357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005710785 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4b13670-e0f0-4b35-bcde-1e120f74e6cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af9216d6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1005710785], ["username", "billy_41"], ["access_token", "5af071331ecf365d2e87610e1eba504e"], ["uuid", "c4b13670-e0f0-4b35-bcde-1e120f74e6cc"], ["support_identifier", "cs_af9216d6"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:18.194571"], ["updated_at", "2018-10-16 17:23:18.194571"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1086168704 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7ab1e32c-7751-4f90-9fc1-0b5b6be76cd4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a8c62ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1086168704], ["username", "billy_42"], ["access_token", "82d92ce76d7d06bb12c51540dd39bc92"], ["uuid", "7ab1e32c-7751-4f90-9fc1-0b5b6be76cd4"], ["support_identifier", "cs_5a8c62ee"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:18.198658"], ["updated_at", "2018-10-16 17:23:18.198658"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1344327238 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c3a3242-56b0-4753-8ebd-e0750d9f2691' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d825221' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1344327238], ["username", "billy_43"], ["access_token", "1b362765de0d4693e08e47f5b0555a14"], ["uuid", "4c3a3242-56b0-4753-8ebd-e0750d9f2691"], ["support_identifier", "cs_1d825221"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:18.202745"], ["updated_at", "2018-10-16 17:23:18.202745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1991029603 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8fe259a4-3d0b-4102-864a-ddbac554367f' LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96a2d2c0' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1991029603], ["username", "billy_44"], ["access_token", "29165c72be3925f0a17f01f1e2f3ae23"], ["uuid", "8fe259a4-3d0b-4102-864a-ddbac554367f"], ["support_identifier", "cs_96a2d2c0"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:18.209918"], ["updated_at", "2018-10-16 17:23:18.209918"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -47238744 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a290f314-0834-4d34-9b91-2157c1bd8428' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d1897bf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -47238744], ["username", "billy_45"], ["access_token", "f333ed6bd2986fa784d978e6c1782275"], ["uuid", "a290f314-0834-4d34-9b91-2157c1bd8428"], ["support_identifier", "cs_0d1897bf"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:18.214951"], ["updated_at", "2018-10-16 17:23:18.214951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -797644295 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3c5b49b9-5c3a-4d80-816e-d343bb14649f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0f38b7bc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -797644295], ["username", "jstrav"], ["access_token", "2839c7dc30235793176ca3050f64b8df"], ["uuid", "3c5b49b9-5c3a-4d80-816e-d343bb14649f"], ["support_identifier", "cs_0f38b7bc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:18.225258"], ["updated_at", "2018-10-16 17:23:18.225258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1061136588 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6758c53a-0e79-4342-a925-5616fe93f5fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d7f0b2f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1061136588], ["username", "mary"], ["access_token", "52413f644aabc67d21252510431f20ac"], ["uuid", "6758c53a-0e79-4342-a925-5616fe93f5fa"], ["support_identifier", "cs_3d7f0b2f"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:18.229437"], ["updated_at", "2018-10-16 17:23:18.229437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1789037133 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bde1a5e7-2fd4-4631-bf8d-66fb698abaae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f38bbc25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1789037133], ["username", "jstead"], ["access_token", "453f742e1f52c1c1be3d4014313133ca"], ["uuid", "bde1a5e7-2fd4-4631-bf8d-66fb698abaae"], ["support_identifier", "cs_f38bbc25"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:18.233489"], ["updated_at", "2018-10-16 17:23:18.233489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1891451336 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26b4fa0f-239f-435c-8004-465c7e4fa9fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_850bbcd9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1891451336], ["username", "bigbear"], ["access_token", "f0cd256533fa51fd3815396ef9e9b2c6"], ["uuid", "26b4fa0f-239f-435c-8004-465c7e4fa9fd"], ["support_identifier", "cs_850bbcd9"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:18.237918"], ["updated_at", "2018-10-16 17:23:18.237918"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1842656653 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2d12b6f-25b1-4be2-856e-a949cae28679' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_50ca36e4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1842656653], ["username", "billy_00"], ["access_token", "83e8433b8e518c1779da69b5e7b58869"], ["uuid", "d2d12b6f-25b1-4be2-856e-a949cae28679"], ["support_identifier", "cs_50ca36e4"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:18.242456"], ["updated_at", "2018-10-16 17:23:18.242456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1663420992 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad724fc4-130a-444e-ba6e-d3487ad8afc5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_840b2890' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1663420992], ["username", "billy_01"], ["access_token", "54d3cd3001a3ccf1ca2e7565fa99ca76"], ["uuid", "ad724fc4-130a-444e-ba6e-d3487ad8afc5"], ["support_identifier", "cs_840b2890"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:18.246521"], ["updated_at", "2018-10-16 17:23:18.246521"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -290578500 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3fb6e81a-29b6-4082-9f17-75f6609d97ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79ad894a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -290578500], ["username", "billy_02"], ["access_token", "6b2f47e3b129a75ce0944714836ac287"], ["uuid", "3fb6e81a-29b6-4082-9f17-75f6609d97ee"], ["support_identifier", "cs_79ad894a"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:18.250530"], ["updated_at", "2018-10-16 17:23:18.250530"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1503952890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1dfe4590-9cae-4f39-886d-372d127c9c2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_444858fb' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1503952890], ["username", "billy_03"], ["access_token", "e5e293359ea4b65a485d19a7e1adc6ca"], ["uuid", "1dfe4590-9cae-4f39-886d-372d127c9c2d"], ["support_identifier", "cs_444858fb"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:18.257263"], ["updated_at", "2018-10-16 17:23:18.257263"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1352324313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e2851958-4ca9-42e9-86f2-6404907e3726' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99155695' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1352324313], ["username", "billy_04"], ["access_token", "1809b6ed79d7f37348f774f7ca8e3a86"], ["uuid", "e2851958-4ca9-42e9-86f2-6404907e3726"], ["support_identifier", "cs_99155695"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:18.262872"], ["updated_at", "2018-10-16 17:23:18.262872"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -271933137 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5003ebae-24fb-4582-84fb-5efe2e876043' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ce6d3882' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -271933137], ["username", "billy_05"], ["access_token", "5a8c7e9978ae0086c4badc6a4efbaa81"], ["uuid", "5003ebae-24fb-4582-84fb-5efe2e876043"], ["support_identifier", "cs_ce6d3882"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:18.267031"], ["updated_at", "2018-10-16 17:23:18.267031"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1250870774 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a2d09ac-5fc8-4a96-affe-ea06642f516e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f224f64c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1250870774], ["username", "billy_06"], ["access_token", "f7ff74d224aa12aeaecbcb77038dfb1e"], ["uuid", "6a2d09ac-5fc8-4a96-affe-ea06642f516e"], ["support_identifier", "cs_f224f64c"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:18.271376"], ["updated_at", "2018-10-16 17:23:18.271376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -989597241 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c442ba1a-8a45-4f90-b0ac-905b076306c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_639e110d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -989597241], ["username", "billy_07"], ["access_token", "4f751de0eb1b00d36dc0262058590cc2"], ["uuid", "c442ba1a-8a45-4f90-b0ac-905b076306c8"], ["support_identifier", "cs_639e110d"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:18.276242"], ["updated_at", "2018-10-16 17:23:18.276242"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1393049169 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '283c0931-76ac-4f99-82c9-f88348fdd89c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4c7903d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1393049169], ["username", "billy_08"], ["access_token", "a982472405d717f3d9f30f6981c07c2d"], ["uuid", "283c0931-76ac-4f99-82c9-f88348fdd89c"], ["support_identifier", "cs_c4c7903d"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:18.280472"], ["updated_at", "2018-10-16 17:23:18.280472"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -230984591 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '630d282f-cb48-40b7-b109-09a0908d73c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c0c71df' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -230984591], ["username", "billy_09"], ["access_token", "e57c811ddb5cb6b43fb1b6fbe4cf6d34"], ["uuid", "630d282f-cb48-40b7-b109-09a0908d73c9"], ["support_identifier", "cs_7c0c71df"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:18.285237"], ["updated_at", "2018-10-16 17:23:18.285237"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -339104881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '66791dcf-bdc9-4ac3-8ae7-9234a0c823c5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b51219c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -339104881], ["username", "billy_10"], ["access_token", "bf0707b9bdcc8222a601df541d0209d6"], ["uuid", "66791dcf-bdc9-4ac3-8ae7-9234a0c823c5"], ["support_identifier", "cs_b51219c8"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:18.290190"], ["updated_at", "2018-10-16 17:23:18.290190"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -585218743 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fb35244a-eff1-40c4-a051-755621b5a8dd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_07d756a9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -585218743], ["username", "billy_11"], ["access_token", "252eb6d582daa71d14dc297d7c266ee0"], ["uuid", "fb35244a-eff1-40c4-a051-755621b5a8dd"], ["support_identifier", "cs_07d756a9"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:18.294442"], ["updated_at", "2018-10-16 17:23:18.294442"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -197224292 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1240029c-e73f-4e74-baa1-7e86a5699f6d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b573c84' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -197224292], ["username", "billy_12"], ["access_token", "4833694466a02f4186aa0941b040c89b"], ["uuid", "1240029c-e73f-4e74-baa1-7e86a5699f6d"], ["support_identifier", "cs_8b573c84"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:18.298537"], ["updated_at", "2018-10-16 17:23:18.298537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1636342106 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '775af296-5f74-4802-9236-0829e4fc1247' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_13b08a2d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1636342106], ["username", "billy_13"], ["access_token", "5036998e0bf14f5d1105e9017d97654d"], ["uuid", "775af296-5f74-4802-9236-0829e4fc1247"], ["support_identifier", "cs_13b08a2d"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:18.302740"], ["updated_at", "2018-10-16 17:23:18.302740"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -665251544 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3da724b0-f026-4d22-ad82-4eb773346946' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e7e3d69e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -665251544], ["username", "billy_14"], ["access_token", "716602eec30f7cc80ed3f67c18c9298b"], ["uuid", "3da724b0-f026-4d22-ad82-4eb773346946"], ["support_identifier", "cs_e7e3d69e"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:18.307330"], ["updated_at", "2018-10-16 17:23:18.307330"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1652382457 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3677d53-75fd-4df6-8764-01f650f1633e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6b8cfb71' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1652382457], ["username", "billy_15"], ["access_token", "494571e8a53b3399f2ec6fe0e1fabb09"], ["uuid", "c3677d53-75fd-4df6-8764-01f650f1633e"], ["support_identifier", "cs_6b8cfb71"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:18.314816"], ["updated_at", "2018-10-16 17:23:18.314816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -424573779 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7739cc3-d1d3-4171-88b5-81bcaa894e9b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9bd3aaa3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -424573779], ["username", "billy_16"], ["access_token", "0bbe5784341c887ca60066d5c4af2305"], ["uuid", "b7739cc3-d1d3-4171-88b5-81bcaa894e9b"], ["support_identifier", "cs_9bd3aaa3"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:18.318954"], ["updated_at", "2018-10-16 17:23:18.318954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -63296801 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'efb4be6a-7992-43cd-b4c7-f8834a31e882' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbdd168f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -63296801], ["username", "billy_17"], ["access_token", "3d5d3504645e75ee7b909fbd9d755391"], ["uuid", "efb4be6a-7992-43cd-b4c7-f8834a31e882"], ["support_identifier", "cs_fbdd168f"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:18.323503"], ["updated_at", "2018-10-16 17:23:18.323503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1667724091 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '05733a73-0c1b-442e-97f8-230951ca3296' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_32e0c205' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1667724091], ["username", "billy_18"], ["access_token", "678fd6c00f1e8c571fd24df6312d3aae"], ["uuid", "05733a73-0c1b-442e-97f8-230951ca3296"], ["support_identifier", "cs_32e0c205"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:18.327695"], ["updated_at", "2018-10-16 17:23:18.327695"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -981360170 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f2afe62-59fa-4f90-9654-68175ba6c947' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a6a8527a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -981360170], ["username", "billy_19"], ["access_token", "a09e4e27411139524dcd8cb5d1141ea3"], ["uuid", "8f2afe62-59fa-4f90-9654-68175ba6c947"], ["support_identifier", "cs_a6a8527a"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:18.331717"], ["updated_at", "2018-10-16 17:23:18.331717"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1122978766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '53498740-4497-41df-93ec-090340fc88fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b48a0dac' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1122978766], ["username", "billy_20"], ["access_token", "2d9a2cfa5a0bb5f952bb48d351610920"], ["uuid", "53498740-4497-41df-93ec-090340fc88fd"], ["support_identifier", "cs_b48a0dac"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:18.335863"], ["updated_at", "2018-10-16 17:23:18.335863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428401218 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09def57c-0fd5-49bc-8ecb-24b66aa1c436' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f67d4b23' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1428401218], ["username", "billy_21"], ["access_token", "6f8329d291f451d24cff87d976e3e65c"], ["uuid", "09def57c-0fd5-49bc-8ecb-24b66aa1c436"], ["support_identifier", "cs_f67d4b23"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:18.343423"], ["updated_at", "2018-10-16 17:23:18.343423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1611905406 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a6487b7b-075a-4085-9a45-7e624549dabb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2dfad157' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1611905406], ["username", "billy_22"], ["access_token", "3badf14a3f4283b594dfa0e36c680eda"], ["uuid", "a6487b7b-075a-4085-9a45-7e624549dabb"], ["support_identifier", "cs_2dfad157"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:18.348207"], ["updated_at", "2018-10-16 17:23:18.348207"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1056029768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '134b4e74-e233-418d-ab21-1ec2d24dd82d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88e600f0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1056029768], ["username", "billy_23"], ["access_token", "f4b576ae888381c3fb08453404496022"], ["uuid", "134b4e74-e233-418d-ab21-1ec2d24dd82d"], ["support_identifier", "cs_88e600f0"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:18.352446"], ["updated_at", "2018-10-16 17:23:18.352446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -759172750 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '41eedb6f-f051-4975-b4fa-8813106fc88e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f58624c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -759172750], ["username", "billy_24"], ["access_token", "1c99f44701db447d5863f3ac0e206492"], ["uuid", "41eedb6f-f051-4975-b4fa-8813106fc88e"], ["support_identifier", "cs_2f58624c"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:18.357255"], ["updated_at", "2018-10-16 17:23:18.357255"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1108091959 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'baec0f8c-e3a6-4245-88c9-d100df5cc98e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b15a7bd8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1108091959], ["username", "billy_25"], ["access_token", "8123b1f28e795008f3a047bae0d2cfb3"], ["uuid", "baec0f8c-e3a6-4245-88c9-d100df5cc98e"], ["support_identifier", "cs_b15a7bd8"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:18.361661"], ["updated_at", "2018-10-16 17:23:18.361661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1977477430 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '64a10209-8582-413c-bc0f-c038dd6c62ca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a68a8b64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1977477430], ["username", "billy_26"], ["access_token", "aeffb6c8815abefbd4846c72fd1e7fed"], ["uuid", "64a10209-8582-413c-bc0f-c038dd6c62ca"], ["support_identifier", "cs_a68a8b64"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:18.365818"], ["updated_at", "2018-10-16 17:23:18.365818"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -442804895 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13204243-5743-4643-b3ad-6ac5527bcc65' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7826dbf4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -442804895], ["username", "billy_27"], ["access_token", "4ca9a33ac2794e93074acc88ed37ea29"], ["uuid", "13204243-5743-4643-b3ad-6ac5527bcc65"], ["support_identifier", "cs_7826dbf4"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:18.369860"], ["updated_at", "2018-10-16 17:23:18.369860"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -629515258 LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8140eee-0336-4fd5-928d-a29c17516b50' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efe878e8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -629515258], ["username", "billy_28"], ["access_token", "3ef720cd98e884383fc9d97e213fdcf0"], ["uuid", "a8140eee-0336-4fd5-928d-a29c17516b50"], ["support_identifier", "cs_efe878e8"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:18.377558"], ["updated_at", "2018-10-16 17:23:18.377558"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -965003882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '076c9d86-1cf3-4a82-a080-5afaaa1fff5e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bcece6b3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -965003882], ["username", "billy_29"], ["access_token", "2287993ef0966f06c009e33e290d0ce3"], ["uuid", "076c9d86-1cf3-4a82-a080-5afaaa1fff5e"], ["support_identifier", "cs_bcece6b3"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:18.382254"], ["updated_at", "2018-10-16 17:23:18.382254"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -950958059 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c822b85-5f98-4fe8-afe8-ff6a6ec73911' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4c06941e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -950958059], ["username", "billy_30"], ["access_token", "91b31994745091eed502bbef01450c61"], ["uuid", "1c822b85-5f98-4fe8-afe8-ff6a6ec73911"], ["support_identifier", "cs_4c06941e"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:18.386588"], ["updated_at", "2018-10-16 17:23:18.386588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1073972246 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '63bb0971-68ce-4121-83a6-eea7c2f9dba3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60d8fd5e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1073972246], ["username", "billy_31"], ["access_token", "0a27791684361a585ce5a4e944a15840"], ["uuid", "63bb0971-68ce-4121-83a6-eea7c2f9dba3"], ["support_identifier", "cs_60d8fd5e"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:18.391366"], ["updated_at", "2018-10-16 17:23:18.391366"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1565263389 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a792e55c-6edf-4a5f-a9bc-b67ce3bf7500' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_994c8b0a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1565263389], ["username", "billy_32"], ["access_token", "9e0132f4d738c32b99f924c7aea6b204"], ["uuid", "a792e55c-6edf-4a5f-a9bc-b67ce3bf7500"], ["support_identifier", "cs_994c8b0a"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:18.395633"], ["updated_at", "2018-10-16 17:23:18.395633"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -337914933 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b2d0740a-9b94-432b-92bc-b800142dca9b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3445f9b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -337914933], ["username", "billy_33"], ["access_token", "6b6d4a75c62c70ce089f6556ce17a773"], ["uuid", "b2d0740a-9b94-432b-92bc-b800142dca9b"], ["support_identifier", "cs_f3445f9b"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:18.399683"], ["updated_at", "2018-10-16 17:23:18.399683"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -406730685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5248b569-1d75-4b08-b249-629ccc9a6092' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3d04fd6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -406730685], ["username", "billy_34"], ["access_token", "42e3dc78054fe4b3c2bffc72523752be"], ["uuid", "5248b569-1d75-4b08-b249-629ccc9a6092"], ["support_identifier", "cs_b3d04fd6"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:18.403669"], ["updated_at", "2018-10-16 17:23:18.403669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -528531277 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ef55355c-125e-4cd4-b233-5578d042e8bd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_490a7a05' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -528531277], ["username", "billy_35"], ["access_token", "1da87cf0b411fd8ea1cf81bd36c6be77"], ["uuid", "ef55355c-125e-4cd4-b233-5578d042e8bd"], ["support_identifier", "cs_490a7a05"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:18.408229"], ["updated_at", "2018-10-16 17:23:18.408229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1075412937 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c22708bb-269e-4d40-8eb6-c8a725582a92' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d3d4371' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1075412937], ["username", "billy_36"], ["access_token", "f6574f8afb49e9e22d4b1e4a050e6ed2"], ["uuid", "c22708bb-269e-4d40-8eb6-c8a725582a92"], ["support_identifier", "cs_1d3d4371"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:18.412422"], ["updated_at", "2018-10-16 17:23:18.412422"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -614062761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '643a5556-fdb4-49e2-9c16-dacd15ffea54' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d798770' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -614062761], ["username", "billy_37"], ["access_token", "4b93ebb162849d05be6bb746c53c59f1"], ["uuid", "643a5556-fdb4-49e2-9c16-dacd15ffea54"], ["support_identifier", "cs_3d798770"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:18.416484"], ["updated_at", "2018-10-16 17:23:18.416484"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -689307061 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ccae82de-7fa3-4575-a9ac-41b14660ee4b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fc16f14f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -689307061], ["username", "billy_38"], ["access_token", "269e9a0e42bdf62420cf55142816e1ba"], ["uuid", "ccae82de-7fa3-4575-a9ac-41b14660ee4b"], ["support_identifier", "cs_fc16f14f"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:18.420552"], ["updated_at", "2018-10-16 17:23:18.420552"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1791596733 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b2a7e32-cba7-4175-95a4-2612fe71cd61' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f9b70cb1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1791596733], ["username", "billy_39"], ["access_token", "7749ad2cc29cb8d47da25e14d9927fe3"], ["uuid", "6b2a7e32-cba7-4175-95a4-2612fe71cd61"], ["support_identifier", "cs_f9b70cb1"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:18.428003"], ["updated_at", "2018-10-16 17:23:18.428003"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -935404120 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd98b6b9c-713c-4519-bb3c-bb4505066999' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e89520b9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -935404120], ["username", "billy_40"], ["access_token", "83e4680c04db5866ae15002d7da5858a"], ["uuid", "d98b6b9c-713c-4519-bb3c-bb4505066999"], ["support_identifier", "cs_e89520b9"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:18.432431"], ["updated_at", "2018-10-16 17:23:18.432431"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141265477 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5ce59f8c-0852-4e09-a255-1d67da8dfeb7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df93e254' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1141265477], ["username", "billy_41"], ["access_token", "473a98baa029f437c244944edde0a974"], ["uuid", "5ce59f8c-0852-4e09-a255-1d67da8dfeb7"], ["support_identifier", "cs_df93e254"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:18.436640"], ["updated_at", "2018-10-16 17:23:18.436640"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1749206996 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e86e288-8ed9-4582-8fcf-bf72e6432993' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f7bc0024' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1749206996], ["username", "billy_42"], ["access_token", "e9f63868ed7d5123e8f07d8a68d83d5e"], ["uuid", "2e86e288-8ed9-4582-8fcf-bf72e6432993"], ["support_identifier", "cs_f7bc0024"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:18.441264"], ["updated_at", "2018-10-16 17:23:18.441264"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1664073777 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f9fcb13-decb-4dec-9b03-f2058deb475c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f80760d6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1664073777], ["username", "billy_43"], ["access_token", "ff7b7ce94e36a704f48b8d5e9bc9e589"], ["uuid", "8f9fcb13-decb-4dec-9b03-f2058deb475c"], ["support_identifier", "cs_f80760d6"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:18.445488"], ["updated_at", "2018-10-16 17:23:18.445488"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369261378 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '569e3240-aeee-47b9-a58c-1eb27e36f323' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_37eae798' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -369261378], ["username", "billy_44"], ["access_token", "2dcb67cf8760ccca20a0fb1ad1489b38"], ["uuid", "569e3240-aeee-47b9-a58c-1eb27e36f323"], ["support_identifier", "cs_37eae798"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:18.449483"], ["updated_at", "2018-10-16 17:23:18.449483"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1533326998 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b2dea167-e3c9-42f1-b264-4c2829bac7ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e23edf0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1533326998], ["username", "billy_45"], ["access_token", "dd4ca5313212797b010f79c6d45d028c"], ["uuid", "b2dea167-e3c9-42f1-b264-4c2829bac7ec"], ["support_identifier", "cs_7e23edf0"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:18.453596"], ["updated_at", "2018-10-16 17:23:18.453596"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (1.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1482804320 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '993cba5b-6216-4779-9e30-1fe81f32b3ca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1153242' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1482804320], ["username", "jstrav"], ["access_token", "c0d9902cbfbc700d32d07eaf59e540af"], ["uuid", "993cba5b-6216-4779-9e30-1fe81f32b3ca"], ["support_identifier", "cs_f1153242"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 17:23:18.466751"], ["updated_at", "2018-10-16 17:23:18.466751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1217721031 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cc7c9c2e-9751-4c10-ab3e-54fe3db23e1b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2223f7a' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1217721031], ["username", "mary"], ["access_token", "8142ce0a7da49779f5cbfcbedb9639a0"], ["uuid", "cc7c9c2e-9751-4c10-ab3e-54fe3db23e1b"], ["support_identifier", "cs_c2223f7a"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 17:23:18.471138"], ["updated_at", "2018-10-16 17:23:18.471138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1403255317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b087399-0545-4f7b-b4fa-f662ef09f5cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fd79024d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1403255317], ["username", "jstead"], ["access_token", "a5d05a516b1f192dabc4bded1abab350"], ["uuid", "0b087399-0545-4f7b-b4fa-f662ef09f5cd"], ["support_identifier", "cs_fd79024d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 17:23:18.475897"], ["updated_at", "2018-10-16 17:23:18.475897"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2001196589 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '64f25f9f-a83a-49ee-8603-e99232663669' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25f7f04c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2001196589], ["username", "bigbear"], ["access_token", "c61c8ccc88aaf13d908979d1a7a87aab"], ["uuid", "64f25f9f-a83a-49ee-8603-e99232663669"], ["support_identifier", "cs_25f7f04c"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 17:23:18.480181"], ["updated_at", "2018-10-16 17:23:18.480181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1879397416 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '466b277f-941f-48ef-a7f9-4c1fa61f86f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a5dd6f7b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1879397416], ["username", "billy_00"], ["access_token", "4ba4927e191ea93baf757a9926aa5e48"], ["uuid", "466b277f-941f-48ef-a7f9-4c1fa61f86f9"], ["support_identifier", "cs_a5dd6f7b"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 17:23:18.484363"], ["updated_at", "2018-10-16 17:23:18.484363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1818334076 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4968244c-8468-4456-b932-63253fc13ffe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_be5934ad' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1818334076], ["username", "billy_01"], ["access_token", "d1765bf23ccddfb51300db82e78d4804"], ["uuid", "4968244c-8468-4456-b932-63253fc13ffe"], ["support_identifier", "cs_be5934ad"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 17:23:18.488821"], ["updated_at", "2018-10-16 17:23:18.488821"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2078583811 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eb876e71-7ea9-45bc-a9a5-9545469945a9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d14b91d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2078583811], ["username", "billy_02"], ["access_token", "96b86d19647becbd273558c3b57baa71"], ["uuid", "eb876e71-7ea9-45bc-a9a5-9545469945a9"], ["support_identifier", "cs_d14b91d1"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 17:23:18.493584"], ["updated_at", "2018-10-16 17:23:18.493584"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1524426094 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '754b7202-c0cf-44f8-9e17-280ffe8a6f6d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56b62ec7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1524426094], ["username", "billy_03"], ["access_token", "49aa4bfa7a1bd96d6dadbeb0bfbdb829"], ["uuid", "754b7202-c0cf-44f8-9e17-280ffe8a6f6d"], ["support_identifier", "cs_56b62ec7"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 17:23:18.500855"], ["updated_at", "2018-10-16 17:23:18.500855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -231040668 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7aeb400-37bd-45e9-afab-a2951425e230' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b854a51' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -231040668], ["username", "billy_04"], ["access_token", "80346a2688563e1bd5ce59c9e6f5f571"], ["uuid", "c7aeb400-37bd-45e9-afab-a2951425e230"], ["support_identifier", "cs_0b854a51"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 17:23:18.505840"], ["updated_at", "2018-10-16 17:23:18.505840"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -438589187 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '66974955-22b6-4aaf-855c-4fb6d3da15c2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f230246' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -438589187], ["username", "billy_05"], ["access_token", "06bf24ef2fb9a9dde7e7be440125ff82"], ["uuid", "66974955-22b6-4aaf-855c-4fb6d3da15c2"], ["support_identifier", "cs_3f230246"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 17:23:18.513666"], ["updated_at", "2018-10-16 17:23:18.513666"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1445645397 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '820ff92a-ae05-4c20-8e66-3a19354bb338' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_646f446f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1445645397], ["username", "billy_06"], ["access_token", "5c9baea2101d2b096de1eb149f763f2a"], ["uuid", "820ff92a-ae05-4c20-8e66-3a19354bb338"], ["support_identifier", "cs_646f446f"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 17:23:18.518133"], ["updated_at", "2018-10-16 17:23:18.518133"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -325269237 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f6adbe84-40b5-4c8d-9f2f-053a1f27a9ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_880d0631' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -325269237], ["username", "billy_07"], ["access_token", "55ad87775dd4c0c4a507cad17422155a"], ["uuid", "f6adbe84-40b5-4c8d-9f2f-053a1f27a9ec"], ["support_identifier", "cs_880d0631"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 17:23:18.522357"], ["updated_at", "2018-10-16 17:23:18.522357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1018004838 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba587c07-c93a-4ad4-9230-445258971e1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3b79abf9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1018004838], ["username", "billy_08"], ["access_token", "d11008d6956f125c041114a5a511b148"], ["uuid", "ba587c07-c93a-4ad4-9230-445258971e1d"], ["support_identifier", "cs_3b79abf9"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 17:23:18.527079"], ["updated_at", "2018-10-16 17:23:18.527079"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563071071 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c663b71-f9ae-4bdc-8b42-97c7a81fbf62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12324541' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1563071071], ["username", "billy_09"], ["access_token", "a29a45e0491e576823444d0f2c2bfc27"], ["uuid", "4c663b71-f9ae-4bdc-8b42-97c7a81fbf62"], ["support_identifier", "cs_12324541"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 17:23:18.531249"], ["updated_at", "2018-10-16 17:23:18.531249"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1327113834 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd16b06b6-00bd-4850-875c-d9400c2e853d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_31a16d92' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1327113834], ["username", "billy_10"], ["access_token", "9bcc6c7a5a37eecd62e9086ea3ce220e"], ["uuid", "d16b06b6-00bd-4850-875c-d9400c2e853d"], ["support_identifier", "cs_31a16d92"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 17:23:18.535368"], ["updated_at", "2018-10-16 17:23:18.535368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -851856298 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '59dc2fe1-0b2b-4b75-b2a3-91e95cd9fba1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5000dfe8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -851856298], ["username", "billy_11"], ["access_token", "1cfbae4a8bbd4c071b0c84ef20bd063d"], ["uuid", "59dc2fe1-0b2b-4b75-b2a3-91e95cd9fba1"], ["support_identifier", "cs_5000dfe8"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 17:23:18.539786"], ["updated_at", "2018-10-16 17:23:18.539786"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -793597912 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09693615-f737-4e5f-b3bd-62e4dbac0506' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5e004034' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -793597912], ["username", "billy_12"], ["access_token", "5ff600fc105780c283cd96f5f8a8c5d9"], ["uuid", "09693615-f737-4e5f-b3bd-62e4dbac0506"], ["support_identifier", "cs_5e004034"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 17:23:18.544499"], ["updated_at", "2018-10-16 17:23:18.544499"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408701548 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cb8888f7-b724-456a-8195-1a3ca50f0b5e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67e18d74' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -408701548], ["username", "billy_13"], ["access_token", "f4ad04cdf8ab3ef1b535ed698ebfdf74"], ["uuid", "cb8888f7-b724-456a-8195-1a3ca50f0b5e"], ["support_identifier", "cs_67e18d74"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 17:23:18.549572"], ["updated_at", "2018-10-16 17:23:18.549572"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -670379849 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '138bf75f-21ef-423e-a0fc-aadf9cb29872' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15f08151' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -670379849], ["username", "billy_14"], ["access_token", "bd37caa288fe54acaf414047e2900119"], ["uuid", "138bf75f-21ef-423e-a0fc-aadf9cb29872"], ["support_identifier", "cs_15f08151"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 17:23:18.554352"], ["updated_at", "2018-10-16 17:23:18.554352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -616708211 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1e663b39-af9d-4a56-a69d-9a24c5a5a480' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1004acd5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -616708211], ["username", "billy_15"], ["access_token", "826b912fb93daa85108de568b142bfa6"], ["uuid", "1e663b39-af9d-4a56-a69d-9a24c5a5a480"], ["support_identifier", "cs_1004acd5"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 17:23:18.559300"], ["updated_at", "2018-10-16 17:23:18.559300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2088966700 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3c5738f1-7fe8-43e0-83c1-e2aae12044aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_05344756' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2088966700], ["username", "billy_16"], ["access_token", "ee4f387969e20da8152831f61efc6cb7"], ["uuid", "3c5738f1-7fe8-43e0-83c1-e2aae12044aa"], ["support_identifier", "cs_05344756"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 17:23:18.563858"], ["updated_at", "2018-10-16 17:23:18.563858"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488072687 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '40de7fbd-d569-4958-a095-762d9b45d97f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7ffa7ceb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -488072687], ["username", "billy_17"], ["access_token", "3985ca03419aa3a88b5aed16130d0435"], ["uuid", "40de7fbd-d569-4958-a095-762d9b45d97f"], ["support_identifier", "cs_7ffa7ceb"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 17:23:18.568481"], ["updated_at", "2018-10-16 17:23:18.568481"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -902479562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e7162560-9060-4112-b705-904fd1fc99d7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9dd89531' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -902479562], ["username", "billy_18"], ["access_token", "071e6c3d3cf5f88081a760042a85e1ff"], ["uuid", "e7162560-9060-4112-b705-904fd1fc99d7"], ["support_identifier", "cs_9dd89531"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 17:23:18.573396"], ["updated_at", "2018-10-16 17:23:18.573396"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000859213 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '928f0ec9-4008-4daf-8542-c30b3cb6f911' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_12cd3b15' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2000859213], ["username", "billy_19"], ["access_token", "38975296a1e2968fbc206a56538e535e"], ["uuid", "928f0ec9-4008-4daf-8542-c30b3cb6f911"], ["support_identifier", "cs_12cd3b15"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 17:23:18.577954"], ["updated_at", "2018-10-16 17:23:18.577954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1080547685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '88c47b09-f9eb-4bd3-a429-079fc6abcd08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_52350b42' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1080547685], ["username", "billy_20"], ["access_token", "1fb6e233a854a1d18a5ded3659c3fef8"], ["uuid", "88c47b09-f9eb-4bd3-a429-079fc6abcd08"], ["support_identifier", "cs_52350b42"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 17:23:18.582377"], ["updated_at", "2018-10-16 17:23:18.582377"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -227772209 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '65e9c5e8-22d6-40ba-a958-5b1456e91d52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_90b899e1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -227772209], ["username", "billy_21"], ["access_token", "372e8b196dcdf15300d4773361d3d721"], ["uuid", "65e9c5e8-22d6-40ba-a958-5b1456e91d52"], ["support_identifier", "cs_90b899e1"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 17:23:18.586988"], ["updated_at", "2018-10-16 17:23:18.586988"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -693772110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '12aa4998-0b3f-4d06-b8c2-f2a3bb074040' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee3dc249' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -693772110], ["username", "billy_22"], ["access_token", "944ac174a11fdfeaef55a29c5c1ccf45"], ["uuid", "12aa4998-0b3f-4d06-b8c2-f2a3bb074040"], ["support_identifier", "cs_ee3dc249"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 17:23:18.592044"], ["updated_at", "2018-10-16 17:23:18.592044"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -538955490 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b799e81-a1b1-431c-8a25-5eb2374f839a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fc61bbcf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -538955490], ["username", "billy_23"], ["access_token", "8ad6a54d69a17e39c054dad3b2e3dc94"], ["uuid", "5b799e81-a1b1-431c-8a25-5eb2374f839a"], ["support_identifier", "cs_fc61bbcf"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 17:23:18.596469"], ["updated_at", "2018-10-16 17:23:18.596469"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796094275 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7fdf399d-606d-4a81-b4e4-be5ca6c14636' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e90f81b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -796094275], ["username", "billy_24"], ["access_token", "30025024df27d9d6725cdb0853f3cae9"], ["uuid", "7fdf399d-606d-4a81-b4e4-be5ca6c14636"], ["support_identifier", "cs_7e90f81b"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 17:23:18.601646"], ["updated_at", "2018-10-16 17:23:18.601646"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -329338558 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2aad1946-a3e8-4abc-968d-0eba087996f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5f0d042e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -329338558], ["username", "billy_25"], ["access_token", "bf46a5298663c88b1595841f38d46864"], ["uuid", "2aad1946-a3e8-4abc-968d-0eba087996f6"], ["support_identifier", "cs_5f0d042e"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 17:23:18.607547"], ["updated_at", "2018-10-16 17:23:18.607547"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1218200576 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0eb3a79d-a727-4ca1-9651-216526ab5732' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e63d6186' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1218200576], ["username", "billy_26"], ["access_token", "9ce741fee556d75d619e80158872b385"], ["uuid", "0eb3a79d-a727-4ca1-9651-216526ab5732"], ["support_identifier", "cs_e63d6186"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 17:23:18.612981"], ["updated_at", "2018-10-16 17:23:18.612981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1569501557 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '031f5299-6551-4da3-9ece-03b0710730a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2a0a952' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1569501557], ["username", "billy_27"], ["access_token", "22509c1bbb4a2260012c973974cfdd1e"], ["uuid", "031f5299-6551-4da3-9ece-03b0710730a4"], ["support_identifier", "cs_c2a0a952"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 17:23:18.617237"], ["updated_at", "2018-10-16 17:23:18.617237"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -569229555 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd73aef2-463d-4a74-a2c7-44e1dd07282c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_28053143' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -569229555], ["username", "billy_28"], ["access_token", "bb2c203d372a29fcf71256d25e7ba20f"], ["uuid", "fd73aef2-463d-4a74-a2c7-44e1dd07282c"], ["support_identifier", "cs_28053143"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 17:23:18.621748"], ["updated_at", "2018-10-16 17:23:18.621748"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1874006303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a82dd613-c82f-4f24-a018-88d3681fd59b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6e29ac4b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1874006303], ["username", "billy_29"], ["access_token", "eb24edd883f0e82fa2e1e36f87edde4f"], ["uuid", "a82dd613-c82f-4f24-a018-88d3681fd59b"], ["support_identifier", "cs_6e29ac4b"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 17:23:18.627049"], ["updated_at", "2018-10-16 17:23:18.627049"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1666317836 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd713336a-bac6-41d7-bca7-9fcf94e2aecc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e16247a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1666317836], ["username", "billy_30"], ["access_token", "cce43a01d61c080edee54891461ecad2"], ["uuid", "d713336a-bac6-41d7-bca7-9fcf94e2aecc"], ["support_identifier", "cs_3e16247a"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 17:23:18.632639"], ["updated_at", "2018-10-16 17:23:18.632639"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1174052986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9dbc73db-046d-48ae-aec9-db93bda506e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_05ba0e70' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1174052986], ["username", "billy_31"], ["access_token", "6378609695eb9893bfcad066c15e017a"], ["uuid", "9dbc73db-046d-48ae-aec9-db93bda506e3"], ["support_identifier", "cs_05ba0e70"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 17:23:18.636780"], ["updated_at", "2018-10-16 17:23:18.636780"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1187896322 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4d4defe6-eaf3-470b-88e9-79d2620f1249' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20c3d8ce' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1187896322], ["username", "billy_32"], ["access_token", "a0a43f2440779f965c1c075bbb55fed6"], ["uuid", "4d4defe6-eaf3-470b-88e9-79d2620f1249"], ["support_identifier", "cs_20c3d8ce"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 17:23:18.642023"], ["updated_at", "2018-10-16 17:23:18.642023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1571736317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aaa8c439-e6a9-49c0-9f60-1c594bf45389' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bad4097e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1571736317], ["username", "billy_33"], ["access_token", "cf9d76ab96a42e182597e26bb7a073be"], ["uuid", "aaa8c439-e6a9-49c0-9f60-1c594bf45389"], ["support_identifier", "cs_bad4097e"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 17:23:18.646298"], ["updated_at", "2018-10-16 17:23:18.646298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2102369704 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b2d152a-3ed9-4b4f-a947-81fa12c0da19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e32f933e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2102369704], ["username", "billy_34"], ["access_token", "d354754d370f2eb07d8c1f9b198606df"], ["uuid", "6b2d152a-3ed9-4b4f-a947-81fa12c0da19"], ["support_identifier", "cs_e32f933e"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 17:23:18.650453"], ["updated_at", "2018-10-16 17:23:18.650453"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1518754867 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cf4caf05-c262-4613-a5b3-a99dce2d2f6a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78429786' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1518754867], ["username", "billy_35"], ["access_token", "95e7a2f58fe5d0a7683311e3d00e9526"], ["uuid", "cf4caf05-c262-4613-a5b3-a99dce2d2f6a"], ["support_identifier", "cs_78429786"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 17:23:18.654566"], ["updated_at", "2018-10-16 17:23:18.654566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1576691774 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b403d2b-f98c-4087-b4a8-bd5fa7389999' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1331488' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1576691774], ["username", "billy_36"], ["access_token", "4c11198a32c91e36d72e4a4718c27b45"], ["uuid", "1b403d2b-f98c-4087-b4a8-bd5fa7389999"], ["support_identifier", "cs_f1331488"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 17:23:18.659292"], ["updated_at", "2018-10-16 17:23:18.659292"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -578685152 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c29ba6e-0b48-4366-a24d-28948532e7f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ac467767' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -578685152], ["username", "billy_37"], ["access_token", "66069c464b405b9f52fc4f7e33e9a19b"], ["uuid", "4c29ba6e-0b48-4366-a24d-28948532e7f0"], ["support_identifier", "cs_ac467767"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 17:23:18.663465"], ["updated_at", "2018-10-16 17:23:18.663465"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -839771869 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6a7fa9d-7246-44c5-8d4d-02ca7dc8cd3f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09d1a0ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -839771869], ["username", "billy_38"], ["access_token", "6380275e90f9c7589282eb1455aa50e4"], ["uuid", "b6a7fa9d-7246-44c5-8d4d-02ca7dc8cd3f"], ["support_identifier", "cs_09d1a0ec"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 17:23:18.667747"], ["updated_at", "2018-10-16 17:23:18.667747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2035577849 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '215d379d-46b2-4a57-b771-240f1c8a1d07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3f8fcc9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2035577849], ["username", "billy_39"], ["access_token", "634959e0b1d32827fe485c1c9508d1fa"], ["uuid", "215d379d-46b2-4a57-b771-240f1c8a1d07"], ["support_identifier", "cs_b3f8fcc9"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 17:23:18.672403"], ["updated_at", "2018-10-16 17:23:18.672403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1827205470 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5a61347-bcbe-4d68-a31d-5ede4d1a34b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75ece27f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1827205470], ["username", "billy_40"], ["access_token", "48de26920178bcea360ef49d06f96b9e"], ["uuid", "b5a61347-bcbe-4d68-a31d-5ede4d1a34b2"], ["support_identifier", "cs_75ece27f"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 17:23:18.679214"], ["updated_at", "2018-10-16 17:23:18.679214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -338152048 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73109164-7f06-449d-abdb-069c711bb3e1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9aaba1bc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -338152048], ["username", "billy_41"], ["access_token", "96453d3aecfdfc4e5f8aacc51e07fc08"], ["uuid", "73109164-7f06-449d-abdb-069c711bb3e1"], ["support_identifier", "cs_9aaba1bc"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 17:23:18.683382"], ["updated_at", "2018-10-16 17:23:18.683382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -680685147 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1401bbe4-feac-4a3c-bae2-7f509b69e58f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3e32a10' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -680685147], ["username", "billy_42"], ["access_token", "a0a0fd4f783104a1ecb7c10a2f9d1530"], ["uuid", "1401bbe4-feac-4a3c-bae2-7f509b69e58f"], ["support_identifier", "cs_b3e32a10"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 17:23:18.687686"], ["updated_at", "2018-10-16 17:23:18.687686"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -31651342 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f24d40c-4437-4b6d-a7d2-2df9aa494385' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f152275' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -31651342], ["username", "billy_43"], ["access_token", "916847042ad4828142cfaff8c87476f4"], ["uuid", "5f24d40c-4437-4b6d-a7d2-2df9aa494385"], ["support_identifier", "cs_2f152275"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 17:23:18.695235"], ["updated_at", "2018-10-16 17:23:18.695235"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1604532295 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab108ebf-a5eb-42a8-b179-07fd09d2a3ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3a7c5070' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1604532295], ["username", "billy_44"], ["access_token", "eb327c95ae2d7d47603e26eb3f0591b4"], ["uuid", "ab108ebf-a5eb-42a8-b179-07fd09d2a3ef"], ["support_identifier", "cs_3a7c5070"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 17:23:18.699749"], ["updated_at", "2018-10-16 17:23:18.699749"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -545129206 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cc9e3fba-c28a-4c2c-b2fb-6f6daf296b01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0a45349f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -545129206], ["username", "billy_45"], ["access_token", "e198d77304c8782ec60aafcc631357af"], ["uuid", "cc9e3fba-c28a-4c2c-b2fb-6f6daf296b01"], ["support_identifier", "cs_0a45349f"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 17:23:18.703930"], ["updated_at", "2018-10-16 17:23:18.703930"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3701760]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3701760 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dbd82aac-9ce2-44a9-af93-a45b58842057' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3e0bdb4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 3701760], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "dbd82aac-9ce2-44a9-af93-a45b58842057"], ["support_identifier", "cs_e3e0bdb4"], ["created_at", "2018-10-16 17:23:18.713839"], ["updated_at", "2018-10-16 17:23:18.713839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 3701760 AND "openstax_accounts_accounts"."id" != 729) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'dbd82aac-9ce2-44a9-af93-a45b58842057' AND "openstax_accounts_accounts"."id" != 729) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_e3e0bdb4' AND "openstax_accounts_accounts"."id" != 729) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 1929785]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1929785 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8447b3d7-be9c-4b4c-830f-a8e840593184' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3aea5340' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 1929785], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "8447b3d7-be9c-4b4c-830f-a8e840593184"], ["support_identifier", "cs_3aea5340"], ["created_at", "2018-10-16 17:23:18.721719"], ["updated_at", "2018-10-16 17:23:18.721719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 8548720]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 8548720 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db0be9f5-f396-473c-a2eb-aa259d8c2cca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54a45208' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 8548720], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["school_type", 2], ["uuid", "db0be9f5-f396-473c-a2eb-aa259d8c2cca"], ["support_identifier", "cs_54a45208"], ["created_at", "2018-10-16 17:23:18.727921"], ["updated_at", "2018-10-16 17:23:18.727921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3426838]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3426838 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2effccd3-5acb-481a-9ba9-23cdb4780a20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c786f5c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 3426838], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "2effccd3-5acb-481a-9ba9-23cdb4780a20"], ["support_identifier", "cs_7c786f5c"], ["created_at", "2018-10-16 17:23:18.733707"], ["updated_at", "2018-10-16 17:23:18.733707"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2714263]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2714263 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '00f34734-d045-4bc9-aa4b-b2519ff99fd0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d2d8438d' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 2714263], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "00f34734-d045-4bc9-aa4b-b2519ff99fd0"], ["support_identifier", "cs_d2d8438d"], ["created_at", "2018-10-16 17:23:18.740760"], ["updated_at", "2018-10-16 17:23:18.740760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9730589]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9730589 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '36d35e0e-73ae-4ad2-b007-55789eabd99d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9a853ef9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 9730589], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "36d35e0e-73ae-4ad2-b007-55789eabd99d"], ["support_identifier", "cs_9a853ef9"], ["created_at", "2018-10-16 17:23:18.749960"], ["updated_at", "2018-10-16 17:23:18.749960"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 1601926]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1601926 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26ef818b-2015-4359-ac99-1b3b8ea0ca2f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a181e7b9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 1601926], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "26ef818b-2015-4359-ac99-1b3b8ea0ca2f"], ["support_identifier", "cs_a181e7b9"], ["created_at", "2018-10-16 17:23:18.756177"], ["updated_at", "2018-10-16 17:23:18.756177"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1925112955 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '27665cd75ef7dff31e6f00d32714458f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7622352d-2b44-48c7-bfb3-6fa78c05f9f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_eb1acaf7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1925112955], ["username", "27665cd75ef7dff31e6f00d32714458f"], ["access_token", "5882fdee5916d203323258621ccc2668"], ["uuid", "7622352d-2b44-48c7-bfb3-6fa78c05f9f5"], ["support_identifier", "cs_eb1acaf7"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.761951"], ["updated_at", "2018-10-16 17:23:18.761951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", -1925112955]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1925112955 AND "openstax_accounts_accounts"."id" != 736) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '191919' AND "openstax_accounts_accounts"."id" != 736) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '568742bb-3a3c-4989-abf5-53c939d0633f' AND "openstax_accounts_accounts"."id" != 736) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_48f9120c' AND "openstax_accounts_accounts"."id" != 736) LIMIT 1 + SQL (0.4ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "first_name" = $2, "last_name" = $3, "title" = $4, "access_token" = $5, "faculty_status" = $6, "role" = $7, "uuid" = $8, "support_identifier" = $9, "is_test" = $10, "updated_at" = $11 WHERE "openstax_accounts_accounts"."id" = $12 [["username", "191919"], ["first_name", "1234"], ["last_name", "5678"], ["title", "900"], ["access_token", nil], ["faculty_status", 2], ["role", 2], ["uuid", "568742bb-3a3c-4989-abf5-53c939d0633f"], ["support_identifier", "cs_48f9120c"], ["is_test", nil], ["updated_at", "2018-10-16 17:23:18.767048"], ["id", 736]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 736]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 7992857]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 7992857 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '784aaae6-361e-495b-9c2c-5f0664a144c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbe655d7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 7992857], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "784aaae6-361e-495b-9c2c-5f0664a144c4"], ["support_identifier", "cs_fbe655d7"], ["created_at", "2018-10-16 17:23:18.774582"], ["updated_at", "2018-10-16 17:23:18.774582"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3813216]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3813216 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4ca6ea0-2d1b-4f5e-8be9-bed4715ced70' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_189d936d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 3813216], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["role", 2], ["uuid", "e4ca6ea0-2d1b-4f5e-8be9-bed4715ced70"], ["support_identifier", "cs_189d936d"], ["created_at", "2018-10-16 17:23:18.780292"], ["updated_at", "2018-10-16 17:23:18.780292"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/dummy?test=true" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::DummyController#dummy as application/vnd.accounts.openstax.v1 + Parameters: {"test"=>"true", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1387461588 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '424e5f9d4a51e0aae8abb0b53a8ab2ae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc5b3efa-2ff1-4e5c-b3d1-531549ba3c43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85b28481' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1387461588], ["username", "424e5f9d4a51e0aae8abb0b53a8ab2ae"], ["access_token", "968c25ea2a97f505f6b81b1f6e9dff0e"], ["uuid", "fc5b3efa-2ff1-4e5c-b3d1-531549ba3c43"], ["support_identifier", "cs_85b28481"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.808233"], ["updated_at", "2018-10-16 17:23:18.808233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -816192088 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -816192088], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:18.815774"], ["updated_at", "2018-10-16 17:23:18.815774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -653896672 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd165cda82440e443fff3df21925c0825' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '55a19ee9-08e9-460d-a1f0-5f51ce685ab9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6a67881' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -653896672], ["username", "d165cda82440e443fff3df21925c0825"], ["access_token", "5227ea3bf0bd233e659dd86b43b097e0"], ["uuid", "55a19ee9-08e9-460d-a1f0-5f51ce685ab9"], ["support_identifier", "cs_f6a67881"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.820345"], ["updated_at", "2018-10-16 17:23:18.820345"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-816192088/members/-653896672" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-816192088", "user_id"=>"-653896672", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -772762288 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'c99232b58742e9bba3d9786172f5e094' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ad42761-42a1-4494-be2f-e42359752d59' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25226062' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -772762288], ["username", "c99232b58742e9bba3d9786172f5e094"], ["access_token", "e64204fadbf6065fb60165f8eacf3a97"], ["uuid", "2ad42761-42a1-4494-be2f-e42359752d59"], ["support_identifier", "cs_25226062"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.835540"], ["updated_at", "2018-10-16 17:23:18.835540"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -273925742 LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -273925742], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:18.838132"], ["updated_at", "2018-10-16 17:23:18.838132"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -293810344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2dcd70769a2032139f7c966084d81387' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ee12228c-b3f6-4252-86ca-166790baaa14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_964e3024' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -293810344], ["username", "2dcd70769a2032139f7c966084d81387"], ["access_token", "e1726fbe136a4a4417828f34313bbd29"], ["uuid", "ee12228c-b3f6-4252-86ca-166790baaa14"], ["support_identifier", "cs_964e3024"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.842744"], ["updated_at", "2018-10-16 17:23:18.842744"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 742 AND "openstax_accounts_group_members"."group_id" = -273925742) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -273925742], ["user_id", -293810344], ["created_at", "2018-10-16 17:23:18.845180"], ["updated_at", "2018-10-16 17:23:18.845180"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-273925742/members/-293810344" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-273925742", "user_id"=>"-293810344", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1115518876 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '31b95247626b48ff13b4aca199f27f01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '79a1c0e2-475f-49f9-b17e-097f94d5f088' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af1503f2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1115518876], ["username", "31b95247626b48ff13b4aca199f27f01"], ["access_token", "39c8bcea5b13cac49abc96af22f3e623"], ["uuid", "79a1c0e2-475f-49f9-b17e-097f94d5f088"], ["support_identifier", "cs_af1503f2"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.859159"], ["updated_at", "2018-10-16 17:23:18.859159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1387820162 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1387820162], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:18.866066"], ["updated_at", "2018-10-16 17:23:18.866066"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1387820162 AND "openstax_accounts_groups"."id" != 12) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/groups/-1387820162" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "id"=>"-1387820162", "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -533713236 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '041286fcd5b46f1dffc52ce231190340' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1fda9559-8b39-49d5-87db-3bb0baf6b378' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_03b79308' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -533713236], ["username", "041286fcd5b46f1dffc52ce231190340"], ["access_token", "3b1ffac158c15fa907cfba1bd919c2da"], ["uuid", "1fda9559-8b39-49d5-87db-3bb0baf6b378"], ["support_identifier", "cs_03b79308"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.884953"], ["updated_at", "2018-10-16 17:23:18.884953"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1774308686 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1774308686], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:18.887589"], ["updated_at", "2018-10-16 17:23:18.887589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1774308686 AND "openstax_accounts_groups"."id" != 13) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1774308686" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"id"=>"-1774308686", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -738571911 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '0a0510a743447b1ebdc069b00cc8604a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b1f6c346-c9b0-4d33-92a8-7e00c3b6660d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e7ac8a7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -738571911], ["username", "0a0510a743447b1ebdc069b00cc8604a"], ["access_token", "ed5f1ec87d686db28fb8a3cac0c9a56c"], ["uuid", "b1f6c346-c9b0-4d33-92a8-7e00c3b6660d"], ["support_identifier", "cs_4e7ac8a7"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:18.902599"], ["updated_at", "2018-10-16 17:23:18.902599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -130832336 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -130832336], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:18.905104"], ["updated_at", "2018-10-16 17:23:18.905104"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "application_user"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users?q=something" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates" for 127.0.0.1 at 2018-10-16 12:23:18 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -117047525 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'b728f31bc10c53e62d3977deaf064f42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c18e88d-1b65-490c-8a5d-bf8b9811e148' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_618e1f9d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -117047525], ["username", "b728f31bc10c53e62d3977deaf064f42"], ["access_token", "e4c9cc07b924a1ef76dbbd2c8a77e5a1"], ["uuid", "2c18e88d-1b65-490c-8a5d-bf8b9811e148"], ["support_identifier", "cs_618e1f9d"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.003871"], ["updated_at", "2018-10-16 17:23:19.003871"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -412145067 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -412145067], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.014231"], ["updated_at", "2018-10-16 17:23:19.014231"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -874052915 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -874052915], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.017228"], ["updated_at", "2018-10-16 17:23:19.017228"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-412145067/nestings/-874052915" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-412145067", "member_group_id"=>"-874052915", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1182059627 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '1f2bf1ee3327dcafb0450a1fc91da24e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1328c0af-61b9-4b99-8996-8d84fd26cf48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a6f0f9b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1182059627], ["username", "1f2bf1ee3327dcafb0450a1fc91da24e"], ["access_token", "b847d061bba4b1ef92c69f712a84130d"], ["uuid", "1328c0af-61b9-4b99-8996-8d84fd26cf48"], ["support_identifier", "cs_5a6f0f9b"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.038027"], ["updated_at", "2018-10-16 17:23:19.038027"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -272449356 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -272449356], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.042055"], ["updated_at", "2018-10-16 17:23:19.042055"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1241763255 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1241763255], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.044621"], ["updated_at", "2018-10-16 17:23:19.044621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 18 LIMIT 1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 18]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -1241763255 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -1241763255 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 18]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 17]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -272449356 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -272449356 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 17]] + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1241763255 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -272449356 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -272449356], ["member_group_id", -1241763255], ["created_at", "2018-10-16 17:23:19.048839"], ["updated_at", "2018-10-16 17:23:19.048839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-272449356/nestings/-1241763255" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-272449356", "member_group_id"=>"-1241763255", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1516362051 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd1a21ef95a7e268cdb108b81eb3593b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'da435391-8711-412b-9a5c-7e923fbbb7db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b9bab43' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1516362051], ["username", "d1a21ef95a7e268cdb108b81eb3593b6"], ["access_token", "82eeee654f251ae76185d5801e01532a"], ["uuid", "da435391-8711-412b-9a5c-7e923fbbb7db"], ["support_identifier", "cs_9b9bab43"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.077365"], ["updated_at", "2018-10-16 17:23:19.077365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"dummy", "dummy"=>{"username"=>"dummy"}} +Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) +  (0.6ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372001237 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'c0a21ea5a035cdbbe26f08b50a9617bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '722bb837-be5c-49f2-899b-c7719a32ce0c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_074cbe40' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -372001237], ["username", "c0a21ea5a035cdbbe26f08b50a9617bb"], ["access_token", "c9e72031b38ef44209d24eacd4dc9bcb"], ["uuid", "722bb837-be5c-49f2-899b-c7719a32ce0c"], ["support_identifier", "cs_074cbe40"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.113783"], ["updated_at", "2018-10-16 17:23:19.113783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"email"=>"dummy@dum.my", "dummy"=>{"email"=>"dummy@dum.my"}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1385473833 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'fe7f8de87ca2c219827b287024ba8923' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '18aed227-3c35-4577-be3f-a54a1080ca5e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8cd46d8e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1385473833], ["username", "fe7f8de87ca2c219827b287024ba8923"], ["access_token", "1630db6d8f2e3d23fc2d79acb6e21359"], ["uuid", "18aed227-3c35-4577-be3f-a54a1080ca5e"], ["support_identifier", "cs_8cd46d8e"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.137410"], ["updated_at", "2018-10-16 17:23:19.137410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/users?q=something" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -612375360 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'cf959e14b1e5cc6598028bd6b4f21c7f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5ecf8a6f-4aea-4eb1-9d18-256914b0ddfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d90742c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -612375360], ["username", "cf959e14b1e5cc6598028bd6b4f21c7f"], ["access_token", "e035322c97a9a90ae6401f4bd17063a9"], ["uuid", "5ecf8a6f-4aea-4eb1-9d18-256914b0ddfe"], ["support_identifier", "cs_6d90742c"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.158670"], ["updated_at", "2018-10-16 17:23:19.158670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/user" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"cf959e14b1e5cc6598028bd6b4f21c7f", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil, "dummy"=>{"username"=>"cf959e14b1e5cc6598028bd6b4f21c7f", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1046446685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '5fdaa478e1fbecab42d7b2c6651b64dd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ab02bb3-94ef-4130-89c5-da6dc9760ab3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea027650' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1046446685], ["username", "5fdaa478e1fbecab42d7b2c6651b64dd"], ["access_token", "6f7bf4a29317d867faa0decd19c59b83"], ["uuid", "6ab02bb3-94ef-4130-89c5-da6dc9760ab3"], ["support_identifier", "cs_ea027650"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.172053"], ["updated_at", "2018-10-16 17:23:19.172053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -8463094 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -8463094], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.179573"], ["updated_at", "2018-10-16 17:23:19.179573"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -246299806 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '354cf2dfe2f8d6c9f612cc4d1850037a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57f647fa-2a2c-45ee-aed6-5a003e07e9db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b41b2e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -246299806], ["username", "354cf2dfe2f8d6c9f612cc4d1850037a"], ["access_token", "3368a8de42009521f9b0a498296324c0"], ["uuid", "57f647fa-2a2c-45ee-aed6-5a003e07e9db"], ["support_identifier", "cs_5b41b2e5"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.183519"], ["updated_at", "2018-10-16 17:23:19.183519"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 753 AND "openstax_accounts_group_owners"."group_id" = -8463094) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -8463094], ["user_id", -246299806], ["created_at", "2018-10-16 17:23:19.185824"], ["updated_at", "2018-10-16 17:23:19.185824"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-8463094/owners/-246299806" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-8463094", "user_id"=>"-246299806", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1271375007 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'b094409cb9c7d9b8c4541daeca6f21b2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd8f4e5e5-4192-42e0-9ae7-be710d9697ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7467a2f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1271375007], ["username", "b094409cb9c7d9b8c4541daeca6f21b2"], ["access_token", "8d86d2bea0e62d52a9b5d2e8990df6a1"], ["uuid", "d8f4e5e5-4192-42e0-9ae7-be710d9697ef"], ["support_identifier", "cs_7467a2f1"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.199949"], ["updated_at", "2018-10-16 17:23:19.199949"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1181583308 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1181583308], ["name", "MyGroup"], ["created_at", "2018-10-16 17:23:19.202332"], ["updated_at", "2018-10-16 17:23:19.202332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1595497625 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd359c8d80b7ff9c785fc176b05410765' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f4fb89e7-27f2-4b6b-bb9b-da05d334a104' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9318ccbb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1595497625], ["username", "d359c8d80b7ff9c785fc176b05410765"], ["access_token", "88f00b2623f93bf8257ab9d62531c717"], ["uuid", "f4fb89e7-27f2-4b6b-bb9b-da05d334a104"], ["support_identifier", "cs_9318ccbb"], ["is_test", "t"], ["created_at", "2018-10-16 17:23:19.206676"], ["updated_at", "2018-10-16 17:23:19.206676"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-1181583308/owners/-1595497625" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-1181583308", "user_id"=>"-1595497625", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "application_group"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 12:23:19 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (193.7ms) DROP DATABASE IF EXISTS "ox_tutor_test" +  (473.9ms) CREATE DATABASE "ox_tutor_test" ENCODING = 'utf8' + SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" + SQL (6.7ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" + SQL (14.3ms) CREATE EXTENSION IF NOT EXISTS "citext" +  (6.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" serial primary key, "openstax_uid" integer, "username" character varying, "access_token" character varying, "first_name" character varying, "last_name" character varying, "full_name" character varying, "title" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "faculty_status" integer DEFAULT 0 NOT NULL, "salesforce_contact_id" character varying, "uuid" uuid DEFAULT gen_random_uuid(), "role" integer DEFAULT 0 NOT NULL, "support_identifier" citext, "is_test" boolean, "school_type" integer DEFAULT 0 NOT NULL) +  (1.5ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" USING btree ("access_token") +  (1.4ms) CREATE INDEX "index_openstax_accounts_accounts_on_faculty_status" ON "openstax_accounts_accounts" USING btree ("faculty_status") +  (1.2ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" USING btree ("first_name") +  (1.2ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" USING btree ("full_name") +  (1.2ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" USING btree ("last_name") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" USING btree ("openstax_uid") +  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_role" ON "openstax_accounts_accounts" USING btree ("role") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_salesforce_contact_id" ON "openstax_accounts_accounts" USING btree ("salesforce_contact_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_school_type" ON "openstax_accounts_accounts" USING btree ("school_type") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_support_identifier" ON "openstax_accounts_accounts" USING btree ("support_identifier") +  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" USING btree ("username") +  (1.2ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_uuid" ON "openstax_accounts_accounts" USING btree ("uuid") +  (1.8ms) CREATE TABLE "openstax_accounts_group_members" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" USING btree ("group_id", "user_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" USING btree ("user_id") +  (1.9ms) CREATE TABLE "openstax_accounts_group_nestings" ("id" serial primary key, "member_group_id" integer NOT NULL, "container_group_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.1ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" USING btree ("container_group_id") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" USING btree ("member_group_id") +  (1.8ms) CREATE TABLE "openstax_accounts_group_owners" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" USING btree ("group_id", "user_id") +  (1.0ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" USING btree ("user_id") +  (3.0ms) CREATE TABLE "openstax_accounts_groups" ("id" serial primary key, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" character varying, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.3ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" USING btree ("is_public") +  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" USING btree ("openstax_uid") +  (2.7ms) CREATE TABLE "ownerships" ("id" serial primary key, "owner_id" integer NOT NULL, "owner_type" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" USING btree ("owner_id", "owner_type") +  (2.2ms) CREATE TABLE "users" ("id" serial primary key, "account_id" integer NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (1.0ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" USING btree ("account_id") +  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)  +  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") +  (0.3ms) SELECT version FROM "schema_migrations" +  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('1001') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('1000') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('4') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('11') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('2') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('7') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('13') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('8') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('1') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('10') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('3') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('6') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('9') +  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('12') +  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('5') + ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.2ms) BEGIN +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -706350573 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e293a4cb-529b-4161-a2c5-50ad905911c2' LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fe2460d' LIMIT 1 + SQL (1.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -706350573], ["username", "jstrav"], ["access_token", "7b2b459dab1d44d905e5a0f2ce3d47b9"], ["uuid", "e293a4cb-529b-4161-a2c5-50ad905911c2"], ["support_identifier", "cs_0fe2460d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.715926"], ["updated_at", "2018-10-16 18:06:09.715926"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1195930130 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dce3bc3d-95be-4410-be13-74e4c99350cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_95ff2978' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1195930130], ["username", "mary"], ["access_token", "5a9ae7c718153bd13f6f0937419fbda7"], ["uuid", "dce3bc3d-95be-4410-be13-74e4c99350cd"], ["support_identifier", "cs_95ff2978"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.722719"], ["updated_at", "2018-10-16 18:06:09.722719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -86503428 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f73107b8-fbb7-4849-9fea-3dea920ef08d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_675dfb67' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -86503428], ["username", "jstead"], ["access_token", "fd48f18ec7e69a249173a63ff49fc366"], ["uuid", "f73107b8-fbb7-4849-9fea-3dea920ef08d"], ["support_identifier", "cs_675dfb67"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.727706"], ["updated_at", "2018-10-16 18:06:09.727706"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -714970426 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '95055d39-8a20-4b4f-b55f-12b850ba8e47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01247b03' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -714970426], ["username", "bigbear"], ["access_token", "13a042b2ea05c8287582f5290e584ee9"], ["uuid", "95055d39-8a20-4b4f-b55f-12b850ba8e47"], ["support_identifier", "cs_01247b03"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.731892"], ["updated_at", "2018-10-16 18:06:09.731892"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -820619851 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8758368e-d927-42c4-afd0-6789017a5654' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_820e915e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -820619851], ["username", "jstrav"], ["access_token", "5220662c5405da6cbcb48e79d334c030"], ["uuid", "8758368e-d927-42c4-afd0-6789017a5654"], ["support_identifier", "cs_820e915e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.741943"], ["updated_at", "2018-10-16 18:06:09.741943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2007421650 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24dc2360-4175-4693-ad84-22c5519763fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2338d5f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2007421650], ["username", "mary"], ["access_token", "255a16676db9209ba6d927400504f04c"], ["uuid", "24dc2360-4175-4693-ad84-22c5519763fd"], ["support_identifier", "cs_2338d5f8"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.746171"], ["updated_at", "2018-10-16 18:06:09.746171"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -819666404 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0374d8a-8672-4f40-8ba5-7c4703c214e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9e3fbd7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -819666404], ["username", "jstead"], ["access_token", "37de6e845383fd67b58f049b9d906d5d"], ["uuid", "e0374d8a-8672-4f40-8ba5-7c4703c214e9"], ["support_identifier", "cs_c9e3fbd7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.750406"], ["updated_at", "2018-10-16 18:06:09.750406"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1760248315 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8cbc81c3-a0be-4f16-9e4d-bbf3167fc2d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8685d763' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1760248315], ["username", "bigbear"], ["access_token", "85cc5396bd2e65c44956bec993d4038a"], ["uuid", "8cbc81c3-a0be-4f16-9e4d-bbf3167fc2d3"], ["support_identifier", "cs_8685d763"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.759048"], ["updated_at", "2018-10-16 18:06:09.759048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1733569367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c352c0e5-7eb7-470c-8ad2-98474f976a42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7facee09' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1733569367], ["username", "jstrav"], ["access_token", "05b9f5d0017106ce28dc21c3f0cdce1a"], ["uuid", "c352c0e5-7eb7-470c-8ad2-98474f976a42"], ["support_identifier", "cs_7facee09"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.768343"], ["updated_at", "2018-10-16 18:06:09.768343"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -731691480 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47cb611d-c26e-4599-8238-5fd34b550b68' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9a7924b0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -731691480], ["username", "mary"], ["access_token", "6775847126e606096ee10b8b40b7f077"], ["uuid", "47cb611d-c26e-4599-8238-5fd34b550b68"], ["support_identifier", "cs_9a7924b0"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.773405"], ["updated_at", "2018-10-16 18:06:09.773405"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -420208731 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '551a17ae-dc4d-4dbb-9307-20ee2f9a8ded' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26c346d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -420208731], ["username", "jstead"], ["access_token", "8f04ff6fcc99f30e78a1d7f172f5629c"], ["uuid", "551a17ae-dc4d-4dbb-9307-20ee2f9a8ded"], ["support_identifier", "cs_26c346d1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.778209"], ["updated_at", "2018-10-16 18:06:09.778209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373444272 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd7a235fc-2093-425a-a229-d7770b84295a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8fd39656' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1373444272], ["username", "bigbear"], ["access_token", "ac80774467ca0518e26e0002ccfa884b"], ["uuid", "d7a235fc-2093-425a-a229-d7770b84295a"], ["support_identifier", "cs_8fd39656"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.782363"], ["updated_at", "2018-10-16 18:06:09.782363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1728710830 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba6dd3d2-912e-47e5-8b33-29c638f70f4e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0df6a800' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1728710830], ["username", "jstrav"], ["access_token", "7f25d9c083b8c49ffcbbf965d7c2e2a8"], ["uuid", "ba6dd3d2-912e-47e5-8b33-29c638f70f4e"], ["support_identifier", "cs_0df6a800"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.790601"], ["updated_at", "2018-10-16 18:06:09.790601"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1704086201 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d978fe7-5f5a-472d-96c0-7e40c6f36c5a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_504f04aa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1704086201], ["username", "mary"], ["access_token", "6e7231f9611baab605235d2ca7752cfc"], ["uuid", "8d978fe7-5f5a-472d-96c0-7e40c6f36c5a"], ["support_identifier", "cs_504f04aa"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.794821"], ["updated_at", "2018-10-16 18:06:09.794821"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1975623250 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e6030c75-d64f-4aeb-bf1e-a2f0bfb2367d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0ebb681b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1975623250], ["username", "jstead"], ["access_token", "33b41f783f30ce08dee10e7e45286451"], ["uuid", "e6030c75-d64f-4aeb-bf1e-a2f0bfb2367d"], ["support_identifier", "cs_0ebb681b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.799051"], ["updated_at", "2018-10-16 18:06:09.799051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -302150596 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f4a59e6f-8412-4a32-9542-d99479e9b9c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e9e3e26' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -302150596], ["username", "bigbear"], ["access_token", "dc37dc186320ec0daea2fd4b6504896a"], ["uuid", "f4a59e6f-8412-4a32-9542-d99479e9b9c7"], ["support_identifier", "cs_0e9e3e26"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.803689"], ["updated_at", "2018-10-16 18:06:09.803689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'e6030c75-d64f-4aeb-bf1e-a2f0bfb2367d') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'e6030c75-d64f-4aeb-bf1e-a2f0bfb2367d') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1102656873 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0177f5f5-b50b-4e6c-b06e-5126f5a2dd77' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f7c1e18e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1102656873], ["username", "jstrav"], ["access_token", "f2aa272e61983af89e436d1c861f8de1"], ["uuid", "0177f5f5-b50b-4e6c-b06e-5126f5a2dd77"], ["support_identifier", "cs_f7c1e18e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.811061"], ["updated_at", "2018-10-16 18:06:09.811061"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -151072873 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0ac8980-5099-4439-ba48-8cece258bdfa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d383b284' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -151072873], ["username", "mary"], ["access_token", "4a937451808323ed4430f1d466d6d45b"], ["uuid", "c0ac8980-5099-4439-ba48-8cece258bdfa"], ["support_identifier", "cs_d383b284"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.815204"], ["updated_at", "2018-10-16 18:06:09.815204"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2828730 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5597ed47-a375-49fe-9c4d-52da42e9468c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_be2181cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2828730], ["username", "jstead"], ["access_token", "4966489c903933365781cc497979fb93"], ["uuid", "5597ed47-a375-49fe-9c4d-52da42e9468c"], ["support_identifier", "cs_be2181cf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.819862"], ["updated_at", "2018-10-16 18:06:09.819862"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1673028901 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '590a35f3-1b63-481f-92d7-05902558fede' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc334623' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1673028901], ["username", "bigbear"], ["access_token", "1f532a7e2a69cc1271f1a22478045193"], ["uuid", "590a35f3-1b63-481f-92d7-05902558fede"], ["support_identifier", "cs_dc334623"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.824334"], ["updated_at", "2018-10-16 18:06:09.824334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1427099452 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9da09ba7-0f25-4b0b-a8e6-72f4fc73797b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d1d952fc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1427099452], ["username", "jstrav"], ["access_token", "0ef035c7343abd7d91d2e36d22aca0b7"], ["uuid", "9da09ba7-0f25-4b0b-a8e6-72f4fc73797b"], ["support_identifier", "cs_d1d952fc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.831605"], ["updated_at", "2018-10-16 18:06:09.831605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1296843542 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d55d170-6aea-467b-9eb4-4a274347d481' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_840a5927' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1296843542], ["username", "mary"], ["access_token", "4172b754f97faf0ac2db2e051506e7c9"], ["uuid", "6d55d170-6aea-467b-9eb4-4a274347d481"], ["support_identifier", "cs_840a5927"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.836371"], ["updated_at", "2018-10-16 18:06:09.836371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -764179021 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5bf56c41-5925-441d-9f25-13d6356e73a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ef460d8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -764179021], ["username", "jstead"], ["access_token", "98ef4ab0e8ddf37ac87571cbb324d005"], ["uuid", "5bf56c41-5925-441d-9f25-13d6356e73a4"], ["support_identifier", "cs_2ef460d8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.840728"], ["updated_at", "2018-10-16 18:06:09.840728"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -708573989 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b7d1e331-7340-434e-8f87-0545a75aaafd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6af7cfb7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -708573989], ["username", "bigbear"], ["access_token", "73f89edaf318f132fdf71c54fdaed04e"], ["uuid", "b7d1e331-7340-434e-8f87-0545a75aaafd"], ["support_identifier", "cs_6af7cfb7"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.844767"], ["updated_at", "2018-10-16 18:06:09.844767"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1087228594 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb24a447-3199-401b-9394-6f1f3d90fe67' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c987aed' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1087228594], ["username", "jstrav"], ["access_token", "4a32e484c337d5a278dc49630dbf42c3"], ["uuid", "bb24a447-3199-401b-9394-6f1f3d90fe67"], ["support_identifier", "cs_6c987aed"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.853926"], ["updated_at", "2018-10-16 18:06:09.853926"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1494804502 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b220680-2ee8-4ba5-8eaa-74204f621e17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_45bd8b16' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1494804502], ["username", "mary"], ["access_token", "b93fed789b68838f075df5d42d4ad6f0"], ["uuid", "0b220680-2ee8-4ba5-8eaa-74204f621e17"], ["support_identifier", "cs_45bd8b16"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.858267"], ["updated_at", "2018-10-16 18:06:09.858267"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -691628879 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7efa7bc0-0f47-4ade-a8ad-d3cfd6fa0add' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d466c51e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -691628879], ["username", "jstead"], ["access_token", "e42e9690ee92500f4b76865ac067a077"], ["uuid", "7efa7bc0-0f47-4ade-a8ad-d3cfd6fa0add"], ["support_identifier", "cs_d466c51e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.862305"], ["updated_at", "2018-10-16 18:06:09.862305"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1231558148 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba036e5f-5326-4c07-8af7-d2c1ceedb8cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a8802f00' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1231558148], ["username", "bigbear"], ["access_token", "7932d414fef27042e449b3ff1df3f050"], ["uuid", "ba036e5f-5326-4c07-8af7-d2c1ceedb8cd"], ["support_identifier", "cs_a8802f00"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.866981"], ["updated_at", "2018-10-16 18:06:09.866981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1969070673 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '17221b2d-5048-4fb5-aeac-e886bbfbae31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9aea3a72' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1969070673], ["username", "jstrav"], ["access_token", "9de507961b9d1662494190915aa658cd"], ["uuid", "17221b2d-5048-4fb5-aeac-e886bbfbae31"], ["support_identifier", "cs_9aea3a72"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.874828"], ["updated_at", "2018-10-16 18:06:09.874828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2030427385 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '717e3fc7-7bdf-4a94-9bb3-6db726129bba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_48e35a48' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2030427385], ["username", "mary"], ["access_token", "d1c394a4a590168c9e4c814ea94bc87d"], ["uuid", "717e3fc7-7bdf-4a94-9bb3-6db726129bba"], ["support_identifier", "cs_48e35a48"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.878990"], ["updated_at", "2018-10-16 18:06:09.878990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1109918658 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1edfd0da-c107-4d66-bc05-f236a63fbdda' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee1b0890' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1109918658], ["username", "jstead"], ["access_token", "c1143b3545d6cfffcc3daba4cc9c3548"], ["uuid", "1edfd0da-c107-4d66-bc05-f236a63fbdda"], ["support_identifier", "cs_ee1b0890"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.883363"], ["updated_at", "2018-10-16 18:06:09.883363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112097758 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce7fc11a-f0a4-4fae-829d-94c745585126' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_42ea8935' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1112097758], ["username", "bigbear"], ["access_token", "322e2a094859f968b4658fe6bffb3b58"], ["uuid", "ce7fc11a-f0a4-4fae-829d-94c745585126"], ["support_identifier", "cs_42ea8935"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.891675"], ["updated_at", "2018-10-16 18:06:09.891675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369982829 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c3c2f87-2e0c-429b-96a2-84ca16076878' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_372fa628' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -369982829], ["username", "jstrav"], ["access_token", "e0f900b8e924a2ebd841ff4994a243c0"], ["uuid", "2c3c2f87-2e0c-429b-96a2-84ca16076878"], ["support_identifier", "cs_372fa628"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.900531"], ["updated_at", "2018-10-16 18:06:09.900531"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -969967150 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f15db9bf-5352-448c-be0d-6493aaad6b4b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff959393' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -969967150], ["username", "mary"], ["access_token", "3b5f979234adfe0bef5d4d7bc1f1004a"], ["uuid", "f15db9bf-5352-448c-be0d-6493aaad6b4b"], ["support_identifier", "cs_ff959393"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.905140"], ["updated_at", "2018-10-16 18:06:09.905140"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -273425726 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76deb483-1f1d-449a-9ae2-d105d3613b02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff58bc01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -273425726], ["username", "jstead"], ["access_token", "8964fc63646868ab78eb00544bad7321"], ["uuid", "76deb483-1f1d-449a-9ae2-d105d3613b02"], ["support_identifier", "cs_ff58bc01"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.909605"], ["updated_at", "2018-10-16 18:06:09.909605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -178282115 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b58a8099-baa3-4dee-8806-6ce418dc7d84' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_289f1d0d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -178282115], ["username", "bigbear"], ["access_token", "c95c1b03f45bcc06cd23d4236f4ffcf7"], ["uuid", "b58a8099-baa3-4dee-8806-6ce418dc7d84"], ["support_identifier", "cs_289f1d0d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.913647"], ["updated_at", "2018-10-16 18:06:09.913647"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_ff58bc01') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_ff58bc01') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142925367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c0b1839-3062-4900-85f1-9ddb1b6497fc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_51fb9453' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -142925367], ["username", "jstrav"], ["access_token", "e5e0e666a60ebfc712be4a75ab8be2e0"], ["uuid", "7c0b1839-3062-4900-85f1-9ddb1b6497fc"], ["support_identifier", "cs_51fb9453"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.921745"], ["updated_at", "2018-10-16 18:06:09.921745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -725249777 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a14d3139-3264-49be-a110-1fe437b1bb90' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc24a55e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -725249777], ["username", "mary"], ["access_token", "734c87d2efc72f12e8b63542eb65ae2b"], ["uuid", "a14d3139-3264-49be-a110-1fe437b1bb90"], ["support_identifier", "cs_dc24a55e"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.926105"], ["updated_at", "2018-10-16 18:06:09.926105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1192393812 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68378845-468c-48be-967a-be8d624da88c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_27bc4799' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1192393812], ["username", "jstead"], ["access_token", "b0c226e3453fff5a370f0e1c11dffba0"], ["uuid", "68378845-468c-48be-967a-be8d624da88c"], ["support_identifier", "cs_27bc4799"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.930272"], ["updated_at", "2018-10-16 18:06:09.930272"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1760245125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e8277ae-54a8-4793-a6d1-af7ff6cf0295' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d77d67e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1760245125], ["username", "bigbear"], ["access_token", "ead3f2830b391fcb04073fe03322b723"], ["uuid", "9e8277ae-54a8-4793-a6d1-af7ff6cf0295"], ["support_identifier", "cs_0d77d67e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.934368"], ["updated_at", "2018-10-16 18:06:09.934368"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.6ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -486607099 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08a071c4-2470-47e2-a64c-6de6e30bf0ee' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe6dccbe' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -486607099], ["username", "jstrav"], ["access_token", "24884138a9d7a6f00bec26c9cfeaa858"], ["uuid", "08a071c4-2470-47e2-a64c-6de6e30bf0ee"], ["support_identifier", "cs_fe6dccbe"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.945149"], ["updated_at", "2018-10-16 18:06:09.945149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1746301656 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8696989-8cd9-49f0-ba5f-80d7338fc1bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_acea3630' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1746301656], ["username", "mary"], ["access_token", "f1aaa3af993f8d468d0ebc9861b937d5"], ["uuid", "a8696989-8cd9-49f0-ba5f-80d7338fc1bb"], ["support_identifier", "cs_acea3630"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.949485"], ["updated_at", "2018-10-16 18:06:09.949485"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -177397463 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f7eae62-84d4-406c-bc3f-10fafe03d5ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d153f916' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -177397463], ["username", "jstead"], ["access_token", "c7d2685aee1fb51d7749634a5e990ec5"], ["uuid", "0f7eae62-84d4-406c-bc3f-10fafe03d5ab"], ["support_identifier", "cs_d153f916"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.955321"], ["updated_at", "2018-10-16 18:06:09.955321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1795182498 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de9a05fd-0df1-46e1-abec-e5ba35889793' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a160a81a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1795182498], ["username", "bigbear"], ["access_token", "bcb69634b10b6ce4b989946404b98e55"], ["uuid", "de9a05fd-0df1-46e1-abec-e5ba35889793"], ["support_identifier", "cs_a160a81a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.959602"], ["updated_at", "2018-10-16 18:06:09.959602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -655632170 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '21362008-4c5a-4006-bc77-2858681d5c0f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cda98ec9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -655632170], ["username", "jstrav"], ["access_token", "7624c178668db14073376a3527e8c8c2"], ["uuid", "21362008-4c5a-4006-bc77-2858681d5c0f"], ["support_identifier", "cs_cda98ec9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.967107"], ["updated_at", "2018-10-16 18:06:09.967107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -338461828 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c63597c-0147-46c2-b62e-e25878190fb8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_07c6f92b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -338461828], ["username", "mary"], ["access_token", "99cf62ba59fc2226f4a20092f5fb743d"], ["uuid", "4c63597c-0147-46c2-b62e-e25878190fb8"], ["support_identifier", "cs_07c6f92b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.971928"], ["updated_at", "2018-10-16 18:06:09.971928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -654648503 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '70e23edc-c429-43c8-88d9-4ebcde791451' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e171c644' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -654648503], ["username", "jstead"], ["access_token", "846c283a31ac581e0229cdd0fc1d0aeb"], ["uuid", "70e23edc-c429-43c8-88d9-4ebcde791451"], ["support_identifier", "cs_e171c644"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:09.976634"], ["updated_at", "2018-10-16 18:06:09.976634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1350010396 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c850a328-d4d7-4d2a-b5fe-8064d0faf64e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1f3f7792' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1350010396], ["username", "bigbear"], ["access_token", "6e16b30e99dcdeb5008d0d95de6e2028"], ["uuid", "c850a328-d4d7-4d2a-b5fe-8064d0faf64e"], ["support_identifier", "cs_1f3f7792"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:09.983976"], ["updated_at", "2018-10-16 18:06:09.983976"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -654648503) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -654648503) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -613700981 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d2fb987-485b-4f70-8015-b5ed3d88aead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_385d3e70' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -613700981], ["username", "jstrav"], ["access_token", "4c9338a612108e19c460ef0dc4491702"], ["uuid", "0d2fb987-485b-4f70-8015-b5ed3d88aead"], ["support_identifier", "cs_385d3e70"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:09.991772"], ["updated_at", "2018-10-16 18:06:09.991772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1347393303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '453f6016-284c-41fc-95c9-fdfc2a359a43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d2d9698e' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1347393303], ["username", "mary"], ["access_token", "afc7f1292b749eaf08b7ebde13101a64"], ["uuid", "453f6016-284c-41fc-95c9-fdfc2a359a43"], ["support_identifier", "cs_d2d9698e"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:09.995929"], ["updated_at", "2018-10-16 18:06:09.995929"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -710869321 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '49cb1fdd-6b2c-448d-a2a3-f48479e8fa26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6b72c65' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -710869321], ["username", "jstead"], ["access_token", "cc570794853cef495a914f40c397ec0c"], ["uuid", "49cb1fdd-6b2c-448d-a2a3-f48479e8fa26"], ["support_identifier", "cs_e6b72c65"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:10.000839"], ["updated_at", "2018-10-16 18:06:10.000839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -99228702 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aafe0eee-243a-498c-8ebc-10e728ef6a44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b49acdfc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -99228702], ["username", "bigbear"], ["access_token", "05c29a0fa5422d59a5767074dc32d877"], ["uuid", "aafe0eee-243a-498c-8ebc-10e728ef6a44"], ["support_identifier", "cs_b49acdfc"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:10.005542"], ["updated_at", "2018-10-16 18:06:10.005542"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.7ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -481229660 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73e4748a-9f34-441b-9952-2185a93b101d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d627f7a7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -481229660], ["username", "jstrav"], ["access_token", "35cd469ad4db80fc483829d79f849420"], ["uuid", "73e4748a-9f34-441b-9952-2185a93b101d"], ["support_identifier", "cs_d627f7a7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:10.015644"], ["updated_at", "2018-10-16 18:06:10.015644"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1910026404 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b3e638c3-dd57-4a81-b2e2-38d836f5f88b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d17ce213' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1910026404], ["username", "mary"], ["access_token", "63f319438cbe65704c4ed3ff8ae158bb"], ["uuid", "b3e638c3-dd57-4a81-b2e2-38d836f5f88b"], ["support_identifier", "cs_d17ce213"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:10.020218"], ["updated_at", "2018-10-16 18:06:10.020218"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -861666136 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8287b7f9-f491-47c9-9f60-6cc75b9943b3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_de35fafc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -861666136], ["username", "jstead"], ["access_token", "7849dbcf1eba4cd61b1c2cf223240e0e"], ["uuid", "8287b7f9-f491-47c9-9f60-6cc75b9943b3"], ["support_identifier", "cs_de35fafc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:10.025425"], ["updated_at", "2018-10-16 18:06:10.025425"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1331586938 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1fe95fd8-a7a7-4376-a554-5453ac06ac7b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a48a047f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1331586938], ["username", "bigbear"], ["access_token", "7f572dd42639f3f1cc952235d435f11a"], ["uuid", "1fe95fd8-a7a7-4376-a554-5453ac06ac7b"], ["support_identifier", "cs_a48a047f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:10.029711"], ["updated_at", "2018-10-16 18:06:10.029711"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1189525313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '64edb17c-9721-472a-8624-4c33818234af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_baaf54d5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1189525313], ["username", "billy_00"], ["access_token", "d0ed8d3a20b3a425f78bffa94056eb82"], ["uuid", "64edb17c-9721-472a-8624-4c33818234af"], ["support_identifier", "cs_baaf54d5"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:10.034347"], ["updated_at", "2018-10-16 18:06:10.034347"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -848110343 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '50164712-4f40-4e7f-8304-a5aa39994b5c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_97c1992b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -848110343], ["username", "billy_01"], ["access_token", "fb44081bdeeec2abf14effeea4ce4d8c"], ["uuid", "50164712-4f40-4e7f-8304-a5aa39994b5c"], ["support_identifier", "cs_97c1992b"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:10.038741"], ["updated_at", "2018-10-16 18:06:10.038741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2005172786 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0031ebcc-f6f3-4b39-aad9-1eadbc37f724' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9805a3f9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2005172786], ["username", "billy_02"], ["access_token", "0080fd7fe5f25965cae478e754674f38"], ["uuid", "0031ebcc-f6f3-4b39-aad9-1eadbc37f724"], ["support_identifier", "cs_9805a3f9"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:10.043185"], ["updated_at", "2018-10-16 18:06:10.043185"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -641168854 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c369dd5-f1ed-4739-a329-9bd040721e1c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cfb23b41' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -641168854], ["username", "billy_03"], ["access_token", "cc013718ba9588a3390824cb95a0d48f"], ["uuid", "4c369dd5-f1ed-4739-a329-9bd040721e1c"], ["support_identifier", "cs_cfb23b41"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:10.048179"], ["updated_at", "2018-10-16 18:06:10.048179"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -403270890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4d645f33-2fb4-4e71-a7a3-ba9f5a327ce1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f75ccf0c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -403270890], ["username", "billy_04"], ["access_token", "df811073a9a2fbb7524b46caf79b0ac7"], ["uuid", "4d645f33-2fb4-4e71-a7a3-ba9f5a327ce1"], ["support_identifier", "cs_f75ccf0c"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:10.054213"], ["updated_at", "2018-10-16 18:06:10.054213"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -174529881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fe9b1f04-1814-441c-8a12-6cfcf03d2c7a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29ec7e37' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -174529881], ["username", "billy_05"], ["access_token", "f975a5b7d04814830b206f32849410b1"], ["uuid", "fe9b1f04-1814-441c-8a12-6cfcf03d2c7a"], ["support_identifier", "cs_29ec7e37"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:10.058813"], ["updated_at", "2018-10-16 18:06:10.058813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96373315 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f47208d9-4a46-4ea9-95b8-cc4519b05a70' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bee63d21' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -96373315], ["username", "billy_06"], ["access_token", "9c1fd6d590e2a917422f399f3ca64066"], ["uuid", "f47208d9-4a46-4ea9-95b8-cc4519b05a70"], ["support_identifier", "cs_bee63d21"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:10.063306"], ["updated_at", "2018-10-16 18:06:10.063306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -311785737 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cf21ec7d-e883-4d92-b3eb-2b2f7d010536' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d39407ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -311785737], ["username", "billy_07"], ["access_token", "1fc9a20e2af5f002ed3fe40414637f46"], ["uuid", "cf21ec7d-e883-4d92-b3eb-2b2f7d010536"], ["support_identifier", "cs_d39407ef"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:10.067717"], ["updated_at", "2018-10-16 18:06:10.067717"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -500607393 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '91825475-dd4e-4c8e-acad-0673694a92cd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_874253ed' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -500607393], ["username", "billy_08"], ["access_token", "4ffe7a1ca7e6bc48503fb70a0d5c9202"], ["uuid", "91825475-dd4e-4c8e-acad-0673694a92cd"], ["support_identifier", "cs_874253ed"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:10.072257"], ["updated_at", "2018-10-16 18:06:10.072257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2056431110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '49a8349c-9533-43ac-8ed0-0334c02be490' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56f92a75' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2056431110], ["username", "billy_09"], ["access_token", "df5afb93b6101dac74456eaefa899f6b"], ["uuid", "49a8349c-9533-43ac-8ed0-0334c02be490"], ["support_identifier", "cs_56f92a75"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:10.077462"], ["updated_at", "2018-10-16 18:06:10.077462"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2095732528 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '34e6c2a2-ec80-4467-b586-d1631ab89140' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6492a88b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2095732528], ["username", "billy_10"], ["access_token", "adcba1061dba813b2a80cb1ee777ce56"], ["uuid", "34e6c2a2-ec80-4467-b586-d1631ab89140"], ["support_identifier", "cs_6492a88b"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:10.082123"], ["updated_at", "2018-10-16 18:06:10.082123"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1788811147 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '197d407c-8c4b-41c3-812c-a841144d12f3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9d470f00' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1788811147], ["username", "billy_11"], ["access_token", "68ca9058bced21994b06890ff4020694"], ["uuid", "197d407c-8c4b-41c3-812c-a841144d12f3"], ["support_identifier", "cs_9d470f00"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:10.086573"], ["updated_at", "2018-10-16 18:06:10.086573"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1242927883 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '753eea04-60b4-441d-a5c3-48764f9f4ee0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5db04fbe' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1242927883], ["username", "billy_12"], ["access_token", "93038c13c6475f32b86d05bb97f5eb37"], ["uuid", "753eea04-60b4-441d-a5c3-48764f9f4ee0"], ["support_identifier", "cs_5db04fbe"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:10.091096"], ["updated_at", "2018-10-16 18:06:10.091096"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1008498185 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de37b7a0-67e5-4278-aaa7-74504cc3fc06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7dad4010' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1008498185], ["username", "billy_13"], ["access_token", "60a4febc50a51a4f483af989b1fd58b3"], ["uuid", "de37b7a0-67e5-4278-aaa7-74504cc3fc06"], ["support_identifier", "cs_7dad4010"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:10.095936"], ["updated_at", "2018-10-16 18:06:10.095936"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -937434651 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd176e680-87d5-449d-b852-2ca8c2abcdbf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1577f000' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -937434651], ["username", "billy_14"], ["access_token", "85e95ced4522039e6f0039afa8ab388b"], ["uuid", "d176e680-87d5-449d-b852-2ca8c2abcdbf"], ["support_identifier", "cs_1577f000"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:10.100979"], ["updated_at", "2018-10-16 18:06:10.100979"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -187252274 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e1359f01-1626-4221-8e43-726a3ae21962' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f82803af' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -187252274], ["username", "billy_15"], ["access_token", "6b3e43fe7229fb5642031cb0a3207071"], ["uuid", "e1359f01-1626-4221-8e43-726a3ae21962"], ["support_identifier", "cs_f82803af"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:10.105928"], ["updated_at", "2018-10-16 18:06:10.105928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2103005633 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0760ed79-7160-4221-86a6-c6622e2cbc06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_55303ccb' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2103005633], ["username", "billy_16"], ["access_token", "f5ff3160fecff4df9594c21ae2abe746"], ["uuid", "0760ed79-7160-4221-86a6-c6622e2cbc06"], ["support_identifier", "cs_55303ccb"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:10.110512"], ["updated_at", "2018-10-16 18:06:10.110512"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -107490950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5dba6217-8b4b-4486-bbf9-40b8224be316' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a712c87d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -107490950], ["username", "billy_17"], ["access_token", "ef3a74b6d39995d1d98d538c1412da54"], ["uuid", "5dba6217-8b4b-4486-bbf9-40b8224be316"], ["support_identifier", "cs_a712c87d"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:10.115761"], ["updated_at", "2018-10-16 18:06:10.115761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1378784011 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'afefd664-595a-4711-8d92-51424c55d5e8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e761847f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1378784011], ["username", "billy_18"], ["access_token", "86cdab4ced1fe44c8eb73d14dfe19484"], ["uuid", "afefd664-595a-4711-8d92-51424c55d5e8"], ["support_identifier", "cs_e761847f"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:10.120486"], ["updated_at", "2018-10-16 18:06:10.120486"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1017101899 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '63b84b25-cb3d-4c94-9a27-8238e648191b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_402948e6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1017101899], ["username", "billy_19"], ["access_token", "22c9572c30f749cd0c25ae494afcb5c5"], ["uuid", "63b84b25-cb3d-4c94-9a27-8238e648191b"], ["support_identifier", "cs_402948e6"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:10.124757"], ["updated_at", "2018-10-16 18:06:10.124757"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -584509733 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f86b36f-8810-444f-ab84-2f15b045fde2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4ab63b4b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -584509733], ["username", "billy_20"], ["access_token", "b59204e5998e01b320c7bafe14799d5f"], ["uuid", "0f86b36f-8810-444f-ab84-2f15b045fde2"], ["support_identifier", "cs_4ab63b4b"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:10.128834"], ["updated_at", "2018-10-16 18:06:10.128834"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1967437638 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '852b464e-9318-4a2c-a9ce-9162cc48ec71' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a423eba6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1967437638], ["username", "billy_21"], ["access_token", "54a41f0ef7db13e7552b46ca7757767e"], ["uuid", "852b464e-9318-4a2c-a9ce-9162cc48ec71"], ["support_identifier", "cs_a423eba6"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:10.133056"], ["updated_at", "2018-10-16 18:06:10.133056"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -294107967 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac4f67af-e709-4e8d-a1f1-d68ff56e16a7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8c3ae01' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -294107967], ["username", "billy_22"], ["access_token", "0875ed19848ebe8a48e68b4df8e941b9"], ["uuid", "ac4f67af-e709-4e8d-a1f1-d68ff56e16a7"], ["support_identifier", "cs_f8c3ae01"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:10.137613"], ["updated_at", "2018-10-16 18:06:10.137613"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -75136170 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4fc2aa7b-8165-459c-a423-22c23107e94d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d349e6e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -75136170], ["username", "billy_23"], ["access_token", "8d8b97bff12148ad5511070d6b6da1d1"], ["uuid", "4fc2aa7b-8165-459c-a423-22c23107e94d"], ["support_identifier", "cs_d349e6e1"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:10.141772"], ["updated_at", "2018-10-16 18:06:10.141772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1517772717 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'beff8d2b-6efe-4158-9445-57183e83a03e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b94fb616' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1517772717], ["username", "billy_24"], ["access_token", "b3c8ad52fa61ecc05f15a6b7aaafe3cd"], ["uuid", "beff8d2b-6efe-4158-9445-57183e83a03e"], ["support_identifier", "cs_b94fb616"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:10.145809"], ["updated_at", "2018-10-16 18:06:10.145809"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2026843511 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b31ff5d0-56a4-46f7-9419-da6cdfe54a61' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_45044451' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2026843511], ["username", "billy_25"], ["access_token", "d3a407406b234e70a4e923495ffffa85"], ["uuid", "b31ff5d0-56a4-46f7-9419-da6cdfe54a61"], ["support_identifier", "cs_45044451"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:10.150764"], ["updated_at", "2018-10-16 18:06:10.150764"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1444103179 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'baf47586-19f3-40cb-81e1-7b8e84e820ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4b319cce' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1444103179], ["username", "billy_26"], ["access_token", "69c520d2efa148bbece49fbeca12ae6e"], ["uuid", "baf47586-19f3-40cb-81e1-7b8e84e820ce"], ["support_identifier", "cs_4b319cce"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:10.158705"], ["updated_at", "2018-10-16 18:06:10.158705"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -305206146 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ece91abb-c24b-4683-8713-3bff0c6ca8fc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4e462b6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -305206146], ["username", "billy_27"], ["access_token", "80bb6a7a41f7d0bb2e64040c2b3e2ff2"], ["uuid", "ece91abb-c24b-4683-8713-3bff0c6ca8fc"], ["support_identifier", "cs_e4e462b6"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:10.162859"], ["updated_at", "2018-10-16 18:06:10.162859"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1297378476 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '071caacf-a57e-4ff3-a21d-0931c018231e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5f51227c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1297378476], ["username", "billy_28"], ["access_token", "2779e9493ea0e5f04aa08cdea170d47f"], ["uuid", "071caacf-a57e-4ff3-a21d-0931c018231e"], ["support_identifier", "cs_5f51227c"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:10.167556"], ["updated_at", "2018-10-16 18:06:10.167556"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -984391369 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ca160b6b-d716-49d1-907e-6494d146c433' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4377a39c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -984391369], ["username", "billy_29"], ["access_token", "0a48ed6af9549ebcd6e4e650d3e6cb47"], ["uuid", "ca160b6b-d716-49d1-907e-6494d146c433"], ["support_identifier", "cs_4377a39c"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:10.172077"], ["updated_at", "2018-10-16 18:06:10.172077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -266000309 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f18aa5b-84dc-470a-bd2c-bb7ead782cd1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_106b7674' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -266000309], ["username", "billy_30"], ["access_token", "3171f9aacbd6d624ae12036d8ae05f4b"], ["uuid", "0f18aa5b-84dc-470a-bd2c-bb7ead782cd1"], ["support_identifier", "cs_106b7674"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:10.176694"], ["updated_at", "2018-10-16 18:06:10.176694"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219138819 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cb6e5263-ca86-482c-8908-9f1a08dc647f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b2149341' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1219138819], ["username", "billy_31"], ["access_token", "2ef02b19b9ef70f1257f3fc35fad1d14"], ["uuid", "cb6e5263-ca86-482c-8908-9f1a08dc647f"], ["support_identifier", "cs_b2149341"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:10.181053"], ["updated_at", "2018-10-16 18:06:10.181053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1921535317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5d5232f4-45ac-46af-80ab-e0a53dd703cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_157484a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1921535317], ["username", "billy_32"], ["access_token", "d8551fa696dec6a13177464ff11c7c5a"], ["uuid", "5d5232f4-45ac-46af-80ab-e0a53dd703cc"], ["support_identifier", "cs_157484a6"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:10.185665"], ["updated_at", "2018-10-16 18:06:10.185665"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1927069399 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5df71c27-49c6-448d-b60d-169a0a509948' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bc21521c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1927069399], ["username", "billy_33"], ["access_token", "9368186f36fc2c9019b125c3fc668e3d"], ["uuid", "5df71c27-49c6-448d-b60d-169a0a509948"], ["support_identifier", "cs_bc21521c"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:10.189974"], ["updated_at", "2018-10-16 18:06:10.189974"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1116283797 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '983278aa-a6c3-46b1-a4ad-d2c6a076724b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20e9479c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1116283797], ["username", "billy_34"], ["access_token", "df576c20ec0c1608bab36327983e7241"], ["uuid", "983278aa-a6c3-46b1-a4ad-d2c6a076724b"], ["support_identifier", "cs_20e9479c"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:10.194429"], ["updated_at", "2018-10-16 18:06:10.194429"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2131830094 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '22225831-2520-4d71-ac04-47c2e37da887' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3b9b13d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2131830094], ["username", "billy_35"], ["access_token", "ba33213dc24c8f01c18759c3372b56d6"], ["uuid", "22225831-2520-4d71-ac04-47c2e37da887"], ["support_identifier", "cs_f3b9b13d"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:10.198580"], ["updated_at", "2018-10-16 18:06:10.198580"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488988437 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ddcc3fff-c9a8-42c9-88fd-69dc11dfe87e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79d9f543' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -488988437], ["username", "billy_36"], ["access_token", "2bd202504f83b5ccc9664aa62ebce53b"], ["uuid", "ddcc3fff-c9a8-42c9-88fd-69dc11dfe87e"], ["support_identifier", "cs_79d9f543"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:10.203312"], ["updated_at", "2018-10-16 18:06:10.203312"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -376385471 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8e40d12-4672-443a-bf1e-ce4ce379ec2c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3da6a1e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -376385471], ["username", "billy_37"], ["access_token", "0c9ea306ef3ab576bbcda2f86de6c75a"], ["uuid", "a8e40d12-4672-443a-bf1e-ce4ce379ec2c"], ["support_identifier", "cs_f3da6a1e"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:10.207615"], ["updated_at", "2018-10-16 18:06:10.207615"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1290658249 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c5321bbd-af80-49d0-b4f9-b9c5ed2d54ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa4fb20d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1290658249], ["username", "billy_38"], ["access_token", "2f169a0e3b7b807d82fbda13817266aa"], ["uuid", "c5321bbd-af80-49d0-b4f9-b9c5ed2d54ce"], ["support_identifier", "cs_fa4fb20d"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:10.211914"], ["updated_at", "2018-10-16 18:06:10.211914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370586199 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c500da4-0139-4698-bb0b-923084bae2ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f51e98c0' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -370586199], ["username", "billy_39"], ["access_token", "2b1f396a21cbbbc3302cd4bf6d5268e0"], ["uuid", "2c500da4-0139-4698-bb0b-923084bae2ec"], ["support_identifier", "cs_f51e98c0"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:10.216777"], ["updated_at", "2018-10-16 18:06:10.216777"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -912174174 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'efaea2b3-1ad4-42a2-b800-09f37c66953e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_387c60c3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -912174174], ["username", "billy_40"], ["access_token", "b5f09c0c7f9a9cafea0ced203be2f7be"], ["uuid", "efaea2b3-1ad4-42a2-b800-09f37c66953e"], ["support_identifier", "cs_387c60c3"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:10.224711"], ["updated_at", "2018-10-16 18:06:10.224711"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -73740516 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6d7624a-61cf-464b-9955-fb83b3285304' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30201a87' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -73740516], ["username", "billy_41"], ["access_token", "6e4283da91dd458a40363b8a27f15387"], ["uuid", "b6d7624a-61cf-464b-9955-fb83b3285304"], ["support_identifier", "cs_30201a87"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:10.229093"], ["updated_at", "2018-10-16 18:06:10.229093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2022693040 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33a262bc-5b6c-499c-8248-0a654affa547' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4295888e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2022693040], ["username", "billy_42"], ["access_token", "d66ca20d19054592ec0567cd8a6d8fed"], ["uuid", "33a262bc-5b6c-499c-8248-0a654affa547"], ["support_identifier", "cs_4295888e"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:10.233260"], ["updated_at", "2018-10-16 18:06:10.233260"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1035355948 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '43f9697e-c093-44ad-ace0-0fd3c41043b4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a86e2c19' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1035355948], ["username", "billy_43"], ["access_token", "7156a31aa8b4659cd01586b51dcb4479"], ["uuid", "43f9697e-c093-44ad-ace0-0fd3c41043b4"], ["support_identifier", "cs_a86e2c19"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:10.237864"], ["updated_at", "2018-10-16 18:06:10.237864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1191897335 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '912d01dc-a10c-4602-914a-874ea93b4819' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_92df3027' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1191897335], ["username", "billy_44"], ["access_token", "93e9c2fb4aa5952dde8b591cf9c9d4a5"], ["uuid", "912d01dc-a10c-4602-914a-874ea93b4819"], ["support_identifier", "cs_92df3027"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:10.242027"], ["updated_at", "2018-10-16 18:06:10.242027"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1459103744 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de745fd5-cf9e-4d2a-8b49-a9711e3a343e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3062c3d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1459103744], ["username", "billy_45"], ["access_token", "df49977d73989a93e9d8f1544a8fc260"], ["uuid", "de745fd5-cf9e-4d2a-8b49-a9711e3a343e"], ["support_identifier", "cs_e3062c3d"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:10.246085"], ["updated_at", "2018-10-16 18:06:10.246085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -132288986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '471e6e68-d85c-4e86-8adb-78133d35a7f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_001a509c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -132288986], ["username", "jstrav"], ["access_token", "c6d8e755ea513f59eea47b77911b7249"], ["uuid", "471e6e68-d85c-4e86-8adb-78133d35a7f6"], ["support_identifier", "cs_001a509c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:10.260605"], ["updated_at", "2018-10-16 18:06:10.260605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -249851101 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ee13c132-2c57-4ef1-ac4f-a2bd652a372d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2a6a5275' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -249851101], ["username", "mary"], ["access_token", "9ff93c69223c6d22b7dc92f51f060e31"], ["uuid", "ee13c132-2c57-4ef1-ac4f-a2bd652a372d"], ["support_identifier", "cs_2a6a5275"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:10.264936"], ["updated_at", "2018-10-16 18:06:10.264936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -161968476 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2baa862-6df3-4ca1-9505-1980086331a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1453e349' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -161968476], ["username", "jstead"], ["access_token", "b3f1439b28ed480a06081882472eec47"], ["uuid", "a2baa862-6df3-4ca1-9505-1980086331a6"], ["support_identifier", "cs_1453e349"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:10.272697"], ["updated_at", "2018-10-16 18:06:10.272697"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -556788480 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '280db58c-5426-4330-834d-7f87254dfae1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4b55eab3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -556788480], ["username", "bigbear"], ["access_token", "1aead09a333e1efc0479ddb2dc400cd9"], ["uuid", "280db58c-5426-4330-834d-7f87254dfae1"], ["support_identifier", "cs_4b55eab3"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:10.277385"], ["updated_at", "2018-10-16 18:06:10.277385"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -440904086 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3f2487a5-f95c-4619-bf92-35b0b946038f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35171f4c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -440904086], ["username", "billy_00"], ["access_token", "ebaa5f98f86a136ad60f8ed523e89e3a"], ["uuid", "3f2487a5-f95c-4619-bf92-35b0b946038f"], ["support_identifier", "cs_35171f4c"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:10.284233"], ["updated_at", "2018-10-16 18:06:10.284233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -666270323 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0ced4192-1c7c-435a-b182-c07ca58f09dd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbe01f63' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -666270323], ["username", "billy_01"], ["access_token", "e633d18e61c51793b9b88e96390d4ca8"], ["uuid", "0ced4192-1c7c-435a-b182-c07ca58f09dd"], ["support_identifier", "cs_fbe01f63"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:10.288972"], ["updated_at", "2018-10-16 18:06:10.288972"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -351539434 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9a166bd3-ff54-4cb8-a984-78c308e93b18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e760bdcf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -351539434], ["username", "billy_02"], ["access_token", "814bf4a719ecc606e9e83c04f02403d5"], ["uuid", "9a166bd3-ff54-4cb8-a984-78c308e93b18"], ["support_identifier", "cs_e760bdcf"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:10.293291"], ["updated_at", "2018-10-16 18:06:10.293291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -939864110 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f11b7140-d6f3-498e-a43e-2d4b001be593' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee982b74' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -939864110], ["username", "billy_03"], ["access_token", "9ff4b77047048112615502e7f1325038"], ["uuid", "f11b7140-d6f3-498e-a43e-2d4b001be593"], ["support_identifier", "cs_ee982b74"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:10.297333"], ["updated_at", "2018-10-16 18:06:10.297333"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -170603229 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1d405c26-317e-4435-939f-52c78d09f64c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_55aac155' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -170603229], ["username", "billy_04"], ["access_token", "229343ed8fba66d3f5e56c8c2c6133b1"], ["uuid", "1d405c26-317e-4435-939f-52c78d09f64c"], ["support_identifier", "cs_55aac155"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:10.302006"], ["updated_at", "2018-10-16 18:06:10.302006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -334485991 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '611dbbdc-7f6a-460e-bb1f-a3070b18aedd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b883fa2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -334485991], ["username", "billy_05"], ["access_token", "2f89bf5ccff47f282f3bad5790e66ef6"], ["uuid", "611dbbdc-7f6a-460e-bb1f-a3070b18aedd"], ["support_identifier", "cs_0b883fa2"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:10.306274"], ["updated_at", "2018-10-16 18:06:10.306274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -88043412 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c5966f69-098a-4380-9c38-3073cbc189cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ae9f39b2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -88043412], ["username", "billy_06"], ["access_token", "9233fd9c35fc603f371003c8785ebccf"], ["uuid", "c5966f69-098a-4380-9c38-3073cbc189cc"], ["support_identifier", "cs_ae9f39b2"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:10.310420"], ["updated_at", "2018-10-16 18:06:10.310420"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -515536197 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bea53c80-3922-4002-9a39-8150f58cdde8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_161e6ecc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -515536197], ["username", "billy_07"], ["access_token", "660442fe8eea09c611cf50c582e7aeb4"], ["uuid", "bea53c80-3922-4002-9a39-8150f58cdde8"], ["support_identifier", "cs_161e6ecc"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:10.314468"], ["updated_at", "2018-10-16 18:06:10.314468"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -701774655 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3281956e-0c71-4ca7-94bb-4dd816c0f9a1' LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8d84f17e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -701774655], ["username", "billy_08"], ["access_token", "71f87a67b0a8ba9a4782dd8e1dfc2c3e"], ["uuid", "3281956e-0c71-4ca7-94bb-4dd816c0f9a1"], ["support_identifier", "cs_8d84f17e"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:10.320645"], ["updated_at", "2018-10-16 18:06:10.320645"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -168700036 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4878c4c9-e48e-4c97-83df-5670b688a813' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_be831ff7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -168700036], ["username", "billy_09"], ["access_token", "975031761497c4ce917e1ef013e3bd74"], ["uuid", "4878c4c9-e48e-4c97-83df-5670b688a813"], ["support_identifier", "cs_be831ff7"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:10.326085"], ["updated_at", "2018-10-16 18:06:10.326085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1170619883 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b03c6a0-d4f9-4289-a851-41cec4212f06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ad120e2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1170619883], ["username", "billy_10"], ["access_token", "250e33b371a082fbb32764aa876989a0"], ["uuid", "7b03c6a0-d4f9-4289-a851-41cec4212f06"], ["support_identifier", "cs_3ad120e2"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:10.330092"], ["updated_at", "2018-10-16 18:06:10.330092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1852550590 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f535f5a8-9c6d-4279-ad38-46a0fbd42ae7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4ed2460c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1852550590], ["username", "billy_11"], ["access_token", "fef4f56a169d8f0567a9eefdbb23441c"], ["uuid", "f535f5a8-9c6d-4279-ad38-46a0fbd42ae7"], ["support_identifier", "cs_4ed2460c"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:10.334371"], ["updated_at", "2018-10-16 18:06:10.334371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1136298927 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2530eab8-d986-4621-90e4-323486c72844' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c86c359' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1136298927], ["username", "billy_12"], ["access_token", "556845a3b8ce63b01ac8edd176a4f379"], ["uuid", "2530eab8-d986-4621-90e4-323486c72844"], ["support_identifier", "cs_2c86c359"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:10.338923"], ["updated_at", "2018-10-16 18:06:10.338923"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1847256497 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25c72683-2a15-41bb-97bf-c3dace34973a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_076f222f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1847256497], ["username", "billy_13"], ["access_token", "385f5e0bf8867e2fed2520d91547bdd3"], ["uuid", "25c72683-2a15-41bb-97bf-c3dace34973a"], ["support_identifier", "cs_076f222f"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:10.342983"], ["updated_at", "2018-10-16 18:06:10.342983"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1787369735 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d512d5c-1f48-44af-b85e-922b25cab636' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b25dc4b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1787369735], ["username", "billy_14"], ["access_token", "0cf8df2f1e3d61e8daaf51d64770d245"], ["uuid", "7d512d5c-1f48-44af-b85e-922b25cab636"], ["support_identifier", "cs_8b25dc4b"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:10.347054"], ["updated_at", "2018-10-16 18:06:10.347054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1290043263 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '370f2569-9495-4bd4-a992-1f4fb9750a28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_83cd3fe7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1290043263], ["username", "billy_15"], ["access_token", "5b716954e7c010801de76830a4608556"], ["uuid", "370f2569-9495-4bd4-a992-1f4fb9750a28"], ["support_identifier", "cs_83cd3fe7"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:10.352181"], ["updated_at", "2018-10-16 18:06:10.352181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -198731925 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd9a9e0a7-d128-4373-8bfa-5136b6880353' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8871e17f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -198731925], ["username", "billy_16"], ["access_token", "d03124ae6bf5c74dfb882568ffc4d698"], ["uuid", "d9a9e0a7-d128-4373-8bfa-5136b6880353"], ["support_identifier", "cs_8871e17f"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:10.356742"], ["updated_at", "2018-10-16 18:06:10.356742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1087039686 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f1abec60-2b74-4d96-92da-5c052d544b19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09a34fc3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1087039686], ["username", "billy_17"], ["access_token", "d52aa610eca6a59fcd6ef43660037715"], ["uuid", "f1abec60-2b74-4d96-92da-5c052d544b19"], ["support_identifier", "cs_09a34fc3"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:10.360846"], ["updated_at", "2018-10-16 18:06:10.360846"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1515400263 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '544e3cf0-899f-465e-aaaa-da1f6febd40c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44fbabad' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1515400263], ["username", "billy_18"], ["access_token", "29af39219e3cea0b0dfe918bc908a81f"], ["uuid", "544e3cf0-899f-465e-aaaa-da1f6febd40c"], ["support_identifier", "cs_44fbabad"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:10.365001"], ["updated_at", "2018-10-16 18:06:10.365001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1081934591 LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '226c3762-c22a-406b-87d4-86c7cca26600' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4407a861' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1081934591], ["username", "billy_19"], ["access_token", "b9768d007e0eb838718a9a1d4d6ee1a7"], ["uuid", "226c3762-c22a-406b-87d4-86c7cca26600"], ["support_identifier", "cs_4407a861"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:10.372892"], ["updated_at", "2018-10-16 18:06:10.372892"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -950708893 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14233c16-b409-40c0-8c34-b8e82f0b8632' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_91f3fb0d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -950708893], ["username", "billy_20"], ["access_token", "a35fed6803c03c9e0a294beb7e57db68"], ["uuid", "14233c16-b409-40c0-8c34-b8e82f0b8632"], ["support_identifier", "cs_91f3fb0d"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:10.377371"], ["updated_at", "2018-10-16 18:06:10.377371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1805894977 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fb81868d-71bd-4f29-8a11-53b1f5a22f90' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4fcbab8a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1805894977], ["username", "billy_21"], ["access_token", "42a7186121d84291fed5f8aad74573ad"], ["uuid", "fb81868d-71bd-4f29-8a11-53b1f5a22f90"], ["support_identifier", "cs_4fcbab8a"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:10.381480"], ["updated_at", "2018-10-16 18:06:10.381480"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -292224260 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '844421e0-2c7f-4b99-8f98-c19aac039aac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29281bd9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -292224260], ["username", "billy_22"], ["access_token", "3c2d8b3b77023c3a8f2a372f5af653e7"], ["uuid", "844421e0-2c7f-4b99-8f98-c19aac039aac"], ["support_identifier", "cs_29281bd9"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:10.385814"], ["updated_at", "2018-10-16 18:06:10.385814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184437098 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ce6e7bdd-c203-4a52-b5c0-bc8fba99d0f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_61c6298e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1184437098], ["username", "billy_23"], ["access_token", "0ec921144ea6b2cf5f5d11ad6a872555"], ["uuid", "ce6e7bdd-c203-4a52-b5c0-bc8fba99d0f5"], ["support_identifier", "cs_61c6298e"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:10.390117"], ["updated_at", "2018-10-16 18:06:10.390117"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -235535974 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '565b6d24-da83-47e9-bb73-057c09991abe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f08f5743' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -235535974], ["username", "billy_24"], ["access_token", "ea811fb67f60ccab4be0d9b9c9d0e86a"], ["uuid", "565b6d24-da83-47e9-bb73-057c09991abe"], ["support_identifier", "cs_f08f5743"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:10.394274"], ["updated_at", "2018-10-16 18:06:10.394274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -421028975 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd27ce7c2-6c09-4bfb-a15f-a63618b34ac5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_03814c3c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -421028975], ["username", "billy_25"], ["access_token", "8dbfe6094409ca955ec83a2bcb352911"], ["uuid", "d27ce7c2-6c09-4bfb-a15f-a63618b34ac5"], ["support_identifier", "cs_03814c3c"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:10.399150"], ["updated_at", "2018-10-16 18:06:10.399150"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -46635477 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e832d657-8d2e-4d4e-8c7c-eb4e136ce515' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ceb5052e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -46635477], ["username", "billy_26"], ["access_token", "0e763ca0c91faf7f733d87bb1e0f88f8"], ["uuid", "e832d657-8d2e-4d4e-8c7c-eb4e136ce515"], ["support_identifier", "cs_ceb5052e"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:10.404131"], ["updated_at", "2018-10-16 18:06:10.404131"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -462690130 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '72dbd336-7abd-4dac-b194-69c836afa22f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0a3c883c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -462690130], ["username", "billy_27"], ["access_token", "5306d7406b83c6883c3d00c13292c209"], ["uuid", "72dbd336-7abd-4dac-b194-69c836afa22f"], ["support_identifier", "cs_0a3c883c"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:10.408196"], ["updated_at", "2018-10-16 18:06:10.408196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1882362081 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '330c0e59-0b34-4b5b-8039-b101e9dff169' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5c0dc1f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1882362081], ["username", "billy_28"], ["access_token", "0949fa332c2c7b7642996f5805a6c11a"], ["uuid", "330c0e59-0b34-4b5b-8039-b101e9dff169"], ["support_identifier", "cs_c5c0dc1f"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:10.412158"], ["updated_at", "2018-10-16 18:06:10.412158"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -461723994 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a51f76a-c429-4fdc-8b16-8d72a0427e38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_315b384f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -461723994], ["username", "billy_29"], ["access_token", "4315e5560cc1d7be1f4a325b2998afba"], ["uuid", "1a51f76a-c429-4fdc-8b16-8d72a0427e38"], ["support_identifier", "cs_315b384f"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:10.416221"], ["updated_at", "2018-10-16 18:06:10.416221"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1733968665 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b4ddb427-8a53-4cf4-9379-c1138b4a5e05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_deee9d15' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1733968665], ["username", "billy_30"], ["access_token", "dadacebdacea6e633c9edad3a1935680"], ["uuid", "b4ddb427-8a53-4cf4-9379-c1138b4a5e05"], ["support_identifier", "cs_deee9d15"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:10.424323"], ["updated_at", "2018-10-16 18:06:10.424323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -551390560 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '42e901ee-3fdd-4515-aeef-511e68143dd0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b7370795' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -551390560], ["username", "billy_31"], ["access_token", "e7584c00439c47d16cfe777316e5de30"], ["uuid", "42e901ee-3fdd-4515-aeef-511e68143dd0"], ["support_identifier", "cs_b7370795"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:10.428927"], ["updated_at", "2018-10-16 18:06:10.428927"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1725312168 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9aa3e7a3-d7a4-4aa4-a6a6-e8c919938ef2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e1b69f28' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1725312168], ["username", "billy_32"], ["access_token", "a455c4c68f07d57b6fa8b90f661a7dc4"], ["uuid", "9aa3e7a3-d7a4-4aa4-a6a6-e8c919938ef2"], ["support_identifier", "cs_e1b69f28"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:10.432946"], ["updated_at", "2018-10-16 18:06:10.432946"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1511925000 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f3370e5c-7559-40a2-bdf9-a3dcbbdee067' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b74d4650' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1511925000], ["username", "billy_33"], ["access_token", "21d6f6297a096576e3664d279f89564e"], ["uuid", "f3370e5c-7559-40a2-bdf9-a3dcbbdee067"], ["support_identifier", "cs_b74d4650"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:10.437623"], ["updated_at", "2018-10-16 18:06:10.437623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2081786203 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '14904163-fae0-410c-84a1-945f3d41f459' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_db4ec238' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2081786203], ["username", "billy_34"], ["access_token", "a9c51e2c3de48d28e0322a5f55abe648"], ["uuid", "14904163-fae0-410c-84a1-945f3d41f459"], ["support_identifier", "cs_db4ec238"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:10.441719"], ["updated_at", "2018-10-16 18:06:10.441719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -148302083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd962d9c2-9b8b-4fc8-a922-c8e6060de16a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_387ad798' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -148302083], ["username", "billy_35"], ["access_token", "a1a4c6f900269328abdba9a61215d269"], ["uuid", "d962d9c2-9b8b-4fc8-a922-c8e6060de16a"], ["support_identifier", "cs_387ad798"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:10.445735"], ["updated_at", "2018-10-16 18:06:10.445735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -478947943 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '46cf64c0-208e-45ad-93d4-40c4976fb9dc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ec8a803' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -478947943], ["username", "billy_36"], ["access_token", "01c9d8af217b0d3e01b201372d630d85"], ["uuid", "46cf64c0-208e-45ad-93d4-40c4976fb9dc"], ["support_identifier", "cs_8ec8a803"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:10.450046"], ["updated_at", "2018-10-16 18:06:10.450046"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1560152873 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f30bec8-9d97-44eb-9a6f-e009e3a08c1f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_302a67cb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1560152873], ["username", "billy_37"], ["access_token", "4a2f71ae6a4d2244c3304eda6cbf5a5d"], ["uuid", "1f30bec8-9d97-44eb-9a6f-e009e3a08c1f"], ["support_identifier", "cs_302a67cb"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:10.455174"], ["updated_at", "2018-10-16 18:06:10.455174"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -484373066 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd7f9f253-924b-4a16-9c03-244519458783' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6457a240' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -484373066], ["username", "billy_38"], ["access_token", "95ab603432419a7d77b808900ec4b881"], ["uuid", "d7f9f253-924b-4a16-9c03-244519458783"], ["support_identifier", "cs_6457a240"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:10.459448"], ["updated_at", "2018-10-16 18:06:10.459448"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1050227863 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1d84ba15-9aff-4a63-91b3-240bd59a8e4d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e868c5c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1050227863], ["username", "billy_39"], ["access_token", "ac2ba01ba3a6ee4eb8034017f2058a72"], ["uuid", "1d84ba15-9aff-4a63-91b3-240bd59a8e4d"], ["support_identifier", "cs_e868c5c8"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:10.463440"], ["updated_at", "2018-10-16 18:06:10.463440"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -229024183 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e02dcab0-7f35-4114-8ad2-6421b202e6a2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_805fa0a3' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -229024183], ["username", "billy_40"], ["access_token", "dbef2d68393d28b6af62a6574bcacc5b"], ["uuid", "e02dcab0-7f35-4114-8ad2-6421b202e6a2"], ["support_identifier", "cs_805fa0a3"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:10.467856"], ["updated_at", "2018-10-16 18:06:10.467856"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2062073864 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5798e50a-1432-45f1-8795-80472b73cabf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6410e8e8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2062073864], ["username", "billy_41"], ["access_token", "989e633eada4c66e43f80f08bfac90a6"], ["uuid", "5798e50a-1432-45f1-8795-80472b73cabf"], ["support_identifier", "cs_6410e8e8"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:10.475335"], ["updated_at", "2018-10-16 18:06:10.475335"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -789808392 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9876a338-f049-46ee-898c-60bd5df1a0a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_732aa524' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -789808392], ["username", "billy_42"], ["access_token", "3c2697306623adb0c31f5fe7981c098d"], ["uuid", "9876a338-f049-46ee-898c-60bd5df1a0a6"], ["support_identifier", "cs_732aa524"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:10.479506"], ["updated_at", "2018-10-16 18:06:10.479506"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1521041129 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'da8d89d5-1d78-477f-94a2-eb1c4321f92b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8eeaf56b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1521041129], ["username", "billy_43"], ["access_token", "07902d41d4a5ef81327ea7179cb842ab"], ["uuid", "da8d89d5-1d78-477f-94a2-eb1c4321f92b"], ["support_identifier", "cs_8eeaf56b"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:10.483593"], ["updated_at", "2018-10-16 18:06:10.483593"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -976610162 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1cee1a81-6984-4723-9acd-acf845bfa190' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b2719bc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -976610162], ["username", "billy_44"], ["access_token", "9f54ed19f077a1ebf414c593d68af58b"], ["uuid", "1cee1a81-6984-4723-9acd-acf845bfa190"], ["support_identifier", "cs_5b2719bc"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:10.488173"], ["updated_at", "2018-10-16 18:06:10.488173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -906342808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f40f49a3-2937-4a5d-a9ae-b9ea92ed43f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3dccce46' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -906342808], ["username", "billy_45"], ["access_token", "2f14c7f08206c2f227c6853dd4eba299"], ["uuid", "f40f49a3-2937-4a5d-a9ae-b9ea92ed43f0"], ["support_identifier", "cs_3dccce46"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:10.492346"], ["updated_at", "2018-10-16 18:06:10.492346"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -782657812 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6cd715c0-fa5c-41e3-8e72-274fc9e0134a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8568b75' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -782657812], ["username", "jstrav"], ["access_token", "1c4956692bcc0bfd80598bb5e44f8e09"], ["uuid", "6cd715c0-fa5c-41e3-8e72-274fc9e0134a"], ["support_identifier", "cs_f8568b75"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:10.502009"], ["updated_at", "2018-10-16 18:06:10.502009"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -747194302 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89cb6607-9ce1-4cf4-9d5c-05cc6f41dbd2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e53be77e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -747194302], ["username", "mary"], ["access_token", "f573a94ab5ca8e6a7f615c8a7f48c835"], ["uuid", "89cb6607-9ce1-4cf4-9d5c-05cc6f41dbd2"], ["support_identifier", "cs_e53be77e"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:10.506431"], ["updated_at", "2018-10-16 18:06:10.506431"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -864015275 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38792bf8-be06-410c-ae5b-68624997877f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a97f7d6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -864015275], ["username", "jstead"], ["access_token", "cc8c2647584e13e779d550db578b9d17"], ["uuid", "38792bf8-be06-410c-ae5b-68624997877f"], ["support_identifier", "cs_7a97f7d6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:10.510472"], ["updated_at", "2018-10-16 18:06:10.510472"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1844868951 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2f05be79-1396-467b-98c8-1c1365d78dfc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c6a2d1f7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1844868951], ["username", "bigbear"], ["access_token", "53d1daeeb7e2036d3a9e9556d6c49eee"], ["uuid", "2f05be79-1396-467b-98c8-1c1365d78dfc"], ["support_identifier", "cs_c6a2d1f7"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:10.514620"], ["updated_at", "2018-10-16 18:06:10.514620"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -338399623 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '58eee3dd-c212-4692-8127-67f999246c40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_257a3323' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -338399623], ["username", "billy_00"], ["access_token", "f0e07659e7abfb40f79d2526124531b7"], ["uuid", "58eee3dd-c212-4692-8127-67f999246c40"], ["support_identifier", "cs_257a3323"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:10.522192"], ["updated_at", "2018-10-16 18:06:10.522192"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -125510382 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e5b9919-4c3e-499d-9cac-7d0a6dd2461f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a18d0ce' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -125510382], ["username", "billy_01"], ["access_token", "0a300dc904bfe04bbdac5031522fb682"], ["uuid", "9e5b9919-4c3e-499d-9cac-7d0a6dd2461f"], ["support_identifier", "cs_5a18d0ce"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:10.527067"], ["updated_at", "2018-10-16 18:06:10.527067"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -676768507 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76985644-d440-4e7b-bd92-c8c19eef58c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9043abb9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -676768507], ["username", "billy_02"], ["access_token", "a82fab0383d851dc889ed2c0c9ea8bbe"], ["uuid", "76985644-d440-4e7b-bd92-c8c19eef58c4"], ["support_identifier", "cs_9043abb9"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:10.531250"], ["updated_at", "2018-10-16 18:06:10.531250"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1907364749 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f5b272b7-2fff-490d-8563-082bbb1592ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e9641be4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1907364749], ["username", "billy_03"], ["access_token", "d829ca6419a11328274e2f3bcc321e2a"], ["uuid", "f5b272b7-2fff-490d-8563-082bbb1592ef"], ["support_identifier", "cs_e9641be4"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:10.536281"], ["updated_at", "2018-10-16 18:06:10.536281"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1927460334 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c35cd3be-4aa5-4714-85d5-a76438bee6e0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1b95b339' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1927460334], ["username", "billy_04"], ["access_token", "45531ecc0d222f60205142b852ef7c63"], ["uuid", "c35cd3be-4aa5-4714-85d5-a76438bee6e0"], ["support_identifier", "cs_1b95b339"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:10.540571"], ["updated_at", "2018-10-16 18:06:10.540571"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -213680458 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '251377fa-945f-4560-818f-461d7cc55635' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a47922f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -213680458], ["username", "billy_05"], ["access_token", "32f691f391d36845b374cc8dc985ad1a"], ["uuid", "251377fa-945f-4560-818f-461d7cc55635"], ["support_identifier", "cs_5a47922f"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:10.544654"], ["updated_at", "2018-10-16 18:06:10.544654"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657563986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c799955b-9707-46ad-8130-42a293c95048' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_52707f72' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -657563986], ["username", "billy_06"], ["access_token", "26f2bf2aa7036a3f71e5be6525907179"], ["uuid", "c799955b-9707-46ad-8130-42a293c95048"], ["support_identifier", "cs_52707f72"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:10.549021"], ["updated_at", "2018-10-16 18:06:10.549021"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1669833879 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd901d890-76c7-4dc0-a547-8a0333c41a11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5107630d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1669833879], ["username", "billy_07"], ["access_token", "9e9debcdcce3889aecdf0d56c000cb02"], ["uuid", "d901d890-76c7-4dc0-a547-8a0333c41a11"], ["support_identifier", "cs_5107630d"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:10.554461"], ["updated_at", "2018-10-16 18:06:10.554461"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -762940127 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4cc0aca0-399b-4480-88e3-2840360d7be3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efaa9de3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -762940127], ["username", "billy_08"], ["access_token", "e8c58af88876241515f96852f945348e"], ["uuid", "4cc0aca0-399b-4480-88e3-2840360d7be3"], ["support_identifier", "cs_efaa9de3"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:10.558880"], ["updated_at", "2018-10-16 18:06:10.558880"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1394879960 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2854cc9-fc30-4a92-a0a2-78a7b4c74fe6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8b6b6356' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1394879960], ["username", "billy_09"], ["access_token", "d7e118df3ec95ba0a59d879a3febccf6"], ["uuid", "c2854cc9-fc30-4a92-a0a2-78a7b4c74fe6"], ["support_identifier", "cs_8b6b6356"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:10.563897"], ["updated_at", "2018-10-16 18:06:10.563897"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1840880531 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e9c1a38a-139b-4fd2-b14c-056261e55988' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39497c09' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1840880531], ["username", "billy_10"], ["access_token", "5bfbd84a1fbd2fed6ad40fe81c51fc6f"], ["uuid", "e9c1a38a-139b-4fd2-b14c-056261e55988"], ["support_identifier", "cs_39497c09"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:10.568785"], ["updated_at", "2018-10-16 18:06:10.568785"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -320135001 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '63b8f541-099c-4760-bb93-168a28b71fab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d5f55d12' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -320135001], ["username", "billy_11"], ["access_token", "8807d2439bcc163cc4f78214da91a068"], ["uuid", "63b8f541-099c-4760-bb93-168a28b71fab"], ["support_identifier", "cs_d5f55d12"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:10.579450"], ["updated_at", "2018-10-16 18:06:10.579450"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -163131751 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '84136d7a-08c4-4e1d-932a-7b7b71de54fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b7f354f1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -163131751], ["username", "billy_12"], ["access_token", "3dc78eb816e4c2ac5845d442d2630beb"], ["uuid", "84136d7a-08c4-4e1d-932a-7b7b71de54fd"], ["support_identifier", "cs_b7f354f1"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:10.583499"], ["updated_at", "2018-10-16 18:06:10.583499"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -426570811 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '05011775-7022-46ad-9590-3b79919bcc3f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d9ba2c46' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -426570811], ["username", "billy_13"], ["access_token", "4ea5c8ba367ba00a65f932f756b18f8b"], ["uuid", "05011775-7022-46ad-9590-3b79919bcc3f"], ["support_identifier", "cs_d9ba2c46"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:10.588210"], ["updated_at", "2018-10-16 18:06:10.588210"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2070523788 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a58fb14-4220-4879-8f98-357c6adbaf86' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b0e3e40' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2070523788], ["username", "billy_14"], ["access_token", "594bbce712f2ac94d6fd291c6249bff8"], ["uuid", "3a58fb14-4220-4879-8f98-357c6adbaf86"], ["support_identifier", "cs_9b0e3e40"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:10.592334"], ["updated_at", "2018-10-16 18:06:10.592334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -713144960 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8ad40c8b-82f7-4d39-8354-1ee1f8883f2c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b216abd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -713144960], ["username", "billy_15"], ["access_token", "d08614e018ff4046657eaeb63f7d281f"], ["uuid", "8ad40c8b-82f7-4d39-8354-1ee1f8883f2c"], ["support_identifier", "cs_9b216abd"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:10.596342"], ["updated_at", "2018-10-16 18:06:10.596342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1443098090 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac128184-7726-4c28-a0eb-20ddc517ee4a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54c2d9fd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1443098090], ["username", "billy_16"], ["access_token", "12187e595585060a85e955f1bf3b8836"], ["uuid", "ac128184-7726-4c28-a0eb-20ddc517ee4a"], ["support_identifier", "cs_54c2d9fd"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:10.600563"], ["updated_at", "2018-10-16 18:06:10.600563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1811188709 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f00413a-1818-4942-9d61-e6b032244270' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_91a670cd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1811188709], ["username", "billy_17"], ["access_token", "f0c1ccc2153b64ca4d3abbdebcbeb7af"], ["uuid", "6f00413a-1818-4942-9d61-e6b032244270"], ["support_identifier", "cs_91a670cd"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:10.605026"], ["updated_at", "2018-10-16 18:06:10.605026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1722551170 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1290d9c-275b-48f9-8d63-9442591da504' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_88fec63b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1722551170], ["username", "billy_18"], ["access_token", "243c9fac1271e9e9cf1204ca6733b6e2"], ["uuid", "c1290d9c-275b-48f9-8d63-9442591da504"], ["support_identifier", "cs_88fec63b"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:10.609098"], ["updated_at", "2018-10-16 18:06:10.609098"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -931550606 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c7ed6ecf-d80e-4b7a-badf-0a079d3149e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b9e03931' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -931550606], ["username", "billy_19"], ["access_token", "d0bb4bbfb94983cd6565abadf9f6e135"], ["uuid", "c7ed6ecf-d80e-4b7a-badf-0a079d3149e5"], ["support_identifier", "cs_b9e03931"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:10.613179"], ["updated_at", "2018-10-16 18:06:10.613179"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1931073558 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3b7b5e83-8fae-42e9-bfae-b9aa099fb3c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85829d8d' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1931073558], ["username", "billy_20"], ["access_token", "297d9d962c32a2bb84832a19a73cd178"], ["uuid", "3b7b5e83-8fae-42e9-bfae-b9aa099fb3c0"], ["support_identifier", "cs_85829d8d"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:10.617873"], ["updated_at", "2018-10-16 18:06:10.617873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1148639930 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e702b0b-9860-4bcb-a67d-3eb1c0232a39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fce587dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1148639930], ["username", "billy_21"], ["access_token", "f6b24ddf735614ac4aaa75eac74bd8a7"], ["uuid", "5e702b0b-9860-4bcb-a67d-3eb1c0232a39"], ["support_identifier", "cs_fce587dc"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:10.624656"], ["updated_at", "2018-10-16 18:06:10.624656"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1316708615 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08d5d4ce-72dd-4ec4-9122-eeb8fdbce8bc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7344ae21' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1316708615], ["username", "billy_22"], ["access_token", "f9b8b2bab222114ec7f578c768fea2e2"], ["uuid", "08d5d4ce-72dd-4ec4-9122-eeb8fdbce8bc"], ["support_identifier", "cs_7344ae21"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:10.628861"], ["updated_at", "2018-10-16 18:06:10.628861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1176222661 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c41b85a9-987e-415d-873f-331f83576c8c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9900b4c0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1176222661], ["username", "billy_23"], ["access_token", "a00cc936f3955d63d7c9332423736dd9"], ["uuid", "c41b85a9-987e-415d-873f-331f83576c8c"], ["support_identifier", "cs_9900b4c0"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:10.633027"], ["updated_at", "2018-10-16 18:06:10.633027"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -120475432 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fb94996c-ce65-4511-9989-b5241c667574' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_772bd0ff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -120475432], ["username", "billy_24"], ["access_token", "edaac465abba7d379d6d9164422694c8"], ["uuid", "fb94996c-ce65-4511-9989-b5241c667574"], ["support_identifier", "cs_772bd0ff"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:10.637568"], ["updated_at", "2018-10-16 18:06:10.637568"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -437724587 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'adb7cc2a-065e-4388-b090-97785ce5ee92' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d5e2b0d9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -437724587], ["username", "billy_25"], ["access_token", "fb2d4b666e56ece2e912bfdee1892334"], ["uuid", "adb7cc2a-065e-4388-b090-97785ce5ee92"], ["support_identifier", "cs_d5e2b0d9"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:10.641612"], ["updated_at", "2018-10-16 18:06:10.641612"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -459889738 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b0619ff5-af40-407b-a500-62ce5dc352a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a429156f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -459889738], ["username", "billy_26"], ["access_token", "05955485022b97b9ae0476504bb3dbca"], ["uuid", "b0619ff5-af40-407b-a500-62ce5dc352a4"], ["support_identifier", "cs_a429156f"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:10.645571"], ["updated_at", "2018-10-16 18:06:10.645571"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -845247775 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2fd87ab4-f874-474d-87c8-cab3f56d340c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2fdec625' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -845247775], ["username", "billy_27"], ["access_token", "f64b359568d58bbf89c309b0971d5d10"], ["uuid", "2fd87ab4-f874-474d-87c8-cab3f56d340c"], ["support_identifier", "cs_2fdec625"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:10.649738"], ["updated_at", "2018-10-16 18:06:10.649738"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1061455495 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '066b5aab-776f-4e6a-bd42-7be4f69a7fbe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d098ca0f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1061455495], ["username", "billy_28"], ["access_token", "437096791cf6a2e9b4dc6c08bc0c345d"], ["uuid", "066b5aab-776f-4e6a-bd42-7be4f69a7fbe"], ["support_identifier", "cs_d098ca0f"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:10.658534"], ["updated_at", "2018-10-16 18:06:10.658534"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1825200351 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e31cf18-cd19-4d7d-962a-3dcd550cb488' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc4e037b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1825200351], ["username", "billy_29"], ["access_token", "f2ac757d68c50c46f5e970319672ba4b"], ["uuid", "2e31cf18-cd19-4d7d-962a-3dcd550cb488"], ["support_identifier", "cs_cc4e037b"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:10.662828"], ["updated_at", "2018-10-16 18:06:10.662828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -496360226 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ac4a9f03-5504-4775-8a30-8c58ff9e5b09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a1e36df9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -496360226], ["username", "billy_30"], ["access_token", "02bd03cbc52deb9b74fce5f87b14002e"], ["uuid", "ac4a9f03-5504-4775-8a30-8c58ff9e5b09"], ["support_identifier", "cs_a1e36df9"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:10.667158"], ["updated_at", "2018-10-16 18:06:10.667158"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2018323838 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '00ce04c1-8d24-40c6-a06f-3e11d0387d12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f4a314ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2018323838], ["username", "billy_31"], ["access_token", "0fc207ddddee41e5b257d2f71db31d78"], ["uuid", "00ce04c1-8d24-40c6-a06f-3e11d0387d12"], ["support_identifier", "cs_f4a314ec"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:10.671920"], ["updated_at", "2018-10-16 18:06:10.671920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1674894772 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8b5eff0-33f8-444e-94ee-e664303c594e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7a181362' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1674894772], ["username", "billy_32"], ["access_token", "0c84929feabcba0a9089b8a9728329de"], ["uuid", "b8b5eff0-33f8-444e-94ee-e664303c594e"], ["support_identifier", "cs_7a181362"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:10.676143"], ["updated_at", "2018-10-16 18:06:10.676143"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2042487681 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5f16d547-aed7-4b74-8d2c-95faa9755ccf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4c260be' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2042487681], ["username", "billy_33"], ["access_token", "f4e3459809e43ea2ffb61a8ebae0c3a0"], ["uuid", "5f16d547-aed7-4b74-8d2c-95faa9755ccf"], ["support_identifier", "cs_e4c260be"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:10.680200"], ["updated_at", "2018-10-16 18:06:10.680200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -604612605 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '847f09bf-8c9e-4705-a0e7-c0570fe28d2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f022c8d2' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -604612605], ["username", "billy_34"], ["access_token", "755c396a653ca8c4ba750a6d1750d7ca"], ["uuid", "847f09bf-8c9e-4705-a0e7-c0570fe28d2d"], ["support_identifier", "cs_f022c8d2"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:10.684220"], ["updated_at", "2018-10-16 18:06:10.684220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -108462029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a5770cd-d701-4232-a94a-3067aea79492' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_80526ec4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -108462029], ["username", "billy_35"], ["access_token", "c0d4e5a3a91da4b5ea08bdc219a9a013"], ["uuid", "6a5770cd-d701-4232-a94a-3067aea79492"], ["support_identifier", "cs_80526ec4"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:10.688850"], ["updated_at", "2018-10-16 18:06:10.688850"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -902263113 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c92881b5-eb1f-407b-9930-f04f4c22d594' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_08a30f2e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -902263113], ["username", "billy_36"], ["access_token", "c46a7e567da0c5c4aafe61f021db4fba"], ["uuid", "c92881b5-eb1f-407b-9930-f04f4c22d594"], ["support_identifier", "cs_08a30f2e"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:10.692920"], ["updated_at", "2018-10-16 18:06:10.692920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -788451828 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9714f7bb-e7ea-4415-8d50-813fb52921dd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a99b62a1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -788451828], ["username", "billy_37"], ["access_token", "df4aaf2b86676c4ef2b543331f47a4a8"], ["uuid", "9714f7bb-e7ea-4415-8d50-813fb52921dd"], ["support_identifier", "cs_a99b62a1"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:10.696993"], ["updated_at", "2018-10-16 18:06:10.696993"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -268688916 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '32b91229-719a-4bcd-9e87-0584c89cd82c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a780f3d' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -268688916], ["username", "billy_38"], ["access_token", "91fc833305bb2964684e9880745c375c"], ["uuid", "32b91229-719a-4bcd-9e87-0584c89cd82c"], ["support_identifier", "cs_5a780f3d"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:10.704153"], ["updated_at", "2018-10-16 18:06:10.704153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -207012943 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '416ddf57-9a74-45bc-9459-ba2c6a18d515' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d54f2b64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -207012943], ["username", "billy_39"], ["access_token", "d82e826328deda8cd465a189414c53fb"], ["uuid", "416ddf57-9a74-45bc-9459-ba2c6a18d515"], ["support_identifier", "cs_d54f2b64"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:10.709345"], ["updated_at", "2018-10-16 18:06:10.709345"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -638112670 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9d374b1f-9f77-468e-b8e4-f2eff246eaf8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_04c61bb2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -638112670], ["username", "billy_40"], ["access_token", "bc953694fce844f0655bd57c3f6413f0"], ["uuid", "9d374b1f-9f77-468e-b8e4-f2eff246eaf8"], ["support_identifier", "cs_04c61bb2"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:10.713332"], ["updated_at", "2018-10-16 18:06:10.713332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1357233088 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '769e1139-575a-4cd2-8912-2189bc3f0c00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b46941fa' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1357233088], ["username", "billy_41"], ["access_token", "789b560e5fc80623cf7c8f527a4a4cec"], ["uuid", "769e1139-575a-4cd2-8912-2189bc3f0c00"], ["support_identifier", "cs_b46941fa"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:10.718084"], ["updated_at", "2018-10-16 18:06:10.718084"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1744253882 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba2cc68b-e852-4917-984c-0440e75389e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_212b0db3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1744253882], ["username", "billy_42"], ["access_token", "b38280ae8d75e006a0bdd41883016579"], ["uuid", "ba2cc68b-e852-4917-984c-0440e75389e9"], ["support_identifier", "cs_212b0db3"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:10.722525"], ["updated_at", "2018-10-16 18:06:10.722525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -871394438 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3a3b035-a1c7-4171-aeb6-ff2ccf534d62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cda9511a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -871394438], ["username", "billy_43"], ["access_token", "5fcbc6dc890dba251056bba563d02318"], ["uuid", "c3a3b035-a1c7-4171-aeb6-ff2ccf534d62"], ["support_identifier", "cs_cda9511a"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:10.726686"], ["updated_at", "2018-10-16 18:06:10.726686"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433249600 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c18cecc-7e4e-4941-87f1-28a9c28ae9b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d725254c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1433249600], ["username", "billy_44"], ["access_token", "b0ac18d83bdfe6e9db71d7781ed56f47"], ["uuid", "4c18cecc-7e4e-4941-87f1-28a9c28ae9b6"], ["support_identifier", "cs_d725254c"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:10.730742"], ["updated_at", "2018-10-16 18:06:10.730742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1453216718 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '210b04fd-97c4-419f-9129-10aeccd1f256' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e497ccc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1453216718], ["username", "billy_45"], ["access_token", "39bf4441eeb485f6e769299f2bf7b65f"], ["uuid", "210b04fd-97c4-419f-9129-10aeccd1f256"], ["support_identifier", "cs_1e497ccc"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:10.735179"], ["updated_at", "2018-10-16 18:06:10.735179"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1147396821 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a949eedf-c1ff-4f69-a7a1-3bf05cb7b8db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96ab6428' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1147396821], ["username", "jstrav"], ["access_token", "7b15c75ff072a6b57f0677dcd92d618b"], ["uuid", "a949eedf-c1ff-4f69-a7a1-3bf05cb7b8db"], ["support_identifier", "cs_96ab6428"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:10.744621"], ["updated_at", "2018-10-16 18:06:10.744621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1333662620 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2487fea-c651-4d61-bb3b-e069bd1880bf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1ae76f45' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1333662620], ["username", "mary"], ["access_token", "1f92a1a3ebc25968cb893df8e5d22db2"], ["uuid", "a2487fea-c651-4d61-bb3b-e069bd1880bf"], ["support_identifier", "cs_1ae76f45"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:10.748984"], ["updated_at", "2018-10-16 18:06:10.748984"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1559477820 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '39ecfa8b-f8d3-432c-8d34-b81fe972f091' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a26e538c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1559477820], ["username", "jstead"], ["access_token", "fd6d5aab5a5c413086f8ec06fe207b52"], ["uuid", "39ecfa8b-f8d3-432c-8d34-b81fe972f091"], ["support_identifier", "cs_a26e538c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:10.756878"], ["updated_at", "2018-10-16 18:06:10.756878"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1525398341 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1faf56f-cffb-4345-88f4-a7619871a2f3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2654343d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1525398341], ["username", "bigbear"], ["access_token", "286d4b4c30cf48b48f7c09e527ace6ce"], ["uuid", "c1faf56f-cffb-4345-88f4-a7619871a2f3"], ["support_identifier", "cs_2654343d"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:10.761489"], ["updated_at", "2018-10-16 18:06:10.761489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1968463740 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bcf02af4-7615-4e8f-b3a3-e6c8271c43fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8c279daf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1968463740], ["username", "foo_bb"], ["access_token", "3d878117b44fdfc59dca225314c5c8ee"], ["uuid", "bcf02af4-7615-4e8f-b3a3-e6c8271c43fe"], ["support_identifier", "cs_8c279daf"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 18:06:10.765564"], ["updated_at", "2018-10-16 18:06:10.765564"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1767974505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a1c2c06-e6a6-4d0c-be48-cedd63ef74e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7842630e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1767974505], ["username", "foo_bj"], ["access_token", "94fa7acd243a777ec10bddb83f5f8d22"], ["uuid", "1a1c2c06-e6a6-4d0c-be48-cedd63ef74e3"], ["support_identifier", "cs_7842630e"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 18:06:10.770331"], ["updated_at", "2018-10-16 18:06:10.770331"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1321863729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8656c089-20d0-4ed9-bfbc-074201badc50' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e47b18d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1321863729], ["username", "foo_tj"], ["access_token", "45bf2876b8fae6f63d9feeb2778b18ab"], ["uuid", "8656c089-20d0-4ed9-bfbc-074201badc50"], ["support_identifier", "cs_3e47b18d"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 18:06:10.774747"], ["updated_at", "2018-10-16 18:06:10.774747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc6a6df3-c5d2-455e-8ac2-599052b42a9c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f01a564' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "f949a556c42b8ca6f2b37087d5e9899c"], ["uuid", "bc6a6df3-c5d2-455e-8ac2-599052b42a9c"], ["support_identifier", "cs_4f01a564"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:10.785207"], ["updated_at", "2018-10-16 18:06:10.785207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.5ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 210], ["created_at", "2018-10-16 18:06:10.794825"], ["updated_at", "2018-10-16 18:06:10.794825"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'another_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1ddfe02-1f63-4a7b-abae-cc5c6c2a3cd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_687e65b8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "another_user"], ["access_token", "aa88685d1fd65c40ce0a9de4646da6f3"], ["uuid", "d1ddfe02-1f63-4a7b-abae-cc5c6c2a3cd8"], ["support_identifier", "cs_687e65b8"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:10.799423"], ["updated_at", "2018-10-16 18:06:10.799423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.7ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 211], ["created_at", "2018-10-16 18:06:10.801494"], ["updated_at", "2018-10-16 18:06:10.801494"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1151198008 LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1151198008], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:10.816406"], ["updated_at", "2018-10-16 18:06:10.816406"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -310976680 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -310976680], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:10.821566"], ["updated_at", "2018-10-16 18:06:10.821566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 2 LIMIT 1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -310976680 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -310976680 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 1]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1151198008 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -1151198008 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 1]] + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -310976680 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1151198008 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -1151198008], ["member_group_id", -310976680], ["created_at", "2018-10-16 18:06:10.828602"], ["updated_at", "2018-10-16 18:06:10.828602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 210 AND "openstax_accounts_group_members"."group_id" = -310976680) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 210 AND "openstax_accounts_group_members"."group_id" = -310976680) LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -310976680], ["user_id", 1], ["created_at", "2018-10-16 18:06:10.850085"], ["updated_at", "2018-10-16 18:06:10.850085"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 210 AND "openstax_accounts_group_members"."id" != 1 AND "openstax_accounts_group_members"."group_id" = -310976680) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + Ownership Load (0.4ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 1], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 210]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -310976680 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -310976680 +- -1151198008 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) +  (0.2ms) SAVEPOINT active_record_1 + SQL (0.5ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 2], ["owner_type", "User"], ["created_at", "2018-10-16 18:06:10.890309"], ["updated_at", "2018-10-16 18:06:10.890309"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 1], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 210]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 1], ["owner_type", "User"], ["created_at", "2018-10-16 18:06:10.897430"], ["updated_at", "2018-10-16 18:06:10.897430"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 1], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.5ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 210]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 2], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 18:06:10.905092"], ["updated_at", "2018-10-16 18:06:10.905092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 1], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 210]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["owner_id", 1], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2018-10-16 18:06:10.913113"], ["updated_at", "2018-10-16 18:06:10.913113"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]] + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = $1 AND "ownerships"."owner_type" = $2 [["owner_id", 1], ["owner_type", "User"]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = $1 [["id", 210]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.3ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-310976680, -1151198008) + Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '44e30aff-ba94-4685-8a0c-42274359508b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d30bb54' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "c29b9a0923e6ecbf86270ee73ba50ff4"], ["uuid", "44e30aff-ba94-4685-8a0c-42274359508b"], ["support_identifier", "cs_1d30bb54"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:10.926852"], ["updated_at", "2018-10-16 18:06:10.926852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 212], ["created_at", "2018-10-16 18:06:10.928569"], ["updated_at", "2018-10-16 18:06:10.928569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '464f175f-fbb5-48cf-b611-f1411b818ac5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a15c61de' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "b67bf3bd3eef1ba11d8813e68d50010c"], ["uuid", "464f175f-fbb5-48cf-b611-f1411b818ac5"], ["support_identifier", "cs_a15c61de"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:11.390241"], ["updated_at", "2018-10-16 18:06:11.390241"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 213], ["created_at", "2018-10-16 18:06:11.392347"], ["updated_at", "2018-10-16 18:06:11.392347"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 213]] +  (0.6ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'efbb71aa-f684-4f59-8c76-fa74421ea271' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7a55de6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "535cfa5c688220aa023b8b2ebaf8e3bd"], ["uuid", "efbb71aa-f684-4f59-8c76-fa74421ea271"], ["support_identifier", "cs_d7a55de6"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:11.842709"], ["updated_at", "2018-10-16 18:06:11.842709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 214], ["created_at", "2018-10-16 18:06:11.844655"], ["updated_at", "2018-10-16 18:06:11.844655"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 214]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dba11064-ae6b-4e7d-bb77-4262574429ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_019f149b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "877cd68e181d1a9cd808210ec2ba3974"], ["uuid", "dba11064-ae6b-4e7d-bb77-4262574429ce"], ["support_identifier", "cs_019f149b"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:12.300244"], ["updated_at", "2018-10-16 18:06:12.300244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 215], ["created_at", "2018-10-16 18:06:12.302476"], ["updated_at", "2018-10-16 18:06:12.302476"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 215]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 215]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 215]] +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '61e85fbc-4969-4905-95a3-b130c0b6e1b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa5b9ac7' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 1], ["username", "some_user"], ["access_token", "2af350095faf18e89625366ac8a7ea8a"], ["uuid", "61e85fbc-4969-4905-95a3-b130c0b6e1b6"], ["support_identifier", "cs_fa5b9ac7"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:12.770990"], ["updated_at", "2018-10-16 18:06:12.770990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["account_id", 216], ["created_at", "2018-10-16 18:06:12.775567"], ["updated_at", "2018-10-16 18:06:12.775567"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 216]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 216]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 216]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 216]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 216]] +  (0.2ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1007924848 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2b05cff-d48e-43ee-8975-14438b90d1e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b394f2f0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1007924848], ["username", "jstrav"], ["access_token", "331f1460dbb779c0db4756c0f0b50577"], ["uuid", "a2b05cff-d48e-43ee-8975-14438b90d1e9"], ["support_identifier", "cs_b394f2f0"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:13.223551"], ["updated_at", "2018-10-16 18:06:13.223551"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1023235943 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c2225ac7-b090-446f-9918-0599eed958ed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f842eeb1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1023235943], ["username", "mary"], ["access_token", "e40cc41d97b542b49bc59cba0166b3f7"], ["uuid", "c2225ac7-b090-446f-9918-0599eed958ed"], ["support_identifier", "cs_f842eeb1"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:13.227849"], ["updated_at", "2018-10-16 18:06:13.227849"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1956021143 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a22a9f6f-54fd-4e89-ae5c-c68ef00fff86' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_133166cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1956021143], ["username", "jstead"], ["access_token", "60960cd534a1ab9b39ee8dee0451f201"], ["uuid", "a22a9f6f-54fd-4e89-ae5c-c68ef00fff86"], ["support_identifier", "cs_133166cf"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:13.231913"], ["updated_at", "2018-10-16 18:06:13.231913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1017859530 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20d0469a-c5e5-4097-b3a7-43136dbba8fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_24a56666' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1017859530], ["username", "bigbear"], ["access_token", "3ec6869126478d7ebcd89b90c8c2dfcd"], ["uuid", "20d0469a-c5e5-4097-b3a7-43136dbba8fa"], ["support_identifier", "cs_24a56666"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:13.236532"], ["updated_at", "2018-10-16 18:06:13.236532"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -263994401 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0ee50a8-3365-46e2-af86-68977c55a256' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6dc48b7b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -263994401], ["username", "billy_00"], ["access_token", "8b36270e25f2e238e26edddb26b7246a"], ["uuid", "e0ee50a8-3365-46e2-af86-68977c55a256"], ["support_identifier", "cs_6dc48b7b"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 18:06:13.243989"], ["updated_at", "2018-10-16 18:06:13.243989"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1497237823 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5986452-29ad-443f-bafb-0ce49800da93' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_65ebe330' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1497237823], ["username", "billy_01"], ["access_token", "c908c10a05d58810e74dd7934312c819"], ["uuid", "b5986452-29ad-443f-bafb-0ce49800da93"], ["support_identifier", "cs_65ebe330"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 18:06:13.248242"], ["updated_at", "2018-10-16 18:06:13.248242"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -14665134 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f4e7029-4bc0-44ab-89e2-c8f973d687bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8c7fd856' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -14665134], ["username", "billy_02"], ["access_token", "d3a351cbbe934381afcb63ab426ed498"], ["uuid", "6f4e7029-4bc0-44ab-89e2-c8f973d687bb"], ["support_identifier", "cs_8c7fd856"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 18:06:13.253217"], ["updated_at", "2018-10-16 18:06:13.253217"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1133220818 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eff34263-a958-45cb-81fe-f7a5485bf6f7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4c4e98d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1133220818], ["username", "billy_03"], ["access_token", "83998264c289929ab5d6297da653d3fc"], ["uuid", "eff34263-a958-45cb-81fe-f7a5485bf6f7"], ["support_identifier", "cs_b4c4e98d"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 18:06:13.258604"], ["updated_at", "2018-10-16 18:06:13.258604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -328809841 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60d84d5f-73cf-4748-b4f8-a4b45368e6e4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c5bbe6a4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -328809841], ["username", "billy_04"], ["access_token", "096cb204be71e1cff4975243358b0de2"], ["uuid", "60d84d5f-73cf-4748-b4f8-a4b45368e6e4"], ["support_identifier", "cs_c5bbe6a4"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:13.262995"], ["updated_at", "2018-10-16 18:06:13.262995"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1742894317 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '217a911a-6b46-4f9f-aa2a-84111d26b6a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8d38225' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1742894317], ["username", "billy_05"], ["access_token", "b789f8d1e5f2dfcdf41094026402321c"], ["uuid", "217a911a-6b46-4f9f-aa2a-84111d26b6a6"], ["support_identifier", "cs_f8d38225"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:13.267078"], ["updated_at", "2018-10-16 18:06:13.267078"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -778804708 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a738306-fd8f-4944-9106-a7a6e0590fe9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_00806fa1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -778804708], ["username", "billy_06"], ["access_token", "8eb7d69764d891b9fc3d96446623ba99"], ["uuid", "5a738306-fd8f-4944-9106-a7a6e0590fe9"], ["support_identifier", "cs_00806fa1"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:13.272022"], ["updated_at", "2018-10-16 18:06:13.272022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -161499724 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1d538d5f-3a7f-4051-99a1-1472dd59d8ab' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_145d952e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -161499724], ["username", "billy_07"], ["access_token", "4e1e23fcb7c4a002f69eb6504874cdf5"], ["uuid", "1d538d5f-3a7f-4051-99a1-1472dd59d8ab"], ["support_identifier", "cs_145d952e"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:13.276321"], ["updated_at", "2018-10-16 18:06:13.276321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -192132086 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7d56661-f46d-4385-a1cf-783f14a071df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8e6e59bc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -192132086], ["username", "billy_08"], ["access_token", "53c2fb59147c34deb5b91be8a0044358"], ["uuid", "f7d56661-f46d-4385-a1cf-783f14a071df"], ["support_identifier", "cs_8e6e59bc"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:13.280323"], ["updated_at", "2018-10-16 18:06:13.280323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -787639766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '34773725-334d-4e33-bb3a-cfe86cb05c33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a8f9f51' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -787639766], ["username", "billy_09"], ["access_token", "bddb6399303e58baedf848204ee466f8"], ["uuid", "34773725-334d-4e33-bb3a-cfe86cb05c33"], ["support_identifier", "cs_6a8f9f51"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:13.284421"], ["updated_at", "2018-10-16 18:06:13.284421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1670512874 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eb73136e-8b41-4ea7-b141-49162d4458af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_780fda12' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1670512874], ["username", "billy_10"], ["access_token", "9ba939b4670aba5085bdec9b321fef02"], ["uuid", "eb73136e-8b41-4ea7-b141-49162d4458af"], ["support_identifier", "cs_780fda12"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:13.289097"], ["updated_at", "2018-10-16 18:06:13.289097"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1459824156 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '59bcfafd-c0ff-4406-86f6-80374a85a1e0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f40ee022' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1459824156], ["username", "billy_11"], ["access_token", "442712270a5a56bbd55de90a117d5644"], ["uuid", "59bcfafd-c0ff-4406-86f6-80374a85a1e0"], ["support_identifier", "cs_f40ee022"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:13.293375"], ["updated_at", "2018-10-16 18:06:13.293375"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1826026274 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '35200d14-bd50-48d5-a080-f8a45fcc73c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d939b025' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1826026274], ["username", "billy_12"], ["access_token", "15d56e23dbea208053e60a3249cf860b"], ["uuid", "35200d14-bd50-48d5-a080-f8a45fcc73c9"], ["support_identifier", "cs_d939b025"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:13.297535"], ["updated_at", "2018-10-16 18:06:13.297535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -217404555 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5c82bff-7827-442f-bfb5-349341097cdb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_989ada37' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -217404555], ["username", "billy_13"], ["access_token", "3a9aaefcbffa085966d3ad9f5f5390f2"], ["uuid", "b5c82bff-7827-442f-bfb5-349341097cdb"], ["support_identifier", "cs_989ada37"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:13.301632"], ["updated_at", "2018-10-16 18:06:13.301632"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -535887803 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1799c3ea-e0bc-436f-8b22-5271b1b856e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f8a2005' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -535887803], ["username", "billy_14"], ["access_token", "b0787e390af09eadb5ee35143b034fa5"], ["uuid", "1799c3ea-e0bc-436f-8b22-5271b1b856e2"], ["support_identifier", "cs_4f8a2005"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:13.308790"], ["updated_at", "2018-10-16 18:06:13.308790"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -334029141 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f77f5a84-810c-4986-ae9a-5e7a8276c980' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2946621' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -334029141], ["username", "billy_15"], ["access_token", "c44753a86e874ed64c7deeb71785b7c0"], ["uuid", "f77f5a84-810c-4986-ae9a-5e7a8276c980"], ["support_identifier", "cs_a2946621"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:13.313287"], ["updated_at", "2018-10-16 18:06:13.313287"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1354731900 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09d94be2-f48d-4f28-adee-8e4c48ccf6d5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9cd270f5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1354731900], ["username", "billy_16"], ["access_token", "d41e836b7e8de5554d4afce208f2eee8"], ["uuid", "09d94be2-f48d-4f28-adee-8e4c48ccf6d5"], ["support_identifier", "cs_9cd270f5"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:13.317502"], ["updated_at", "2018-10-16 18:06:13.317502"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1946465296 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8ecba5a-e1ff-4065-bae3-391adaf5ce0c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1e50bbcc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1946465296], ["username", "billy_17"], ["access_token", "aef567785a1f2b82f47f8f2305deb041"], ["uuid", "f8ecba5a-e1ff-4065-bae3-391adaf5ce0c"], ["support_identifier", "cs_1e50bbcc"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:13.322316"], ["updated_at", "2018-10-16 18:06:13.322316"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2024549499 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1be5df7b-f33c-48be-b5e0-1b273daa11ca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e69ec3c3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2024549499], ["username", "billy_18"], ["access_token", "b2cb6ca2bb012cd1e5d6ec9eb1c90fe0"], ["uuid", "1be5df7b-f33c-48be-b5e0-1b273daa11ca"], ["support_identifier", "cs_e69ec3c3"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:13.326556"], ["updated_at", "2018-10-16 18:06:13.326556"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1680321705 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '015ca68a-7f0e-493c-9bbf-c5c761ac47ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2e2f5b64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1680321705], ["username", "billy_19"], ["access_token", "5a5842ea9fddb27d811ac82c62a7bd6a"], ["uuid", "015ca68a-7f0e-493c-9bbf-c5c761ac47ad"], ["support_identifier", "cs_2e2f5b64"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:13.330847"], ["updated_at", "2018-10-16 18:06:13.330847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1511641799 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '35af0c14-63ba-4ef6-8ff4-c4a7f3d83b69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_13be3b2a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1511641799], ["username", "billy_20"], ["access_token", "ff241d2e53ecb2a2a60ebf32569eeb36"], ["uuid", "35af0c14-63ba-4ef6-8ff4-c4a7f3d83b69"], ["support_identifier", "cs_13be3b2a"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:13.335394"], ["updated_at", "2018-10-16 18:06:13.335394"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -287018105 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7f4cff96-7aa8-4e0a-bf59-0c0cedf4840b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf02af70' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -287018105], ["username", "billy_21"], ["access_token", "f8ef980b08dc6be47d659f9bf760b2b9"], ["uuid", "7f4cff96-7aa8-4e0a-bf59-0c0cedf4840b"], ["support_identifier", "cs_bf02af70"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:13.343259"], ["updated_at", "2018-10-16 18:06:13.343259"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1128518925 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1df0efec-daba-440a-b004-8ee49edbf11b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0da36d97' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1128518925], ["username", "billy_22"], ["access_token", "4a0acfbc5dd8d5a56e09c4fb63b451a3"], ["uuid", "1df0efec-daba-440a-b004-8ee49edbf11b"], ["support_identifier", "cs_0da36d97"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:13.347688"], ["updated_at", "2018-10-16 18:06:13.347688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1931565616 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c8f9507-d232-4d52-94a4-e79d20751f91' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_84ac5e0e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1931565616], ["username", "billy_23"], ["access_token", "32c14f5ad6778f0d0097b658d8977254"], ["uuid", "9c8f9507-d232-4d52-94a4-e79d20751f91"], ["support_identifier", "cs_84ac5e0e"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:13.352286"], ["updated_at", "2018-10-16 18:06:13.352286"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -94869338 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13e87640-7357-48be-9abd-ede4a41f867a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c314ddf3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -94869338], ["username", "billy_24"], ["access_token", "c7d3e63c9e7963cd637980ae0d7e70b8"], ["uuid", "13e87640-7357-48be-9abd-ede4a41f867a"], ["support_identifier", "cs_c314ddf3"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:13.357493"], ["updated_at", "2018-10-16 18:06:13.357493"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2050396166 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '424e6c57-203d-40d6-9355-16d59c323f2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_645ad9a2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2050396166], ["username", "billy_25"], ["access_token", "110c4979aab50561c51dfe01d4536ad5"], ["uuid", "424e6c57-203d-40d6-9355-16d59c323f2a"], ["support_identifier", "cs_645ad9a2"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:13.361688"], ["updated_at", "2018-10-16 18:06:13.361688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -768420340 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dcc858be-0b2a-44a9-a4da-2601e91483f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_852f3ee7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -768420340], ["username", "billy_26"], ["access_token", "c6ab6365ab9851fc0fa4b28061cbfce1"], ["uuid", "dcc858be-0b2a-44a9-a4da-2601e91483f9"], ["support_identifier", "cs_852f3ee7"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:13.366041"], ["updated_at", "2018-10-16 18:06:13.366041"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1074101311 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '34262aed-20f0-4636-8a28-d88bae30834e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fb2f8eed' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1074101311], ["username", "billy_27"], ["access_token", "46b92356fd66319fb90b4c1207ad3d99"], ["uuid", "34262aed-20f0-4636-8a28-d88bae30834e"], ["support_identifier", "cs_fb2f8eed"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:13.370782"], ["updated_at", "2018-10-16 18:06:13.370782"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -297856683 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa726ed7-58e7-4c82-93e2-45b8da76952a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_107ebbcf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -297856683], ["username", "billy_28"], ["access_token", "d982b5f7793c5d683325ac891db4ea44"], ["uuid", "fa726ed7-58e7-4c82-93e2-45b8da76952a"], ["support_identifier", "cs_107ebbcf"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:13.375574"], ["updated_at", "2018-10-16 18:06:13.375574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -102179979 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e09eebe9-a5c7-46aa-bf5c-7651cde60860' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09360d7d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -102179979], ["username", "billy_29"], ["access_token", "2a8d53fc57924e0280e71e7316925472"], ["uuid", "e09eebe9-a5c7-46aa-bf5c-7651cde60860"], ["support_identifier", "cs_09360d7d"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:13.382918"], ["updated_at", "2018-10-16 18:06:13.382918"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -513507676 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29fa64ee-f653-4784-a506-799413e050aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a420370d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -513507676], ["username", "billy_30"], ["access_token", "531f1fffc430984d27a6fd8ebf0ede84"], ["uuid", "29fa64ee-f653-4784-a506-799413e050aa"], ["support_identifier", "cs_a420370d"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:13.387618"], ["updated_at", "2018-10-16 18:06:13.387618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -196864106 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '05905e45-e081-40d8-b25a-ca3aadf83d1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a190334' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -196864106], ["username", "billy_31"], ["access_token", "ab7192795db279b65be58f12bce19ad3"], ["uuid", "05905e45-e081-40d8-b25a-ca3aadf83d1e"], ["support_identifier", "cs_8a190334"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:13.391727"], ["updated_at", "2018-10-16 18:06:13.391727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1202758900 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd9986692-5c30-4ba9-a37f-439cc168c0de' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f532d77e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1202758900], ["username", "billy_32"], ["access_token", "e8b069950206a6803bdabd5021112e22"], ["uuid", "d9986692-5c30-4ba9-a37f-439cc168c0de"], ["support_identifier", "cs_f532d77e"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:13.395753"], ["updated_at", "2018-10-16 18:06:13.395753"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1907960981 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dc119b6d-b03c-479d-b73f-12cf79a2ddfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_726452a1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1907960981], ["username", "billy_33"], ["access_token", "ddf89c9179b5920f080cfad6fafb25bf"], ["uuid", "dc119b6d-b03c-479d-b73f-12cf79a2ddfe"], ["support_identifier", "cs_726452a1"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:13.399818"], ["updated_at", "2018-10-16 18:06:13.399818"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2103039309 LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f45deb0-420d-4488-9161-c20eb3a1c42c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0eaf7e89' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2103039309], ["username", "billy_34"], ["access_token", "a22cabab37c980d40cd63c7c10c255f9"], ["uuid", "9f45deb0-420d-4488-9161-c20eb3a1c42c"], ["support_identifier", "cs_0eaf7e89"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:13.407169"], ["updated_at", "2018-10-16 18:06:13.407169"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1010356614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16c677d7-6fc1-49b8-b730-de35c3771c0c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4524c645' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1010356614], ["username", "billy_35"], ["access_token", "1879c8298607d4cb65f540fcae9130ca"], ["uuid", "16c677d7-6fc1-49b8-b730-de35c3771c0c"], ["support_identifier", "cs_4524c645"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:13.412410"], ["updated_at", "2018-10-16 18:06:13.412410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1782261105 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '583406eb-6bcc-4c27-b00d-aec2f4d693ff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f1ea5b09' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1782261105], ["username", "billy_36"], ["access_token", "b83e9ca2c328be278a84b50247665bc9"], ["uuid", "583406eb-6bcc-4c27-b00d-aec2f4d693ff"], ["support_identifier", "cs_f1ea5b09"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:13.416451"], ["updated_at", "2018-10-16 18:06:13.416451"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1548666694 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0f3ca89a-68bb-45d6-a1f3-cefbfc62ea9d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_75eb080e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1548666694], ["username", "billy_37"], ["access_token", "ca51cdbc6b4d386e0687e25ec63afafc"], ["uuid", "0f3ca89a-68bb-45d6-a1f3-cefbfc62ea9d"], ["support_identifier", "cs_75eb080e"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:13.420878"], ["updated_at", "2018-10-16 18:06:13.420878"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1409732734 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '053c5829-664d-4954-af8a-fc8359c18fec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67c1d554' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1409732734], ["username", "billy_38"], ["access_token", "58b0f7ac74558aadc7298b629981b0c7"], ["uuid", "053c5829-664d-4954-af8a-fc8359c18fec"], ["support_identifier", "cs_67c1d554"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:13.425103"], ["updated_at", "2018-10-16 18:06:13.425103"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -23231821 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cbf32ded-1c01-4850-bf5b-de8c331aa653' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_47660e55' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -23231821], ["username", "billy_39"], ["access_token", "8bdd6b13a3455289ffb480c975becd50"], ["uuid", "cbf32ded-1c01-4850-bf5b-de8c331aa653"], ["support_identifier", "cs_47660e55"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:13.429218"], ["updated_at", "2018-10-16 18:06:13.429218"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -69320691 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f3d12d3f-31aa-4a54-a47f-a4f736687391' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2ef8b1c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -69320691], ["username", "billy_40"], ["access_token", "9b11e15d6bf905ba73d3536c218d9032"], ["uuid", "f3d12d3f-31aa-4a54-a47f-a4f736687391"], ["support_identifier", "cs_c2ef8b1c"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:13.433339"], ["updated_at", "2018-10-16 18:06:13.433339"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1508581874 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b81f9ea-66a2-4e9b-9bfb-e08050e6eaa7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0e7e8de' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1508581874], ["username", "billy_41"], ["access_token", "2dbaac1bb1c6872706a026d560153ab5"], ["uuid", "0b81f9ea-66a2-4e9b-9bfb-e08050e6eaa7"], ["support_identifier", "cs_e0e7e8de"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:13.437904"], ["updated_at", "2018-10-16 18:06:13.437904"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -46680669 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0c34cd87-25d2-4f16-9a0c-0537a703cab0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e98abe83' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -46680669], ["username", "billy_42"], ["access_token", "5a1881ea596c7b03c8e4d58ed89d32fc"], ["uuid", "0c34cd87-25d2-4f16-9a0c-0537a703cab0"], ["support_identifier", "cs_e98abe83"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:13.442114"], ["updated_at", "2018-10-16 18:06:13.442114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -384932001 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d817b3b-efc3-44bc-8e82-625e480fa222' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f891ece1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -384932001], ["username", "billy_43"], ["access_token", "58afb62193b5cfaab4b9f358e208f276"], ["uuid", "6d817b3b-efc3-44bc-8e82-625e480fa222"], ["support_identifier", "cs_f891ece1"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:13.446273"], ["updated_at", "2018-10-16 18:06:13.446273"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1609482557 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48f0ab46-b9b7-47a3-a6ed-8eb176719374' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc86743b' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1609482557], ["username", "billy_44"], ["access_token", "3bd5750fc364fb2349e124bfcc5d863b"], ["uuid", "48f0ab46-b9b7-47a3-a6ed-8eb176719374"], ["support_identifier", "cs_cc86743b"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:13.450638"], ["updated_at", "2018-10-16 18:06:13.450638"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1284750618 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4611fa83-a89e-46ea-9fa0-1766d805a03b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_54da6b80' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1284750618], ["username", "billy_45"], ["access_token", "a5af3f8cd99d2423f4c0f36965624142"], ["uuid", "4611fa83-a89e-46ea-9fa0-1766d805a03b"], ["support_identifier", "cs_54da6b80"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:13.459135"], ["updated_at", "2018-10-16 18:06:13.459135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -187702421 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6fd159d7-9626-44db-8437-45ee6a80ac2e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_93f555b7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -187702421], ["username", "billy_46"], ["access_token", "ff817161b716e5b13727406947311d52"], ["uuid", "6fd159d7-9626-44db-8437-45ee6a80ac2e"], ["support_identifier", "cs_93f555b7"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:13.463500"], ["updated_at", "2018-10-16 18:06:13.463500"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -83456551 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fb22388e-803c-496b-9723-0a2404524116' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_491e5d66' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -83456551], ["username", "billy_47"], ["access_token", "dd2d540e72f8755cf09d9fc518781158"], ["uuid", "fb22388e-803c-496b-9723-0a2404524116"], ["support_identifier", "cs_491e5d66"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:13.467644"], ["updated_at", "2018-10-16 18:06:13.467644"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1084582295 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f313b1f2-0435-420f-bef5-be0086789ef3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_72580dac' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1084582295], ["username", "billy_48"], ["access_token", "f8c722d8a2765b8728e2d76a72be8f78"], ["uuid", "f313b1f2-0435-420f-bef5-be0086789ef3"], ["support_identifier", "cs_72580dac"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:13.472587"], ["updated_at", "2018-10-16 18:06:13.472587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2114798094 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b0da392-98a6-47a2-92fd-0ce0b073fb39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_806dedc8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2114798094], ["username", "billy_49"], ["access_token", "26877e43788492f5c1846de3fcbfccba"], ["uuid", "7b0da392-98a6-47a2-92fd-0ce0b073fb39"], ["support_identifier", "cs_806dedc8"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:13.476765"], ["updated_at", "2018-10-16 18:06:13.476765"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1514073651 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f1fb156d-47bf-4ecb-8edd-4d6e6c59f997' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f50089c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1514073651], ["username", "jstrav"], ["access_token", "cd85d98f23b5c97b8613cf31f1643aed"], ["uuid", "f1fb156d-47bf-4ecb-8edd-4d6e6c59f997"], ["support_identifier", "cs_9f50089c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:13.484988"], ["updated_at", "2018-10-16 18:06:13.484988"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2114121092 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7f04bb5a-eb71-42ab-adec-494217e5bf02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38412c39' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2114121092], ["username", "mary"], ["access_token", "f08d256f266695a4630b460d85e9107a"], ["uuid", "7f04bb5a-eb71-42ab-adec-494217e5bf02"], ["support_identifier", "cs_38412c39"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:13.489712"], ["updated_at", "2018-10-16 18:06:13.489712"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -656059098 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9221c347-6a8e-465e-8e19-de5784cf2d1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e16ef9d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -656059098], ["username", "jstead"], ["access_token", "b9d12ea49c5b8bc47fe8330f36aecf45"], ["uuid", "9221c347-6a8e-465e-8e19-de5784cf2d1d"], ["support_identifier", "cs_4e16ef9d"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:13.493904"], ["updated_at", "2018-10-16 18:06:13.493904"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -289948974 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27fc8a26-0b38-478b-acd9-f77e7cb6d6af' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a2116c47' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -289948974], ["username", "bigbear"], ["access_token", "3ea323783f8548240ebb7b3b21b8a402"], ["uuid", "27fc8a26-0b38-478b-acd9-f77e7cb6d6af"], ["support_identifier", "cs_a2116c47"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:13.497935"], ["updated_at", "2018-10-16 18:06:13.497935"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2073415902 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a2aa112-de09-4669-8992-221bf23fb95b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f76f2610' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2073415902], ["username", "billy_00"], ["access_token", "023d5173d900e0f910853b1ea20cd10b"], ["uuid", "7a2aa112-de09-4669-8992-221bf23fb95b"], ["support_identifier", "cs_f76f2610"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 18:06:13.502171"], ["updated_at", "2018-10-16 18:06:13.502171"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1258199993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0a5b5cb2-1301-42e1-b469-92ee52a2462e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f293405f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1258199993], ["username", "billy_01"], ["access_token", "a0ac4a0e545f6f38cd15d874e6fcc035"], ["uuid", "0a5b5cb2-1301-42e1-b469-92ee52a2462e"], ["support_identifier", "cs_f293405f"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 18:06:13.509635"], ["updated_at", "2018-10-16 18:06:13.509635"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1157900808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7471cd2-f957-43a4-98fa-4be5dd977ded' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4778b39c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1157900808], ["username", "billy_02"], ["access_token", "aecb71cb083daf7ff753ec87d0195a9f"], ["uuid", "f7471cd2-f957-43a4-98fa-4be5dd977ded"], ["support_identifier", "cs_4778b39c"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 18:06:13.513806"], ["updated_at", "2018-10-16 18:06:13.513806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1116811354 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2b638be8-0e9b-4088-ac04-0b5337cb3dde' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f6578fb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1116811354], ["username", "billy_03"], ["access_token", "313b5b40c6fd450191b4d983c176eed9"], ["uuid", "2b638be8-0e9b-4088-ac04-0b5337cb3dde"], ["support_identifier", "cs_2f6578fb"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 18:06:13.518226"], ["updated_at", "2018-10-16 18:06:13.518226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1155491804 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd952001-d308-451b-8425-5568db245ec5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ae51c286' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1155491804], ["username", "billy_04"], ["access_token", "a09186c63570dba2429c77ea0bb4e92d"], ["uuid", "bd952001-d308-451b-8425-5568db245ec5"], ["support_identifier", "cs_ae51c286"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:13.523157"], ["updated_at", "2018-10-16 18:06:13.523157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -881795953 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f3b65fdd-8528-4b3a-aadc-abc0c9157870' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1f2f53c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -881795953], ["username", "billy_05"], ["access_token", "0c0b456ff3e29ce303668a77ec9b1942"], ["uuid", "f3b65fdd-8528-4b3a-aadc-abc0c9157870"], ["support_identifier", "cs_c1f2f53c"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:13.527286"], ["updated_at", "2018-10-16 18:06:13.527286"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1671924287 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '55bd23ed-f009-4971-887c-dd0d66bbf431' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9122d8d0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1671924287], ["username", "billy_06"], ["access_token", "add629aa30d01aa9615f949377505dbf"], ["uuid", "55bd23ed-f009-4971-887c-dd0d66bbf431"], ["support_identifier", "cs_9122d8d0"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:13.531249"], ["updated_at", "2018-10-16 18:06:13.531249"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205307554 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1d3e69a-f158-49db-95fe-90f9493d1999' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c20885b4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -205307554], ["username", "billy_07"], ["access_token", "c9c377009e1d8e3e0e86e736925d890e"], ["uuid", "d1d3e69a-f158-49db-95fe-90f9493d1999"], ["support_identifier", "cs_c20885b4"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:13.535389"], ["updated_at", "2018-10-16 18:06:13.535389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1469274541 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad74c072-e821-4ff1-b1f2-01bb3ee2f3ba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_404efa1f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1469274541], ["username", "billy_08"], ["access_token", "c49fa9493d7bbfd4b77aad96cd2d6171"], ["uuid", "ad74c072-e821-4ff1-b1f2-01bb3ee2f3ba"], ["support_identifier", "cs_404efa1f"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:13.540114"], ["updated_at", "2018-10-16 18:06:13.540114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1642277615 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f60b743a-21e0-4574-8a0d-0aaa911ebada' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_58d90d91' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1642277615], ["username", "billy_09"], ["access_token", "ba93fb5ae431a188f333c2146d83c8e3"], ["uuid", "f60b743a-21e0-4574-8a0d-0aaa911ebada"], ["support_identifier", "cs_58d90d91"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:13.544355"], ["updated_at", "2018-10-16 18:06:13.544355"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -510262808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '867f0d8a-26a0-4c5b-b070-85df07d0ff8d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d717b9b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -510262808], ["username", "billy_10"], ["access_token", "2dc44d43a708f3867d13c4c44470cceb"], ["uuid", "867f0d8a-26a0-4c5b-b070-85df07d0ff8d"], ["support_identifier", "cs_3d717b9b"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:13.548330"], ["updated_at", "2018-10-16 18:06:13.548330"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1662150807 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '48d7ad6c-ec0e-441b-a818-6067048875ce' LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a08ed7ce' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1662150807], ["username", "billy_11"], ["access_token", "1beb192e6050d6e239af29e93aea615e"], ["uuid", "48d7ad6c-ec0e-441b-a818-6067048875ce"], ["support_identifier", "cs_a08ed7ce"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:13.555306"], ["updated_at", "2018-10-16 18:06:13.555306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2042690326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a4e54880-e619-469c-b323-3a2ac6942fa7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33046ed4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2042690326], ["username", "billy_12"], ["access_token", "1e74123889c35abe2f6fbe13dec9a261"], ["uuid", "a4e54880-e619-469c-b323-3a2ac6942fa7"], ["support_identifier", "cs_33046ed4"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:13.561455"], ["updated_at", "2018-10-16 18:06:13.561455"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -61000341 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8b3de699-393a-410f-a0f0-e4f593e22966' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a0d0b401' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -61000341], ["username", "billy_13"], ["access_token", "6ec31be7267bd2831a32832fbd32d531"], ["uuid", "8b3de699-393a-410f-a0f0-e4f593e22966"], ["support_identifier", "cs_a0d0b401"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:13.565913"], ["updated_at", "2018-10-16 18:06:13.565913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1115624198 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27a4d6da-fa45-4820-87fb-765f686a0d74' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a92b130b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1115624198], ["username", "billy_14"], ["access_token", "424242f713768e7f1b573af3e13615da"], ["uuid", "27a4d6da-fa45-4820-87fb-765f686a0d74"], ["support_identifier", "cs_a92b130b"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:13.570413"], ["updated_at", "2018-10-16 18:06:13.570413"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -612696507 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '75741cee-b030-4200-97f1-9ac0175f866b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30232012' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -612696507], ["username", "billy_15"], ["access_token", "003b6b50406caf7d3541c9ca609ba8c0"], ["uuid", "75741cee-b030-4200-97f1-9ac0175f866b"], ["support_identifier", "cs_30232012"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:13.575317"], ["updated_at", "2018-10-16 18:06:13.575317"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1946227991 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1253a866-4764-4a61-a367-439207eb89d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_73ea8ccd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1946227991], ["username", "billy_16"], ["access_token", "ec1f46ab97f4b5cc3ff708a5c4500a52"], ["uuid", "1253a866-4764-4a61-a367-439207eb89d1"], ["support_identifier", "cs_73ea8ccd"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:13.579414"], ["updated_at", "2018-10-16 18:06:13.579414"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -178679702 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2641042-57a1-4d43-a652-e4d861a2c266' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca3ae91a' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -178679702], ["username", "billy_17"], ["access_token", "e7116e0f55bcd8f9afd945ca7f2aa832"], ["uuid", "a2641042-57a1-4d43-a652-e4d861a2c266"], ["support_identifier", "cs_ca3ae91a"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:13.583666"], ["updated_at", "2018-10-16 18:06:13.583666"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1520559989 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '203c7e69-ba59-4391-ba1b-93ba62c7f53e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d105f61b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1520559989], ["username", "billy_18"], ["access_token", "4e4f5557b5821ee68f4aa4d3456d6008"], ["uuid", "203c7e69-ba59-4391-ba1b-93ba62c7f53e"], ["support_identifier", "cs_d105f61b"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:13.588677"], ["updated_at", "2018-10-16 18:06:13.588677"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -666346139 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9aead767-7bd6-49b5-84c0-460078e00f40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5dd2b7d2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -666346139], ["username", "billy_19"], ["access_token", "7ba0f92bbfba7d40f3401ad365fb33a4"], ["uuid", "9aead767-7bd6-49b5-84c0-460078e00f40"], ["support_identifier", "cs_5dd2b7d2"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:13.592971"], ["updated_at", "2018-10-16 18:06:13.592971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2012622056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2d16e360-d6a5-4d3b-b7df-baf752d30590' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33cc13c5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2012622056], ["username", "billy_20"], ["access_token", "ded4a7e33ee9ce68cee21cb5344f7dcf"], ["uuid", "2d16e360-d6a5-4d3b-b7df-baf752d30590"], ["support_identifier", "cs_33cc13c5"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:13.597133"], ["updated_at", "2018-10-16 18:06:13.597133"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1476706428 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '334b5886-1966-4c93-8d40-5980431464f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_253efacb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1476706428], ["username", "billy_21"], ["access_token", "cacabf8eb6ee72bc75a080bbde21443e"], ["uuid", "334b5886-1966-4c93-8d40-5980431464f9"], ["support_identifier", "cs_253efacb"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:13.601202"], ["updated_at", "2018-10-16 18:06:13.601202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -193352790 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cd9cfa7b-3f68-4aac-ae76-69395f7dae8e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c49ae774' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -193352790], ["username", "billy_22"], ["access_token", "38a07bc9c8722a54ea539a2d65f43924"], ["uuid", "cd9cfa7b-3f68-4aac-ae76-69395f7dae8e"], ["support_identifier", "cs_c49ae774"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:13.607880"], ["updated_at", "2018-10-16 18:06:13.607880"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -320345039 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd50f02e1-075e-4863-8fc0-3732bdbc5003' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_febbf99d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -320345039], ["username", "billy_23"], ["access_token", "8609eea72b96103d7327ceb220c51b43"], ["uuid", "d50f02e1-075e-4863-8fc0-3732bdbc5003"], ["support_identifier", "cs_febbf99d"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:13.612412"], ["updated_at", "2018-10-16 18:06:13.612412"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1209913970 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a49aa761-6401-4f39-86b3-839b46001cb8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_adfa71a0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1209913970], ["username", "billy_24"], ["access_token", "741b783c367610fa737f6cbb4d6ba29b"], ["uuid", "a49aa761-6401-4f39-86b3-839b46001cb8"], ["support_identifier", "cs_adfa71a0"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:13.616438"], ["updated_at", "2018-10-16 18:06:13.616438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1696791798 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e4667f3b-945b-4f40-9d09-89db95acd41f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c50d71ef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1696791798], ["username", "billy_25"], ["access_token", "3697385f275ed6e8b2b513494b5c4483"], ["uuid", "e4667f3b-945b-4f40-9d09-89db95acd41f"], ["support_identifier", "cs_c50d71ef"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:13.621006"], ["updated_at", "2018-10-16 18:06:13.621006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2090800234 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '912c627e-99e2-4bc8-a880-67fce9e1904a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3c52bb75' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2090800234], ["username", "billy_26"], ["access_token", "e638e7ba104a2608cd965f631b9fa288"], ["uuid", "912c627e-99e2-4bc8-a880-67fce9e1904a"], ["support_identifier", "cs_3c52bb75"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:13.625426"], ["updated_at", "2018-10-16 18:06:13.625426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1382504057 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8bdcf87f-24cc-4d28-b362-d81ec8095863' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d7b4795' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1382504057], ["username", "billy_27"], ["access_token", "65f19c661ec7a090169856e76a3b1f4d"], ["uuid", "8bdcf87f-24cc-4d28-b362-d81ec8095863"], ["support_identifier", "cs_7d7b4795"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:13.629520"], ["updated_at", "2018-10-16 18:06:13.629520"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1527832823 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e71e651a-3e8d-4be7-9ea4-4fd1bed9fc0d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e2d4ae4c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1527832823], ["username", "billy_28"], ["access_token", "585e430b15d3431beb631bb944509c62"], ["uuid", "e71e651a-3e8d-4be7-9ea4-4fd1bed9fc0d"], ["support_identifier", "cs_e2d4ae4c"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:13.633657"], ["updated_at", "2018-10-16 18:06:13.633657"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -405109353 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bccb00de-f643-4e49-b44d-94f3032cded9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e29e0a8a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -405109353], ["username", "billy_29"], ["access_token", "cccf69de034a6239a51383d537a9bffa"], ["uuid", "bccb00de-f643-4e49-b44d-94f3032cded9"], ["support_identifier", "cs_e29e0a8a"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:13.645196"], ["updated_at", "2018-10-16 18:06:13.645196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -556985282 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0208a961-9c9a-490e-9847-deb16e75c9c2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_03078c72' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -556985282], ["username", "billy_30"], ["access_token", "d1ce923fc92ffdf5099cb996121e70ad"], ["uuid", "0208a961-9c9a-490e-9847-deb16e75c9c2"], ["support_identifier", "cs_03078c72"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:13.649665"], ["updated_at", "2018-10-16 18:06:13.649665"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -203475687 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd5774f5-2c7c-4319-93ad-616760ddb99c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f490d348' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -203475687], ["username", "billy_31"], ["access_token", "759a96ae5f5d1fc576a641454c8b8897"], ["uuid", "fd5774f5-2c7c-4319-93ad-616760ddb99c"], ["support_identifier", "cs_f490d348"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:13.655043"], ["updated_at", "2018-10-16 18:06:13.655043"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -278156481 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b6a911d-c283-4581-82b1-c185d7946515' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2c70f561' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -278156481], ["username", "billy_32"], ["access_token", "2223bb96f14801cf683657b9388d5a9c"], ["uuid", "0b6a911d-c283-4581-82b1-c185d7946515"], ["support_identifier", "cs_2c70f561"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:13.659368"], ["updated_at", "2018-10-16 18:06:13.659368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -780503434 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cae4c38e-287a-47ba-a013-b0adbd817810' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_46413331' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -780503434], ["username", "billy_33"], ["access_token", "8e250eba5a9b12450a6b5d6f1b1b5667"], ["uuid", "cae4c38e-287a-47ba-a013-b0adbd817810"], ["support_identifier", "cs_46413331"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:13.663378"], ["updated_at", "2018-10-16 18:06:13.663378"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -58673863 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '990c12be-3ac1-432d-be75-baa830fda27c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_efe14cc9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -58673863], ["username", "billy_34"], ["access_token", "bf7731c606334c8c0a78171d6f824179"], ["uuid", "990c12be-3ac1-432d-be75-baa830fda27c"], ["support_identifier", "cs_efe14cc9"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:13.667387"], ["updated_at", "2018-10-16 18:06:13.667387"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1712516214 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7b611712-902e-4375-be7f-b87d277ea10f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9081c707' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1712516214], ["username", "billy_35"], ["access_token", "e985fb21375e72abfa12f7e2ba174d8f"], ["uuid", "7b611712-902e-4375-be7f-b87d277ea10f"], ["support_identifier", "cs_9081c707"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:13.671976"], ["updated_at", "2018-10-16 18:06:13.671976"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2084481808 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '60993915-0ce3-4799-b3d2-994fe64809d0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a751b4d6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2084481808], ["username", "billy_36"], ["access_token", "376568f7e59775877d12e8a5185b705a"], ["uuid", "60993915-0ce3-4799-b3d2-994fe64809d0"], ["support_identifier", "cs_a751b4d6"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:13.676298"], ["updated_at", "2018-10-16 18:06:13.676298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2049578875 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '216e559d-cea4-4e7c-bc0f-94c07b9e2ffd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78e9d37a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2049578875], ["username", "billy_37"], ["access_token", "453c99a70f0f1a19050d27d0b96cdbaa"], ["uuid", "216e559d-cea4-4e7c-bc0f-94c07b9e2ffd"], ["support_identifier", "cs_78e9d37a"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:13.680428"], ["updated_at", "2018-10-16 18:06:13.680428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1871856989 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '40e4194e-6e6b-44a7-b208-c90299a67ce0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5673781e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1871856989], ["username", "billy_38"], ["access_token", "9ea58e33e9f1bf3b6baabd9a0ab72698"], ["uuid", "40e4194e-6e6b-44a7-b208-c90299a67ce0"], ["support_identifier", "cs_5673781e"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:13.684510"], ["updated_at", "2018-10-16 18:06:13.684510"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1939365290 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f928d0ce-f1a2-4ee5-a91c-85cf09330214' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f404ec10' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1939365290], ["username", "billy_39"], ["access_token", "62f9f3b2013de27c58b773bf9c04c206"], ["uuid", "f928d0ce-f1a2-4ee5-a91c-85cf09330214"], ["support_identifier", "cs_f404ec10"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:13.692604"], ["updated_at", "2018-10-16 18:06:13.692604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -429034777 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d575173-d7ee-46b4-b685-4e73d2a5d0d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b20abb59' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -429034777], ["username", "billy_40"], ["access_token", "854fb63d4a64ecdf15f25c4aee837995"], ["uuid", "8d575173-d7ee-46b4-b685-4e73d2a5d0d8"], ["support_identifier", "cs_b20abb59"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:13.697158"], ["updated_at", "2018-10-16 18:06:13.697158"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -127813366 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '95e4e7bb-4592-4a70-aecf-3721eebb7f93' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25551a8b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -127813366], ["username", "billy_41"], ["access_token", "ec87c0e5c3d79cdbcf55b3278b3d0702"], ["uuid", "95e4e7bb-4592-4a70-aecf-3721eebb7f93"], ["support_identifier", "cs_25551a8b"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:13.701209"], ["updated_at", "2018-10-16 18:06:13.701209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1465011083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '56fd00eb-1fbb-497e-ba94-c7899c5de68a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5943721d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1465011083], ["username", "billy_42"], ["access_token", "c68f773c596e0f65c72aaa6fafb8361a"], ["uuid", "56fd00eb-1fbb-497e-ba94-c7899c5de68a"], ["support_identifier", "cs_5943721d"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:13.705875"], ["updated_at", "2018-10-16 18:06:13.705875"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1291514576 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '382cf2d8-c374-42b5-a495-a6e77553e509' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb341a02' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1291514576], ["username", "billy_43"], ["access_token", "9db2bb549f7e66a896932926aa12d934"], ["uuid", "382cf2d8-c374-42b5-a495-a6e77553e509"], ["support_identifier", "cs_cb341a02"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:13.709969"], ["updated_at", "2018-10-16 18:06:13.709969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1549563761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1b9feae-4600-4cf8-be4c-48440d992a99' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5efc269c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1549563761], ["username", "billy_44"], ["access_token", "e4506bfa217fb9323804d3b6349d2e95"], ["uuid", "a1b9feae-4600-4cf8-be4c-48440d992a99"], ["support_identifier", "cs_5efc269c"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:13.713970"], ["updated_at", "2018-10-16 18:06:13.713970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1917899108 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd66d7fe6-82bf-4a82-b85f-28413fa71dfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8f9a03c6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1917899108], ["username", "billy_45"], ["access_token", "3df34e68497f422a6490e0379f6a6c24"], ["uuid", "d66d7fe6-82bf-4a82-b85f-28413fa71dfe"], ["support_identifier", "cs_8f9a03c6"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:13.718193"], ["updated_at", "2018-10-16 18:06:13.718193"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1803555128 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b3b35e5-7575-4e20-b973-0a96e6b1be52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2ff87fa4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1803555128], ["username", "billy_46"], ["access_token", "959c9f9d16294f5fe6b3bdda25357f4b"], ["uuid", "5b3b35e5-7575-4e20-b973-0a96e6b1be52"], ["support_identifier", "cs_2ff87fa4"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:13.722952"], ["updated_at", "2018-10-16 18:06:13.722952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -204082689 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6865b93-ee00-4a33-8494-2c5f69d736cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38ca7366' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -204082689], ["username", "billy_47"], ["access_token", "0df0e64b20468c60e700916f2bb8cefa"], ["uuid", "d6865b93-ee00-4a33-8494-2c5f69d736cf"], ["support_identifier", "cs_38ca7366"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:13.727146"], ["updated_at", "2018-10-16 18:06:13.727146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -664935658 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4476612e-29aa-4991-90cf-5963e343e448' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f77cac2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -664935658], ["username", "billy_48"], ["access_token", "ad61292267d0dba5de2c9f7613f25210"], ["uuid", "4476612e-29aa-4991-90cf-5963e343e448"], ["support_identifier", "cs_9f77cac2"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:13.731181"], ["updated_at", "2018-10-16 18:06:13.731181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1917490149 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '88b053c5-9df4-4a08-83bd-a56ee9ef7d80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d8384c6' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1917490149], ["username", "billy_49"], ["access_token", "8dc024c834f7f3474e3ef65202c7ecb8"], ["uuid", "88b053c5-9df4-4a08-83bd-a56ee9ef7d80"], ["support_identifier", "cs_4d8384c6"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:13.735346"], ["updated_at", "2018-10-16 18:06:13.735346"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -854433163 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db3a9152-c356-4877-ac83-0e2c2a1f7be4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0e8c92f3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -854433163], ["username", "jstrav"], ["access_token", "3247bb81d933c505cb9269961626a849"], ["uuid", "db3a9152-c356-4877-ac83-0e2c2a1f7be4"], ["support_identifier", "cs_0e8c92f3"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:13.744955"], ["updated_at", "2018-10-16 18:06:13.744955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1615799030 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1f1b6dbd-f1c7-45a3-b11e-46025dd6d8fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a7384786' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1615799030], ["username", "mary"], ["access_token", "6de589542c08c3ff079102fad83d30ba"], ["uuid", "1f1b6dbd-f1c7-45a3-b11e-46025dd6d8fe"], ["support_identifier", "cs_a7384786"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:13.749217"], ["updated_at", "2018-10-16 18:06:13.749217"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1777150530 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0fcbdfe-b505-435a-8eae-83155775cc57' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9103707' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1777150530], ["username", "jstead"], ["access_token", "00cdc5b9f0229427f2897065c54f5d2c"], ["uuid", "c0fcbdfe-b505-435a-8eae-83155775cc57"], ["support_identifier", "cs_c9103707"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:13.754836"], ["updated_at", "2018-10-16 18:06:13.754836"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2051119977 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '716ace76-0e32-4402-a38f-3a4db8b4ae7a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dfa5e11f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2051119977], ["username", "bigbear"], ["access_token", "e8e1c2999da0f35ccc4817c853cfc519"], ["uuid", "716ace76-0e32-4402-a38f-3a4db8b4ae7a"], ["support_identifier", "cs_dfa5e11f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:13.759001"], ["updated_at", "2018-10-16 18:06:13.759001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -581436982 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6162384b-04da-4658-b58c-65aca9bfa51f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a438ea92' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -581436982], ["username", "billy_00"], ["access_token", "7f5b284526b71081e9ccc5673d509275"], ["uuid", "6162384b-04da-4658-b58c-65aca9bfa51f"], ["support_identifier", "cs_a438ea92"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 18:06:13.763012"], ["updated_at", "2018-10-16 18:06:13.763012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -37320697 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db80629e-ebff-4a09-be12-ee1170922c69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b52fb412' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -37320697], ["username", "billy_01"], ["access_token", "78561d44ac4d3f662019e2c31bb34a54"], ["uuid", "db80629e-ebff-4a09-be12-ee1170922c69"], ["support_identifier", "cs_b52fb412"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 18:06:13.767092"], ["updated_at", "2018-10-16 18:06:13.767092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -999901121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16d142f3-3e14-48bd-9e06-651f88cbb172' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18f1791c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -999901121], ["username", "billy_02"], ["access_token", "6b0e66f2c54c0e8e68e8727f12639429"], ["uuid", "16d142f3-3e14-48bd-9e06-651f88cbb172"], ["support_identifier", "cs_18f1791c"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 18:06:13.771799"], ["updated_at", "2018-10-16 18:06:13.771799"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1912804978 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c51a9cd-292c-4888-825c-0262916625ae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cc60e525' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1912804978], ["username", "billy_03"], ["access_token", "39d95359a32cfa3b274a70cf76accaa0"], ["uuid", "1c51a9cd-292c-4888-825c-0262916625ae"], ["support_identifier", "cs_cc60e525"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 18:06:13.776313"], ["updated_at", "2018-10-16 18:06:13.776313"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1036144725 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '70cea184-3568-4b7b-b4f5-b5bbf3d434f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_83b422ab' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1036144725], ["username", "billy_04"], ["access_token", "43dc98c425c07c3a948f2541ba71a70e"], ["uuid", "70cea184-3568-4b7b-b4f5-b5bbf3d434f2"], ["support_identifier", "cs_83b422ab"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:13.780513"], ["updated_at", "2018-10-16 18:06:13.780513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -875155059 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3afda616-3fb1-404e-8e6b-89a353f44045' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_db16abe7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -875155059], ["username", "billy_05"], ["access_token", "1fb97f177e154960fee2e398d9574c02"], ["uuid", "3afda616-3fb1-404e-8e6b-89a353f44045"], ["support_identifier", "cs_db16abe7"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:13.784620"], ["updated_at", "2018-10-16 18:06:13.784620"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1737270907 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cdf3aa39-41b7-48e8-a2d5-4e7b25e00444' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2d022f8' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1737270907], ["username", "billy_06"], ["access_token", "a824804e79758891d6c6782ea6412a03"], ["uuid", "cdf3aa39-41b7-48e8-a2d5-4e7b25e00444"], ["support_identifier", "cs_c2d022f8"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:13.789045"], ["updated_at", "2018-10-16 18:06:13.789045"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -946613703 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd6b071f-311b-42c3-af98-61e88a177b3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34b1e2ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -946613703], ["username", "billy_07"], ["access_token", "403e3b787df3d3204327328391aa8fa2"], ["uuid", "fd6b071f-311b-42c3-af98-61e88a177b3c"], ["support_identifier", "cs_34b1e2ec"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:13.795322"], ["updated_at", "2018-10-16 18:06:13.795322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -935552557 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ec9e7016-3e1c-4d12-b781-c5a3bc1d0400' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ecb9fffa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -935552557], ["username", "billy_08"], ["access_token", "5469fabc6014c5633e17563400a6537a"], ["uuid", "ec9e7016-3e1c-4d12-b781-c5a3bc1d0400"], ["support_identifier", "cs_ecb9fffa"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:13.799464"], ["updated_at", "2018-10-16 18:06:13.799464"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -256226202 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c18d523d-aedd-4115-9a0a-55f6aa2200eb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26884aec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -256226202], ["username", "billy_09"], ["access_token", "9ffb739acd1e0992273753e25d69bc74"], ["uuid", "c18d523d-aedd-4115-9a0a-55f6aa2200eb"], ["support_identifier", "cs_26884aec"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:13.803473"], ["updated_at", "2018-10-16 18:06:13.803473"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -847753979 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5b8ab8db-ac01-4f0f-861d-b1be321a03ea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fbbd9271' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -847753979], ["username", "billy_10"], ["access_token", "33c5c2ff2505ed7d8ec143e549c54a87"], ["uuid", "5b8ab8db-ac01-4f0f-861d-b1be321a03ea"], ["support_identifier", "cs_fbbd9271"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:13.807551"], ["updated_at", "2018-10-16 18:06:13.807551"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886204826 LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '430cbf3e-c01f-4205-851f-a45f023fb8be' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0740ca02' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -886204826], ["username", "billy_11"], ["access_token", "61093e30d26999c96b24fa96f19f5bfc"], ["uuid", "430cbf3e-c01f-4205-851f-a45f023fb8be"], ["support_identifier", "cs_0740ca02"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:13.814662"], ["updated_at", "2018-10-16 18:06:13.814662"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1562789639 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4f521ab1-d81f-4b55-a65e-97f9bca6ce2c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a0d7a7e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1562789639], ["username", "billy_12"], ["access_token", "9429044f7e0ce2af01bb8b4c724a023c"], ["uuid", "4f521ab1-d81f-4b55-a65e-97f9bca6ce2c"], ["support_identifier", "cs_8a0d7a7e"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:13.819371"], ["updated_at", "2018-10-16 18:06:13.819371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1817646836 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '229abbdd-47bf-4943-bd4c-9bcd20b24296' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_869cd49d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1817646836], ["username", "billy_13"], ["access_token", "766678274cabd9361cc852f77f9da31b"], ["uuid", "229abbdd-47bf-4943-bd4c-9bcd20b24296"], ["support_identifier", "cs_869cd49d"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:13.823902"], ["updated_at", "2018-10-16 18:06:13.823902"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -329817185 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8fb5060-8981-4a46-bf98-ae23b081778f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a45e741' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -329817185], ["username", "billy_14"], ["access_token", "23c1f35fb44010875d32bf9d28acdcbd"], ["uuid", "a8fb5060-8981-4a46-bf98-ae23b081778f"], ["support_identifier", "cs_5a45e741"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:13.828071"], ["updated_at", "2018-10-16 18:06:13.828071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2134241898 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'de3e40d7-3cb9-4960-9a3a-2cd9f1f96b08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_305e90b0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2134241898], ["username", "billy_15"], ["access_token", "89819921c67cedd55790ccb62c3eb155"], ["uuid", "de3e40d7-3cb9-4960-9a3a-2cd9f1f96b08"], ["support_identifier", "cs_305e90b0"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:13.832157"], ["updated_at", "2018-10-16 18:06:13.832157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -921641905 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd78044fa-ca28-4629-9940-80fa1ef50ecd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7f5ffb12' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -921641905], ["username", "billy_16"], ["access_token", "d554ca60c4ea8f6f4f7fcf373a8612b9"], ["uuid", "d78044fa-ca28-4629-9940-80fa1ef50ecd"], ["support_identifier", "cs_7f5ffb12"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:13.836844"], ["updated_at", "2018-10-16 18:06:13.836844"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1840668386 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1b14e751-482a-44c0-b144-1d86310b6dd8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b6c040d2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1840668386], ["username", "billy_17"], ["access_token", "ad901e9ff0191d79ecb75d121ea7b3eb"], ["uuid", "1b14e751-482a-44c0-b144-1d86310b6dd8"], ["support_identifier", "cs_b6c040d2"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:13.841419"], ["updated_at", "2018-10-16 18:06:13.841419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -85028097 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8772e070-bf5c-463b-a11f-5a51aaecc3e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e1a46a43' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -85028097], ["username", "billy_18"], ["access_token", "16d6a9ac7260da0ce7e1330539a7329f"], ["uuid", "8772e070-bf5c-463b-a11f-5a51aaecc3e9"], ["support_identifier", "cs_e1a46a43"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:13.845613"], ["updated_at", "2018-10-16 18:06:13.845613"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -401942393 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '77ad3be7-1ae1-49e7-a5d3-3c1c38058c07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_61c50662' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -401942393], ["username", "billy_19"], ["access_token", "d5d9d6d48b6d1f122def74df99898aab"], ["uuid", "77ad3be7-1ae1-49e7-a5d3-3c1c38058c07"], ["support_identifier", "cs_61c50662"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:13.849688"], ["updated_at", "2018-10-16 18:06:13.849688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -954741332 LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b8db0f3-08b2-4867-baff-c7cd04e9d246' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5461a2d3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -954741332], ["username", "billy_20"], ["access_token", "7e52bb689adc82d7082fafb8fdd61614"], ["uuid", "6b8db0f3-08b2-4867-baff-c7cd04e9d246"], ["support_identifier", "cs_5461a2d3"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:13.858405"], ["updated_at", "2018-10-16 18:06:13.858405"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1218516218 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6895a06-87d7-4d6d-b307-b322a5c4f528' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15b8439d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1218516218], ["username", "billy_21"], ["access_token", "bb3c8e31ad7dd01d0e940e21de1ecb41"], ["uuid", "b6895a06-87d7-4d6d-b307-b322a5c4f528"], ["support_identifier", "cs_15b8439d"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:13.862999"], ["updated_at", "2018-10-16 18:06:13.862999"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2117561125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ac0df5a-869c-489f-a38e-535aed0d5f9c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4df856f2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2117561125], ["username", "billy_22"], ["access_token", "2f985897c550f1a4b845f21be4070496"], ["uuid", "4ac0df5a-869c-489f-a38e-535aed0d5f9c"], ["support_identifier", "cs_4df856f2"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:13.867076"], ["updated_at", "2018-10-16 18:06:13.867076"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1341167851 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0e775af3-6e18-4476-92b4-db620d1f5cc9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60e0a48d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1341167851], ["username", "billy_23"], ["access_token", "5ed0b66f61a0f04716c4a4099735c1b7"], ["uuid", "0e775af3-6e18-4476-92b4-db620d1f5cc9"], ["support_identifier", "cs_60e0a48d"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:13.872017"], ["updated_at", "2018-10-16 18:06:13.872017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -540421913 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8cc4251-2c86-458f-b48c-42375fa09b52' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_64798fa8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -540421913], ["username", "billy_24"], ["access_token", "11f6a2c47caf5e384bcf5a153a881efe"], ["uuid", "f8cc4251-2c86-458f-b48c-42375fa09b52"], ["support_identifier", "cs_64798fa8"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:13.876494"], ["updated_at", "2018-10-16 18:06:13.876494"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -767622781 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3c281953-0f3e-4cf7-ad83-652cd1b3aeed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6388248' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -767622781], ["username", "billy_25"], ["access_token", "98b86d18dca7547e0422b51f2adac149"], ["uuid", "3c281953-0f3e-4cf7-ad83-652cd1b3aeed"], ["support_identifier", "cs_e6388248"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:13.880634"], ["updated_at", "2018-10-16 18:06:13.880634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1687810270 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd6ab16f-9a7b-420b-ae76-7c72c05aeccc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f0346ce3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1687810270], ["username", "billy_26"], ["access_token", "0cb146900cde4a8e7395efe3c3e53fd0"], ["uuid", "bd6ab16f-9a7b-420b-ae76-7c72c05aeccc"], ["support_identifier", "cs_f0346ce3"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:13.884735"], ["updated_at", "2018-10-16 18:06:13.884735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77563860 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6c95257a-096e-422c-883f-617ee04f8664' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2cb44428' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -77563860], ["username", "billy_27"], ["access_token", "4a2a07396b9885dab35971bac296d9ae"], ["uuid", "6c95257a-096e-422c-883f-617ee04f8664"], ["support_identifier", "cs_2cb44428"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:13.889209"], ["updated_at", "2018-10-16 18:06:13.889209"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1113424807 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd48fcd3-0ba3-4374-aaf2-c50124c42107' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9bd764a2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1113424807], ["username", "billy_28"], ["access_token", "87bdfa6b0693d13c67a6e7f309f602d9"], ["uuid", "fd48fcd3-0ba3-4374-aaf2-c50124c42107"], ["support_identifier", "cs_9bd764a2"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:13.897277"], ["updated_at", "2018-10-16 18:06:13.897277"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1171820533 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '67b7753e-a3be-43d2-b2f9-b8b35cb4d84c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bafb39b3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1171820533], ["username", "billy_29"], ["access_token", "62c6ae1d3d7b690266a05d796c8f2977"], ["uuid", "67b7753e-a3be-43d2-b2f9-b8b35cb4d84c"], ["support_identifier", "cs_bafb39b3"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:13.905464"], ["updated_at", "2018-10-16 18:06:13.905464"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -988146271 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f62931f3-959e-4ca0-83a6-25ac0a7e132b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_837bd4e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -988146271], ["username", "billy_30"], ["access_token", "dc8e58924bf3386faa3a8ce4bfeb8d53"], ["uuid", "f62931f3-959e-4ca0-83a6-25ac0a7e132b"], ["support_identifier", "cs_837bd4e5"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:13.909788"], ["updated_at", "2018-10-16 18:06:13.909788"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1900568669 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54acd484-613d-4943-9bf9-794eabd5c77c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f894d276' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1900568669], ["username", "billy_31"], ["access_token", "2956fb94abf5ac1bf4ca9ede6b265e1f"], ["uuid", "54acd484-613d-4943-9bf9-794eabd5c77c"], ["support_identifier", "cs_f894d276"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:13.913868"], ["updated_at", "2018-10-16 18:06:13.913868"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480971183 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '05930f46-0d1f-4929-a8ed-62943d16cb2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d7905004' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1480971183], ["username", "billy_32"], ["access_token", "0827250e7458367e6a9ada7241dc2d16"], ["uuid", "05930f46-0d1f-4929-a8ed-62943d16cb2a"], ["support_identifier", "cs_d7905004"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:13.918106"], ["updated_at", "2018-10-16 18:06:13.918106"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1182426111 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3941025-e804-427a-bf75-baa52cbc0593' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d061567' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1182426111], ["username", "billy_33"], ["access_token", "2bc433d8eafa8307fa459bf6ff1440ac"], ["uuid", "c3941025-e804-427a-bf75-baa52cbc0593"], ["support_identifier", "cs_5d061567"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:13.922614"], ["updated_at", "2018-10-16 18:06:13.922614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -199988350 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5aa24247-d171-42c7-9ff8-fa497e707908' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_489ec71a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -199988350], ["username", "billy_34"], ["access_token", "a94a483ee4e2f94b2009b32c2bff20ac"], ["uuid", "5aa24247-d171-42c7-9ff8-fa497e707908"], ["support_identifier", "cs_489ec71a"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:13.926840"], ["updated_at", "2018-10-16 18:06:13.926840"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1567998530 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eb112dba-1cae-430f-b161-24abf9fcfdf3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9efdd1f3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1567998530], ["username", "billy_35"], ["access_token", "04ec864db43899a520fb02d07502d070"], ["uuid", "eb112dba-1cae-430f-b161-24abf9fcfdf3"], ["support_identifier", "cs_9efdd1f3"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:13.930935"], ["updated_at", "2018-10-16 18:06:13.930935"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -123848798 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '259077e8-2086-4e44-95e0-aeedf2356910' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98b5e778' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -123848798], ["username", "billy_36"], ["access_token", "512d80a744cbe76ac8be353772511703"], ["uuid", "259077e8-2086-4e44-95e0-aeedf2356910"], ["support_identifier", "cs_98b5e778"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:13.935383"], ["updated_at", "2018-10-16 18:06:13.935383"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1626016436 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27871c8a-aa7f-49ef-9787-428c0d62a54a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_721875dc' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1626016436], ["username", "billy_37"], ["access_token", "37fe1ec0d5ba172a34637e436356d56b"], ["uuid", "27871c8a-aa7f-49ef-9787-428c0d62a54a"], ["support_identifier", "cs_721875dc"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:13.942759"], ["updated_at", "2018-10-16 18:06:13.942759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -379248164 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33f95d21-bdc3-4234-b978-b4bb75aac72d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_17ae47f2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -379248164], ["username", "billy_38"], ["access_token", "1f0b9676493103fcc376c94b47929d73"], ["uuid", "33f95d21-bdc3-4234-b978-b4bb75aac72d"], ["support_identifier", "cs_17ae47f2"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:13.947473"], ["updated_at", "2018-10-16 18:06:13.947473"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1122406718 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30dc00d6-9904-4119-be30-110867ca949e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aaaccdef' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1122406718], ["username", "billy_39"], ["access_token", "6e0b5a530b5babc162b01134c813461f"], ["uuid", "30dc00d6-9904-4119-be30-110867ca949e"], ["support_identifier", "cs_aaaccdef"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:13.952167"], ["updated_at", "2018-10-16 18:06:13.952167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -286525609 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea31c6da-4489-411c-8c00-b07a5247101b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_33f4ae3e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -286525609], ["username", "billy_40"], ["access_token", "ffeda41bc43303279ad52f6079f7ac8e"], ["uuid", "ea31c6da-4489-411c-8c00-b07a5247101b"], ["support_identifier", "cs_33f4ae3e"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:13.957232"], ["updated_at", "2018-10-16 18:06:13.957232"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2102685747 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '137faec9-23cd-4a18-8da3-0b23c3bf755b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_85c320f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2102685747], ["username", "billy_41"], ["access_token", "174d388f4e7307e84eaf81218c1e3a08"], ["uuid", "137faec9-23cd-4a18-8da3-0b23c3bf755b"], ["support_identifier", "cs_85c320f1"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:13.961459"], ["updated_at", "2018-10-16 18:06:13.961459"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1437787674 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7496cd21-4c7b-41c3-b099-7beabd823cfc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98865848' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1437787674], ["username", "billy_42"], ["access_token", "2f753d4b519e76d2faacc05d35c15b3f"], ["uuid", "7496cd21-4c7b-41c3-b099-7beabd823cfc"], ["support_identifier", "cs_98865848"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:13.965567"], ["updated_at", "2018-10-16 18:06:13.965567"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1377161313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '298c4bf3-771a-4831-8efb-ae54b12f5ffc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f32c1931' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1377161313], ["username", "billy_43"], ["access_token", "5f1a9df630b6df3608514a378e304388"], ["uuid", "298c4bf3-771a-4831-8efb-ae54b12f5ffc"], ["support_identifier", "cs_f32c1931"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:13.970219"], ["updated_at", "2018-10-16 18:06:13.970219"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -486714671 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4845c151-b288-4210-870d-955816f5d9c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_991d9932' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -486714671], ["username", "billy_44"], ["access_token", "4013396c3b593e9a26f562882e146d93"], ["uuid", "4845c151-b288-4210-870d-955816f5d9c4"], ["support_identifier", "cs_991d9932"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:13.974798"], ["updated_at", "2018-10-16 18:06:13.974798"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1789280679 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0c1f718e-de65-42de-9d7a-7abd9fcf4829' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1da6a43e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1789280679], ["username", "billy_45"], ["access_token", "610d4a97df99579ad52c6c0a3b901244"], ["uuid", "0c1f718e-de65-42de-9d7a-7abd9fcf4829"], ["support_identifier", "cs_1da6a43e"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:13.978979"], ["updated_at", "2018-10-16 18:06:13.978979"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -100935019 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6fff3cfc-bf13-46f0-aefb-e8436bf00528' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_69f59761' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -100935019], ["username", "billy_46"], ["access_token", "22cee8adadb6cb821642698ade85f4f5"], ["uuid", "6fff3cfc-bf13-46f0-aefb-e8436bf00528"], ["support_identifier", "cs_69f59761"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:13.983017"], ["updated_at", "2018-10-16 18:06:13.983017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1991891526 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9c989cbb-f644-4fae-a7a7-6f8bd46cb083' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_64c194ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1991891526], ["username", "billy_47"], ["access_token", "ecfc89f84904b8c6b6f3b8abcd3e38e5"], ["uuid", "9c989cbb-f644-4fae-a7a7-6f8bd46cb083"], ["support_identifier", "cs_64c194ec"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:13.987240"], ["updated_at", "2018-10-16 18:06:13.987240"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -830974384 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a247b2c3-dfd5-4479-8ab4-d248d2f25248' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34fed658' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -830974384], ["username", "billy_48"], ["access_token", "1a36f2d8c34f4e6cf71be8d3d7b8fb6f"], ["uuid", "a247b2c3-dfd5-4479-8ab4-d248d2f25248"], ["support_identifier", "cs_34fed658"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:13.993008"], ["updated_at", "2018-10-16 18:06:13.993008"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -814251487 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e06b75cc-9780-43b9-a4b3-e01d5f3a5892' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ccca1800' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -814251487], ["username", "billy_49"], ["access_token", "bfac6d8b666c48b915a7306405e926a5"], ["uuid", "e06b75cc-9780-43b9-a4b3-e01d5f3a5892"], ["support_identifier", "cs_ccca1800"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:13.997617"], ["updated_at", "2018-10-16 18:06:13.997617"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'billy%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'billy%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'u' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '654ea5f6-81e9-4e9c-9b4c-c74b7bafc206' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d72b7ee7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "u"], ["access_token", "658a182a98381e950047a5e2cf73c56b"], ["uuid", "654ea5f6-81e9-4e9c-9b4c-c74b7bafc206"], ["support_identifier", "cs_d72b7ee7"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.028084"], ["updated_at", "2018-10-16 18:06:14.028084"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 379]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '78ebebe4-65d5-46f5-9a24-b8ffbfaa3267' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_398c1a69' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + SQL (0.5ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "role" = $2, "uuid" = $3, "support_identifier" = $4, "updated_at" = $5 WHERE "openstax_accounts_accounts"."id" = $6 [["username", "user"], ["role", 2], ["uuid", "78ebebe4-65d5-46f5-9a24-b8ffbfaa3267"], ["support_identifier", "cs_398c1a69"], ["updated_at", "2018-10-16 18:06:14.101519"], ["id", 379]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.7ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db6498cd-2677-40bc-a90c-db2645fb40f6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_413601ca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 4], ["username", "fuego"], ["uuid", "db6498cd-2677-40bc-a90c-db2645fb40f6"], ["support_identifier", "cs_413601ca"], ["created_at", "2018-10-16 18:06:14.108132"], ["updated_at", "2018-10-16 18:06:14.108132"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "application_user"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 379]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'user' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '78ebebe4-65d5-46f5-9a24-b8ffbfaa3267' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_398c1a69' AND "openstax_accounts_accounts"."id" != 379) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 4]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 380) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'fuego' AND "openstax_accounts_accounts"."id" != 380) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'db6498cd-2677-40bc-a90c-db2645fb40f6' AND "openstax_accounts_accounts"."id" != 380) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_413601ca' AND "openstax_accounts_accounts"."id" != 380) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 13:06:14 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}], "application_user"=>{"_json"=>[{"user_id"=>2, "read_updates"=>1}, {"user_id"=>4, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 379]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 380]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639475562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e778bd6b1d2f4fe1497b6baeec3b6608' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '337d6e72-0f83-4cc5-b493-2efc466fa092' LIMIT 1 + OpenStax::Accounts::Account Exists (1.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b249a085' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -639475562], ["username", "e778bd6b1d2f4fe1497b6baeec3b6608"], ["access_token", "74c50251330da52be94802564e99abbf"], ["uuid", "337d6e72-0f83-4cc5-b493-2efc466fa092"], ["support_identifier", "cs_b249a085"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.187069"], ["updated_at", "2018-10-16 18:06:14.187069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.6ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639475562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e778bd6b1d2f4fe1497b6baeec3b6608' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '337d6e72-0f83-4cc5-b493-2efc466fa092' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b249a085' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639475562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e778bd6b1d2f4fe1497b6baeec3b6608' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '337d6e72-0f83-4cc5-b493-2efc466fa092' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'CS_B249A085' LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "support_identifier" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["support_identifier", nil], ["updated_at", "2018-10-16 18:06:14.204492"], ["id", 381]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639475562 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'e778bd6b1d2f4fe1497b6baeec3b6608' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '337d6e72-0f83-4cc5-b493-2efc466fa092' LIMIT 1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013233096 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '94fbffd1f9e2fad04ceacacb2a42757f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd8ab0be1-4972-4cd5-8cb4-3d451bdddb3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39ea9480' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2013233096], ["username", "94fbffd1f9e2fad04ceacacb2a42757f"], ["access_token", "ab0759786d41bd504fa19e5fda2d0414"], ["uuid", "d8ab0be1-4972-4cd5-8cb4-3d451bdddb3c"], ["support_identifier", "cs_39ea9480"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.212771"], ["updated_at", "2018-10-16 18:06:14.212771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013233096 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '94fbffd1f9e2fad04ceacacb2a42757f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd8ab0be1-4972-4cd5-8cb4-3d451bdddb3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39ea9480' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013233096 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '94fbffd1f9e2fad04ceacacb2a42757f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'D8AB0BE1-4972-4CD5-8CB4-3D451BDDDB3C' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39ea9480' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -663106990 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '8b5123227f2d05f71f84eaa96b6d21f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b6b0be1e-093d-4cb5-983b-e0b1ad4ca604' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b2c1bf3' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -663106990], ["username", "8b5123227f2d05f71f84eaa96b6d21f8"], ["access_token", "853ea8e6b3c02386c55b1fede3575b46"], ["uuid", "b6b0be1e-093d-4cb5-983b-e0b1ad4ca604"], ["support_identifier", "cs_0b2c1bf3"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.228798"], ["updated_at", "2018-10-16 18:06:14.228798"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -663106990 AND "openstax_accounts_accounts"."id" != 383) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '8b5123227f2d05f71f84eaa96b6d21f8' AND "openstax_accounts_accounts"."id" != 383) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" IS NULL AND "openstax_accounts_accounts"."id" != 383) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_0b2c1bf3' AND "openstax_accounts_accounts"."id" != 383) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2117827968 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '3332f0403d34a3b765e81fce886f572d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '586a0d28-569d-4b1e-b7a7-fad4f7337cd1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c6cdfe96' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -838258964 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '19644a8e-01ed-4ed2-afb6-d4275f510630' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c86cef8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -838258964], ["access_token", "62217f9d25dfe58219d8621d60dbb9b4"], ["uuid", "19644a8e-01ed-4ed2-afb6-d4275f510630"], ["support_identifier", "cs_6c86cef8"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.242846"], ["updated_at", "2018-10-16 18:06:14.242846"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1390704309 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3a6e925c-2a35-4b6c-bf55-d61609c88db9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_138f52c8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", -1390704309], ["access_token", "6f93a696b7b8a6ef8cd4bea45073dcf9"], ["uuid", "3a6e925c-2a35-4b6c-bf55-d61609c88db9"], ["support_identifier", "cs_138f52c8"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.246449"], ["updated_at", "2018-10-16 18:06:14.246449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1269240751 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '1d322c079e7e2887aaf8e753c165c81f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '152e34b4-e41e-4f01-9c60-fb74edc074c7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7520ab84' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1269240751], ["username", "1d322c079e7e2887aaf8e753c165c81f"], ["access_token", "216b47c49cac65a0156c1df7bd2e7a78"], ["uuid", "152e34b4-e41e-4f01-9c60-fb74edc074c7"], ["support_identifier", "cs_7520ab84"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.251907"], ["updated_at", "2018-10-16 18:06:14.251907"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '1d322c079e7e2887aaf8e753c165c81f' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '152e34b4-e41e-4f01-9c60-fb74edc074c7' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_7520ab84' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '1d322c079e7e2887aaf8e753c165c81f' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '152e34b4-e41e-4f01-9c60-fb74edc074c7' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_7520ab84' AND "openstax_accounts_accounts"."id" != 386) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "updated_at" = $2 WHERE "openstax_accounts_accounts"."id" = $3 [["openstax_uid", -1], ["updated_at", "2018-10-16 18:06:14.258901"], ["id", 386]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '018c6457e8870fe2bd42e852fb508824' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ff3a2d54-9949-41fd-82f3-c50e8388e52d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e35663d' LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1243376531 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f9a16a4bf1ebbacd4403eb879f8e4cf1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a1fae6bb-9001-464f-a965-14fdd2c04e59' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39c3b334' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1243376531], ["username", "f9a16a4bf1ebbacd4403eb879f8e4cf1"], ["access_token", "085cdb1133657062c16e016f0eebf4ba"], ["uuid", "a1fae6bb-9001-464f-a965-14fdd2c04e59"], ["support_identifier", "cs_39c3b334"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.267110"], ["updated_at", "2018-10-16 18:06:14.267110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -114615641 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'f9a16a4bf1ebbacd4403eb879f8e4cf1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fd6e2557-2756-45ee-80ff-c2f4704db3f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_752a2025' LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1135106985 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bc6d648a6364e7b2d818a2844ef2e594' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '365c378a-6350-4d5a-adaa-5b1883cbca1f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_77be9ed9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1135106985], ["username", "bc6d648a6364e7b2d818a2844ef2e594"], ["access_token", "c095a4b35f4672cc3ad9187085057ab9"], ["uuid", "365c378a-6350-4d5a-adaa-5b1883cbca1f"], ["support_identifier", "cs_77be9ed9"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.276660"], ["updated_at", "2018-10-16 18:06:14.276660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1135106985 AND "openstax_accounts_accounts"."id" != 388) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '365c378a-6350-4d5a-adaa-5b1883cbca1f' AND "openstax_accounts_accounts"."id" != 388) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_77be9ed9' AND "openstax_accounts_accounts"."id" != 388) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2057120593 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '0a041d04924ad9a7f06f0cc1e12942b7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08965aa0-9291-4489-be28-0d3b1aaef8d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2cc7c12e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2057120593], ["username", "0a041d04924ad9a7f06f0cc1e12942b7"], ["access_token", "1a1f0bbdacd784bffa53ab5a77467597"], ["uuid", "08965aa0-9291-4489-be28-0d3b1aaef8d3"], ["support_identifier", "cs_2cc7c12e"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.283602"], ["updated_at", "2018-10-16 18:06:14.283602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Nil User' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '08965aa0-9291-4489-be28-0d3b1aaef8d3' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2cc7c12e' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", nil], ["username", "Nil User"], ["updated_at", "2018-10-16 18:06:14.287331"], ["id", 389]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 0 AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Zeroth User' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '08965aa0-9291-4489-be28-0d3b1aaef8d3' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2cc7c12e' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 0], ["username", "Zeroth User"], ["updated_at", "2018-10-16 18:06:14.295435"], ["id", 389]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1 AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Negative User' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '08965aa0-9291-4489-be28-0d3b1aaef8d3' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_2cc7c12e' AND "openstax_accounts_accounts"."id" != 389) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", -1], ["username", "Negative User"], ["updated_at", "2018-10-16 18:06:14.299657"], ["id", 389]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -614390083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '3402a89f1566c59df43ec8bb95892caa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2b4855ed-5064-4269-b090-9e637e01ccbc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_78a0826a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -614390083], ["username", "3402a89f1566c59df43ec8bb95892caa"], ["access_token", "46bb69b731f318b480e8859465a6a3cf"], ["uuid", "2b4855ed-5064-4269-b090-9e637e01ccbc"], ["support_identifier", "cs_78a0826a"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.305984"], ["updated_at", "2018-10-16 18:06:14.305984"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 390) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Real User' AND "openstax_accounts_accounts"."id" != 390) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '2b4855ed-5064-4269-b090-9e637e01ccbc' AND "openstax_accounts_accounts"."id" != 390) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_78a0826a' AND "openstax_accounts_accounts"."id" != 390) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Real User"], ["updated_at", "2018-10-16 18:06:14.310180"], ["id", 390]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1762486237 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'c7ed90d1730d3041dd185084f898d870' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89da4338-5b79-4098-b944-b6e816cc001e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d6fa2dc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1762486237], ["username", "c7ed90d1730d3041dd185084f898d870"], ["access_token", "9067ed746e1e7b28556ab04ed828e435"], ["uuid", "89da4338-5b79-4098-b944-b6e816cc001e"], ["support_identifier", "cs_0d6fa2dc"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.315311"], ["updated_at", "2018-10-16 18:06:14.315311"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 391) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Syncing User' AND "openstax_accounts_accounts"."id" != 391) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '89da4338-5b79-4098-b944-b6e816cc001e' AND "openstax_accounts_accounts"."id" != 391) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_0d6fa2dc' AND "openstax_accounts_accounts"."id" != 391) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Syncing User"], ["updated_at", "2018-10-16 18:06:14.319494"], ["id", 391]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1414721626 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '9f7a75123facc2b29179ec1832174ce4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a2358c4f-b63c-4485-bd24-b4a81dffa38d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4fb1c6ad' LIMIT 1 + SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1414721626], ["username", "9f7a75123facc2b29179ec1832174ce4"], ["access_token", "6560e24f07c8586186202b9971c5e9ea"], ["uuid", "a2358c4f-b63c-4485-bd24-b4a81dffa38d"], ["support_identifier", "cs_4fb1c6ad"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.324933"], ["updated_at", "2018-10-16 18:06:14.324933"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 1 AND "openstax_accounts_accounts"."id" != 392) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = 'Stubbed User' AND "openstax_accounts_accounts"."id" != 392) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'a2358c4f-b63c-4485-bd24-b4a81dffa38d' AND "openstax_accounts_accounts"."id" != 392) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_4fb1c6ad' AND "openstax_accounts_accounts"."id" != 392) LIMIT 1 + SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "openstax_uid" = $1, "username" = $2, "updated_at" = $3 WHERE "openstax_accounts_accounts"."id" = $4 [["openstax_uid", 1], ["username", "Stubbed User"], ["updated_at", "2018-10-16 18:06:14.329212"], ["id", 392]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 84987]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 84987 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fa4acd86-84f5-4e2f-a3c3-8bd0242de0a1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06c6b066' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 84987], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "fa4acd86-84f5-4e2f-a3c3-8bd0242de0a1"], ["support_identifier", "cs_06c6b066"], ["created_at", "2018-10-16 18:06:14.340194"], ["updated_at", "2018-10-16 18:06:14.340194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 84987 AND "openstax_accounts_accounts"."id" != 393) LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = 'fa4acd86-84f5-4e2f-a3c3-8bd0242de0a1' AND "openstax_accounts_accounts"."id" != 393) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_06c6b066' AND "openstax_accounts_accounts"."id" != 393) LIMIT 1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9872759]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9872759 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7188c39b-57ea-4ac5-b8b0-c6f5bc0b767f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_70ddcff5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 9872759], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "7188c39b-57ea-4ac5-b8b0-c6f5bc0b767f"], ["support_identifier", "cs_70ddcff5"], ["created_at", "2018-10-16 18:06:14.348401"], ["updated_at", "2018-10-16 18:06:14.348401"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2086442]] + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2086442 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eba6daf4-aa4f-447e-a7ac-775d42f8eaba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_39785850' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 2086442], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "eba6daf4-aa4f-447e-a7ac-775d42f8eaba"], ["support_identifier", "cs_39785850"], ["created_at", "2018-10-16 18:06:14.356317"], ["updated_at", "2018-10-16 18:06:14.356317"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 5407766]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 5407766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8bd9164b-5490-4c75-9a79-402609750d8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26901886' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 5407766], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["school_type", 2], ["uuid", "8bd9164b-5490-4c75-9a79-402609750d8f"], ["support_identifier", "cs_26901886"], ["created_at", "2018-10-16 18:06:14.363352"], ["updated_at", "2018-10-16 18:06:14.363352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9862021]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9862021 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '346c3924-f135-4e77-b2e8-cbdb18d5b83b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d3f2cbba' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 9862021], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "346c3924-f135-4e77-b2e8-cbdb18d5b83b"], ["support_identifier", "cs_d3f2cbba"], ["created_at", "2018-10-16 18:06:14.369257"], ["updated_at", "2018-10-16 18:06:14.369257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -605589271 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '63d50a7433748ec4571085cbb211cdfe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'abf1f660-a3cd-4157-8914-41eb2c4e2e88' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_358da7ee' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -605589271], ["username", "63d50a7433748ec4571085cbb211cdfe"], ["access_token", "defa0d405b2300f9d4b745ba6acd2868"], ["uuid", "abf1f660-a3cd-4157-8914-41eb2c4e2e88"], ["support_identifier", "cs_358da7ee"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.375277"], ["updated_at", "2018-10-16 18:06:14.375277"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", -605589271]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -605589271 AND "openstax_accounts_accounts"."id" != 398) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" = '191919' AND "openstax_accounts_accounts"."id" != 398) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '8d91a176-5684-47ac-b9c5-1abf682ea59a' AND "openstax_accounts_accounts"."id" != 398) LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_398b347c' AND "openstax_accounts_accounts"."id" != 398) LIMIT 1 + SQL (1.0ms) UPDATE "openstax_accounts_accounts" SET "username" = $1, "first_name" = $2, "last_name" = $3, "title" = $4, "access_token" = $5, "faculty_status" = $6, "role" = $7, "uuid" = $8, "support_identifier" = $9, "is_test" = $10, "updated_at" = $11 WHERE "openstax_accounts_accounts"."id" = $12 [["username", "191919"], ["first_name", "1234"], ["last_name", "5678"], ["title", "900"], ["access_token", nil], ["faculty_status", 2], ["role", 2], ["uuid", "8d91a176-5684-47ac-b9c5-1abf682ea59a"], ["support_identifier", "cs_398b347c"], ["is_test", nil], ["updated_at", "2018-10-16 18:06:14.380523"], ["id", 398]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = $1 LIMIT 1 [["id", 398]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 374547]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 374547 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1ce3522f-5bba-4465-8b59-4df4ef964d1d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ed79dbc' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 374547], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "1ce3522f-5bba-4465-8b59-4df4ef964d1d"], ["support_identifier", "cs_3ed79dbc"], ["created_at", "2018-10-16 18:06:14.388308"], ["updated_at", "2018-10-16 18:06:14.388308"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.2ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 5699416]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 5699416 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f43f88ce-8ebf-44bb-b189-0e19bd838ea1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6081b683' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 5699416], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "f43f88ce-8ebf-44bb-b189-0e19bd838ea1"], ["support_identifier", "cs_6081b683"], ["created_at", "2018-10-16 18:06:14.398754"], ["updated_at", "2018-10-16 18:06:14.398754"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 9729249]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 9729249 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47235797-d512-41f3-9626-c32556ea11a1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_512efe2d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", 9729249], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["role", 2], ["uuid", "47235797-d512-41f3-9626-c32556ea11a1"], ["support_identifier", "cs_512efe2d"], ["created_at", "2018-10-16 18:06:14.404754"], ["updated_at", "2018-10-16 18:06:14.404754"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2162968]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2162968 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '136fe75e-9a6b-4669-b776-84cbc7a1f071' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c4e5477' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "title", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["openstax_uid", 2162968], ["username", ""], ["first_name", ""], ["last_name", ""], ["title", ""], ["uuid", "136fe75e-9a6b-4669-b776-84cbc7a1f071"], ["support_identifier", "cs_9c4e5477"], ["created_at", "2018-10-16 18:06:14.411066"], ["updated_at", "2018-10-16 18:06:14.411066"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 18]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "ca5098"]] + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 18 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'ca5098' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c5c819f-d9d9-46e7-98b9-d737fc0f13fe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f3b305b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "role", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["openstax_uid", 18], ["username", "ca5098"], ["role", 2], ["uuid", "8c5c819f-d9d9-46e7-98b9-d737fc0f13fe"], ["support_identifier", "cs_6f3b305b"], ["created_at", "2018-10-16 18:06:14.431187"], ["updated_at", "2018-10-16 18:06:14.431187"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 19]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice"]] + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 19 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c1ebaa86-b8ef-4100-9213-a16ca741d47f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_edc0b069' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 19], ["username", "alice"], ["uuid", "c1ebaa86-b8ef-4100-9213-a16ca741d47f"], ["support_identifier", "cs_edc0b069"], ["created_at", "2018-10-16 18:06:14.444699"], ["updated_at", "2018-10-16 18:06:14.444699"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 20]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "alice2"]] + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 20 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '76c36a75-5b5a-4dbd-8800-5c1916c6f1f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bccb058a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["openstax_uid", 20], ["username", "alice2"], ["uuid", "76c36a75-5b5a-4dbd-8800-5c1916c6f1f2"], ["support_identifier", "cs_bccb058a"], ["created_at", "2018-10-16 18:06:14.453763"], ["updated_at", "2018-10-16 18:06:14.453763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 1]] + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "df9c17"]] + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'df9c17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57640b34-75f8-401f-b74f-066f06f90daf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1284bd50' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "full_name", "salesforce_contact_id", "faculty_status", "role", "school_type", "uuid", "support_identifier", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) RETURNING "id" [["openstax_uid", 1], ["username", "df9c17"], ["first_name", "Bob"], ["last_name", "Smith"], ["full_name", "Bob Smith"], ["salesforce_contact_id", "b0b"], ["faculty_status", 3], ["role", 2], ["school_type", 2], ["uuid", "57640b34-75f8-401f-b74f-066f06f90daf"], ["support_identifier", "cs_1284bd50"], ["created_at", "2018-10-16 18:06:14.465323"], ["updated_at", "2018-10-16 18:06:14.465323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -989453344 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '2a3ebe2454572789f741451999f3ff19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ff268ac-39a0-46c8-9eb6-65c373497490' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8761a30c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -989453344], ["username", "2a3ebe2454572789f741451999f3ff19"], ["access_token", "0f264dcb3ddc52fdedd3f27ec33ed41b"], ["uuid", "3ff268ac-39a0-46c8-9eb6-65c373497490"], ["support_identifier", "cs_8761a30c"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.471511"], ["updated_at", "2018-10-16 18:06:14.471511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 407 AND "openstax_accounts_group_owners"."group_id" = -648574481) LIMIT 1 + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", -648574481]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 407 AND "openstax_accounts_group_owners"."group_id" = -648574481) LIMIT 1 + OpenStax::Accounts::Group Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -648574481 LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_groups" ("name", "is_public", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "Test"], ["is_public", "t"], ["openstax_uid", -648574481], ["created_at", "2018-10-16 18:06:14.486545"], ["updated_at", "2018-10-16 18:06:14.486545"]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 407 AND "openstax_accounts_group_owners"."group_id" = -648574481) LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -648574481], ["user_id", -989453344], ["created_at", "2018-10-16 18:06:14.488844"], ["updated_at", "2018-10-16 18:06:14.488844"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["group_id", -648574481]] + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 LIMIT 1 [["group_id", -648574481]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2018-10-16 18:06:14.500827"], ["updated_at", "2018-10-16 18:06:14.500827"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -939290628 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '8f783c7dbf7b2b3749a8f80e2a2024e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd2965833-e05a-4ec4-93c2-14a1576946f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1d2fbdca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -939290628], ["username", "8f783c7dbf7b2b3749a8f80e2a2024e3"], ["access_token", "411b73893a6215b168e371cd5e517706"], ["uuid", "d2965833-e05a-4ec4-93c2-14a1576946f0"], ["support_identifier", "cs_1d2fbdca"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.507954"], ["updated_at", "2018-10-16 18:06:14.507954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -940412739 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '7b919a888b568ee3b6c901fc42d2eb00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1567ef94-ce44-464f-8f7a-72490a66a66b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_98a3c500' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -940412739], ["username", "7b919a888b568ee3b6c901fc42d2eb00"], ["access_token", "02d5d0ebbfbc4d3cae9d16439b5db7a9"], ["uuid", "1567ef94-ce44-464f-8f7a-72490a66a66b"], ["support_identifier", "cs_98a3c500"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.513908"], ["updated_at", "2018-10-16 18:06:14.513908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2088188715 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -2088188715], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:14.517104"], ["updated_at", "2018-10-16 18:06:14.517104"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1556955252 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'cb850c1728ed3594be555ffeb2ca724f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '966a4e5c-a624-4133-9126-5a5433dc62bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6b52f60a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1556955252], ["username", "cb850c1728ed3594be555ffeb2ca724f"], ["access_token", "df4ad3d32b45e0169756cb71f52c2602"], ["uuid", "966a4e5c-a624-4133-9126-5a5433dc62bb"], ["support_identifier", "cs_6b52f60a"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:14.521912"], ["updated_at", "2018-10-16 18:06:14.521912"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1315424260 LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1315424260], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:14.527594"], ["updated_at", "2018-10-16 18:06:14.527594"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1997962283 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0a31093-816c-4d92-ae89-0b673bd2ec1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b732f184' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1997962283], ["username", "jstrav"], ["access_token", "aa406c796809a47bd07ca6e8b5c186f6"], ["uuid", "c0a31093-816c-4d92-ae89-0b673bd2ec1e"], ["support_identifier", "cs_b732f184"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:14.533367"], ["updated_at", "2018-10-16 18:06:14.533367"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -963823715 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '659f80dd-bbc9-4f0c-8fd7-a27c3e4960c3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3125a2b5' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -963823715], ["username", "mary"], ["access_token", "d58423ca1bd4cb4c5fc05153bef0210a"], ["uuid", "659f80dd-bbc9-4f0c-8fd7-a27c3e4960c3"], ["support_identifier", "cs_3125a2b5"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:14.538434"], ["updated_at", "2018-10-16 18:06:14.538434"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -963129367 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '16e4674b-8f30-4177-855a-569a2edee34c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5297b48f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -963129367], ["username", "jstead"], ["access_token", "7f587911a7b15333afb170b6bec14c4e"], ["uuid", "16e4674b-8f30-4177-855a-569a2edee34c"], ["support_identifier", "cs_5297b48f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:14.542684"], ["updated_at", "2018-10-16 18:06:14.542684"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -965782542 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0a1e8bf-61d2-49f2-912b-9390ef0d1d34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_16526a93' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -965782542], ["username", "bigbear"], ["access_token", "c6432a67e7888ab2ab116cd1970e3c3a"], ["uuid", "d0a1e8bf-61d2-49f2-912b-9390ef0d1d34"], ["support_identifier", "cs_16526a93"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:14.546847"], ["updated_at", "2018-10-16 18:06:14.546847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1756030857 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '63257418-444a-47f6-b375-6631cc23cad3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f07210b1' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1756030857], ["username", "billy_00"], ["access_token", "555431f48d6d8154cc90006496b45926"], ["uuid", "63257418-444a-47f6-b375-6631cc23cad3"], ["support_identifier", "cs_f07210b1"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 18:06:14.551392"], ["updated_at", "2018-10-16 18:06:14.551392"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -123312290 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '97365c63-d28a-4b8f-9fdc-e1c39dd0d1d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d60fbbc1' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -123312290], ["username", "billy_01"], ["access_token", "1c6090b8e47161b18ec5ea3ff8fd0d86"], ["uuid", "97365c63-d28a-4b8f-9fdc-e1c39dd0d1d6"], ["support_identifier", "cs_d60fbbc1"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 18:06:14.556475"], ["updated_at", "2018-10-16 18:06:14.556475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1667677433 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '19d4b8d5-653f-43d5-81e7-0fb6003dd320' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f5fa6ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1667677433], ["username", "billy_02"], ["access_token", "e59caf3f89375f7ae997a2f87d51837c"], ["uuid", "19d4b8d5-653f-43d5-81e7-0fb6003dd320"], ["support_identifier", "cs_2f5fa6ee"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 18:06:14.561443"], ["updated_at", "2018-10-16 18:06:14.561443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -412069836 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c3a8a1ba-1cea-4136-9b62-0a6d3747110e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f1998e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -412069836], ["username", "billy_03"], ["access_token", "f29d2b2857f7996045ee1ea3dbec5d6a"], ["uuid", "c3a8a1ba-1cea-4136-9b62-0a6d3747110e"], ["support_identifier", "cs_2f1998e5"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 18:06:14.565943"], ["updated_at", "2018-10-16 18:06:14.565943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1440107017 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '49411052-3196-4c92-8cb2-fb6d58d138c4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9c0c052' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1440107017], ["username", "billy_04"], ["access_token", "068f9326d6707994dafcf50736b82eb7"], ["uuid", "49411052-3196-4c92-8cb2-fb6d58d138c4"], ["support_identifier", "cs_c9c0c052"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:14.570162"], ["updated_at", "2018-10-16 18:06:14.570162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -67317325 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '27cb3c59-d5ca-48c1-bbd2-045700526544' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e1436f26' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -67317325], ["username", "billy_05"], ["access_token", "1b47cf70f42eecc978137caa2ec6b700"], ["uuid", "27cb3c59-d5ca-48c1-bbd2-045700526544"], ["support_identifier", "cs_e1436f26"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:14.574382"], ["updated_at", "2018-10-16 18:06:14.574382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1889453870 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2c843348-06e1-42ad-8621-4c4000f48375' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b789a224' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1889453870], ["username", "billy_06"], ["access_token", "dc4faac1f70dd18d29108c38d25f6c97"], ["uuid", "2c843348-06e1-42ad-8621-4c4000f48375"], ["support_identifier", "cs_b789a224"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:14.580244"], ["updated_at", "2018-10-16 18:06:14.580244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1962000269 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c616aac3-dd0c-4b44-9ddc-40d01a7bfaf2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_14e80bde' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1962000269], ["username", "billy_07"], ["access_token", "c243b78cf85d09dc8361b02744155c3b"], ["uuid", "c616aac3-dd0c-4b44-9ddc-40d01a7bfaf2"], ["support_identifier", "cs_14e80bde"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:14.584623"], ["updated_at", "2018-10-16 18:06:14.584623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474468841 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'af1fa352-e313-4d59-a9f9-1ad557ae4682' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9731a023' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -474468841], ["username", "billy_08"], ["access_token", "1b6883334a39ef5cd0c1fb145dc535c6"], ["uuid", "af1fa352-e313-4d59-a9f9-1ad557ae4682"], ["support_identifier", "cs_9731a023"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:14.589230"], ["updated_at", "2018-10-16 18:06:14.589230"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1260396607 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0dfafad0-90ec-4a68-9979-684e933a299d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1aa503f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1260396607], ["username", "billy_09"], ["access_token", "8bf60c7a1ac4debf3a154e016899cc89"], ["uuid", "0dfafad0-90ec-4a68-9979-684e933a299d"], ["support_identifier", "cs_1aa503f1"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:14.593488"], ["updated_at", "2018-10-16 18:06:14.593488"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2056547450 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '26fd76b7-41e4-4356-b0c7-c777f0bdc0a4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2630aebf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2056547450], ["username", "billy_10"], ["access_token", "68ff0defffd0e6861667d12c67479fd7"], ["uuid", "26fd76b7-41e4-4356-b0c7-c777f0bdc0a4"], ["support_identifier", "cs_2630aebf"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:14.597585"], ["updated_at", "2018-10-16 18:06:14.597585"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1355918125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '149f16c3-283a-4968-a018-19132ed9e2c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_edebc3cc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1355918125], ["username", "billy_11"], ["access_token", "b884f491af207154281ae5285f41c8ac"], ["uuid", "149f16c3-283a-4968-a018-19132ed9e2c0"], ["support_identifier", "cs_edebc3cc"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:14.601704"], ["updated_at", "2018-10-16 18:06:14.601704"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1263245950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ef8258d-956d-4873-ad96-765f25d2c692' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_292eea4c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1263245950], ["username", "billy_12"], ["access_token", "9092ba8bffb8c0b087fc6ce162cd0204"], ["uuid", "4ef8258d-956d-4873-ad96-765f25d2c692"], ["support_identifier", "cs_292eea4c"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:14.609847"], ["updated_at", "2018-10-16 18:06:14.609847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -568382560 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd197125e-73a5-43a4-8e4c-3406a4c78ac5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4ffee934' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -568382560], ["username", "billy_13"], ["access_token", "0eded72ee0326c7d6e448981aca8bbf3"], ["uuid", "d197125e-73a5-43a4-8e4c-3406a4c78ac5"], ["support_identifier", "cs_4ffee934"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:14.614567"], ["updated_at", "2018-10-16 18:06:14.614567"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1831765533 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '53ccdde4-b04e-41ba-ad45-0d82c84b62fd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9df6fa70' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1831765533], ["username", "billy_14"], ["access_token", "9e66bb35ec0bc350314297fe0bab367e"], ["uuid", "53ccdde4-b04e-41ba-ad45-0d82c84b62fd"], ["support_identifier", "cs_9df6fa70"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:14.618814"], ["updated_at", "2018-10-16 18:06:14.618814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1887354637 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9840e1ff-4c68-486d-8473-09120ad2c663' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_316f77ac' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1887354637], ["username", "billy_15"], ["access_token", "3c12a9df157775067f9312f44fb73a6b"], ["uuid", "9840e1ff-4c68-486d-8473-09120ad2c663"], ["support_identifier", "cs_316f77ac"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:14.623828"], ["updated_at", "2018-10-16 18:06:14.623828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -553255165 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6fcad265-fdf2-4fda-aa27-4b117defea80' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_32c7fe18' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -553255165], ["username", "billy_16"], ["access_token", "ee654a7b81ad09885fe28b59a8dda8b2"], ["uuid", "6fcad265-fdf2-4fda-aa27-4b117defea80"], ["support_identifier", "cs_32c7fe18"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:14.628000"], ["updated_at", "2018-10-16 18:06:14.628000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1248584226 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a5ef3a9a-a5b9-4760-b069-380b2a37b85c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e14bfd5c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1248584226], ["username", "billy_17"], ["access_token", "82d3d0b064e7fef3fbf681c3763e04a0"], ["uuid", "a5ef3a9a-a5b9-4760-b069-380b2a37b85c"], ["support_identifier", "cs_e14bfd5c"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:14.632173"], ["updated_at", "2018-10-16 18:06:14.632173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1582079124 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '25fcfd2a-9818-40f7-addd-6b7017609407' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1a6f3561' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1582079124], ["username", "billy_18"], ["access_token", "415bc9da3898b0ed3467b024a6251e41"], ["uuid", "25fcfd2a-9818-40f7-addd-6b7017609407"], ["support_identifier", "cs_1a6f3561"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:14.636623"], ["updated_at", "2018-10-16 18:06:14.636623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -186063003 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'db01b086-a3c7-4dc7-b4e8-5b523e58b66a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_18b4f6bd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -186063003], ["username", "billy_19"], ["access_token", "faff185893580653741be2b591135765"], ["uuid", "db01b086-a3c7-4dc7-b4e8-5b523e58b66a"], ["support_identifier", "cs_18b4f6bd"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:14.641064"], ["updated_at", "2018-10-16 18:06:14.641064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -662791877 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '78192923-e5dd-4bac-b8c3-b11c24145659' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c386374' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -662791877], ["username", "billy_20"], ["access_token", "95050aaa96f7cef0815da9fda1a46f63"], ["uuid", "78192923-e5dd-4bac-b8c3-b11c24145659"], ["support_identifier", "cs_9c386374"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:14.645354"], ["updated_at", "2018-10-16 18:06:14.645354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1826505881 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '65048f0c-9ccb-4acf-97f8-c471ecbc02f2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d53426f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1826505881], ["username", "billy_21"], ["access_token", "a079a79a44794079022df9b9da4da84c"], ["uuid", "65048f0c-9ccb-4acf-97f8-c471ecbc02f2"], ["support_identifier", "cs_4d53426f"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:14.649471"], ["updated_at", "2018-10-16 18:06:14.649471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -631867768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7923e4a6-a213-4268-a80f-6c9b12f02c7a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6e10f3de' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -631867768], ["username", "billy_22"], ["access_token", "6de778622e572ce7b31ae472e813c3f2"], ["uuid", "7923e4a6-a213-4268-a80f-6c9b12f02c7a"], ["support_identifier", "cs_6e10f3de"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:14.658107"], ["updated_at", "2018-10-16 18:06:14.658107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -971366878 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a4dc409e-b15b-4d4b-9839-a7c0ccc90d4a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15a19f89' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -971366878], ["username", "billy_23"], ["access_token", "bbe6e787d477bb1417512c59fbb066a3"], ["uuid", "a4dc409e-b15b-4d4b-9839-a7c0ccc90d4a"], ["support_identifier", "cs_15a19f89"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:14.662873"], ["updated_at", "2018-10-16 18:06:14.662873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -35972877 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2b2b9ddf-f5bd-451c-a4ba-905f0af12ba2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1cf74fca' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -35972877], ["username", "billy_24"], ["access_token", "1a2da2d769b04e0447d007f4b562f5c0"], ["uuid", "2b2b9ddf-f5bd-451c-a4ba-905f0af12ba2"], ["support_identifier", "cs_1cf74fca"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:14.667129"], ["updated_at", "2018-10-16 18:06:14.667129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2072085429 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '715f9917-017b-44f9-ae07-0b34fbb001cb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb55921c' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2072085429], ["username", "billy_25"], ["access_token", "dc40bfeedb26185ee71485da6045c657"], ["uuid", "715f9917-017b-44f9-ae07-0b34fbb001cb"], ["support_identifier", "cs_cb55921c"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:14.675830"], ["updated_at", "2018-10-16 18:06:14.675830"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1495515402 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2ea5f38c-3b23-4d44-b1b7-89cd29f27858' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9242e736' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1495515402], ["username", "billy_26"], ["access_token", "d9faffdcb394da2252b59b02cfb4fbaf"], ["uuid", "2ea5f38c-3b23-4d44-b1b7-89cd29f27858"], ["support_identifier", "cs_9242e736"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:14.680170"], ["updated_at", "2018-10-16 18:06:14.680170"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -983669539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea12dbf7-7976-4df7-af40-a3f7e4d4627b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_79e9778b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -983669539], ["username", "billy_27"], ["access_token", "aad5818de578844cc45bff96e343ffdf"], ["uuid", "ea12dbf7-7976-4df7-af40-a3f7e4d4627b"], ["support_identifier", "cs_79e9778b"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:14.684192"], ["updated_at", "2018-10-16 18:06:14.684192"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -132646291 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e71ac86-eda3-4be8-9103-e72281eed18b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9c5168eb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -132646291], ["username", "billy_28"], ["access_token", "741d5af83dba781f31994e7f7a26080d"], ["uuid", "2e71ac86-eda3-4be8-9103-e72281eed18b"], ["support_identifier", "cs_9c5168eb"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:14.688363"], ["updated_at", "2018-10-16 18:06:14.688363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -319517565 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d5a7ab6-61f8-4ee8-9213-b2723797bfed' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f38b2374' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -319517565], ["username", "billy_29"], ["access_token", "e89beea261441501ba4a2627b0e86eb0"], ["uuid", "8d5a7ab6-61f8-4ee8-9213-b2723797bfed"], ["support_identifier", "cs_f38b2374"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:14.695220"], ["updated_at", "2018-10-16 18:06:14.695220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647204259 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd67d07fa-fa76-4633-9f8c-547da034b4c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_660484fa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -647204259], ["username", "billy_30"], ["access_token", "a6b803a356fff98b969a0543c0d36994"], ["uuid", "d67d07fa-fa76-4633-9f8c-547da034b4c8"], ["support_identifier", "cs_660484fa"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:14.699713"], ["updated_at", "2018-10-16 18:06:14.699713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141413280 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4db986bf-f1ce-4f4d-bd58-f6620fd75fbb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_61c36879' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1141413280], ["username", "billy_31"], ["access_token", "5595caf13a6a5bc624226af8120b7b32"], ["uuid", "4db986bf-f1ce-4f4d-bd58-f6620fd75fbb"], ["support_identifier", "cs_61c36879"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:14.704504"], ["updated_at", "2018-10-16 18:06:14.704504"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1462949096 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a6e6ed0c-d4a0-412f-a4e6-1fbb57dacb3b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0588a19d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1462949096], ["username", "billy_32"], ["access_token", "0e9871bfeb991b70d99b67c8b1dd5b5b"], ["uuid", "a6e6ed0c-d4a0-412f-a4e6-1fbb57dacb3b"], ["support_identifier", "cs_0588a19d"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:14.708889"], ["updated_at", "2018-10-16 18:06:14.708889"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -836852520 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '585fe8a1-b83f-4574-8381-617dfaaff212' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0d2141ae' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -836852520], ["username", "billy_33"], ["access_token", "aeee50c13cb13e52d84bfb4e3303ec33"], ["uuid", "585fe8a1-b83f-4574-8381-617dfaaff212"], ["support_identifier", "cs_0d2141ae"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:14.713097"], ["updated_at", "2018-10-16 18:06:14.713097"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -578594905 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54e725b0-7cb0-4d60-ad8a-c3e54b557833' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d97eee97' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -578594905], ["username", "billy_34"], ["access_token", "aba5c01d2d0b15a0da58df9096379f26"], ["uuid", "54e725b0-7cb0-4d60-ad8a-c3e54b557833"], ["support_identifier", "cs_d97eee97"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:14.717212"], ["updated_at", "2018-10-16 18:06:14.717212"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1378965871 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '122a5bfb-3ab0-4fac-b558-5275c4f51c8c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d7c1cd1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1378965871], ["username", "billy_35"], ["access_token", "6be77d917cc543c6db45d954046c30e3"], ["uuid", "122a5bfb-3ab0-4fac-b558-5275c4f51c8c"], ["support_identifier", "cs_5d7c1cd1"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:14.721707"], ["updated_at", "2018-10-16 18:06:14.721707"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1594787883 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2cadcf24-6cfb-4e94-8795-bacd38430222' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b4c3f5b0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1594787883], ["username", "billy_36"], ["access_token", "e0a4967eef6b4ee009779f9eb29ef445"], ["uuid", "2cadcf24-6cfb-4e94-8795-bacd38430222"], ["support_identifier", "cs_b4c3f5b0"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:14.726342"], ["updated_at", "2018-10-16 18:06:14.726342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2127971281 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7a969db0-d186-4eb9-9314-6476e568fa40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ff57bb44' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2127971281], ["username", "billy_37"], ["access_token", "726d8ac53222a0efa16e42dc3aca6cd6"], ["uuid", "7a969db0-d186-4eb9-9314-6476e568fa40"], ["support_identifier", "cs_ff57bb44"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:14.730446"], ["updated_at", "2018-10-16 18:06:14.730446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1824271801 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '06a583ea-a5dd-4e4e-a5e1-a5b8986eeb02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4b6bb4ac' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1824271801], ["username", "billy_38"], ["access_token", "ac390cf37fad6bde705e8ed3b2e082a2"], ["uuid", "06a583ea-a5dd-4e4e-a5e1-a5b8986eeb02"], ["support_identifier", "cs_4b6bb4ac"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:14.734606"], ["updated_at", "2018-10-16 18:06:14.734606"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1887731003 LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '013701d4-902f-4758-8496-bcb84e596abe' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3b2aa02' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1887731003], ["username", "billy_39"], ["access_token", "1f46b64847a6684b368e27e5131ef7d3"], ["uuid", "013701d4-902f-4758-8496-bcb84e596abe"], ["support_identifier", "cs_c3b2aa02"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:14.741517"], ["updated_at", "2018-10-16 18:06:14.741517"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -719886198 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b5917869-5aff-4861-8cdd-5aa7daaaffb8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_35d6dfa1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -719886198], ["username", "billy_40"], ["access_token", "a725c15058a566459a5c2d6ad7390497"], ["uuid", "b5917869-5aff-4861-8cdd-5aa7daaaffb8"], ["support_identifier", "cs_35d6dfa1"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:14.746169"], ["updated_at", "2018-10-16 18:06:14.746169"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1089943880 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e49cc04-62ee-4d4d-ba8f-e35838d45a2e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d4a07bf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1089943880], ["username", "billy_41"], ["access_token", "7e4f66a0765a6383b844ae2da2583bc4"], ["uuid", "5e49cc04-62ee-4d4d-ba8f-e35838d45a2e"], ["support_identifier", "cs_7d4a07bf"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:14.750296"], ["updated_at", "2018-10-16 18:06:14.750296"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1344352402 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '77ee7db5-63dc-45eb-9b9e-a146c5f832c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d993a293' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1344352402], ["username", "billy_42"], ["access_token", "a9cf17e55f68a59979158b93db04373a"], ["uuid", "77ee7db5-63dc-45eb-9b9e-a146c5f832c8"], ["support_identifier", "cs_d993a293"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:14.755436"], ["updated_at", "2018-10-16 18:06:14.755436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1209624154 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d6f50be-a6cf-4d43-9324-162d953dae76' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_de546f88' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1209624154], ["username", "billy_43"], ["access_token", "95ba47c0dc1ec3844dc6288f56e36e53"], ["uuid", "6d6f50be-a6cf-4d43-9324-162d953dae76"], ["support_identifier", "cs_de546f88"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:14.759758"], ["updated_at", "2018-10-16 18:06:14.759758"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -447414960 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '96361f51-e25d-42bc-97ce-ef1a7d03f498' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_97719151' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -447414960], ["username", "billy_44"], ["access_token", "db62c974712fd62e65659529ac753f14"], ["uuid", "96361f51-e25d-42bc-97ce-ef1a7d03f498"], ["support_identifier", "cs_97719151"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:14.764018"], ["updated_at", "2018-10-16 18:06:14.764018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1906228833 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1e44752-07ab-4e94-bb6b-79a36a5e40f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b984261a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1906228833], ["username", "billy_45"], ["access_token", "50aa35766b82286225d2886b8e506464"], ["uuid", "d1e44752-07ab-4e94-bb6b-79a36a5e40f0"], ["support_identifier", "cs_b984261a"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:14.768094"], ["updated_at", "2018-10-16 18:06:14.768094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1313808404 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ba2dfeb-2200-4d45-8496-12f30b2088aa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_363866b4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1313808404], ["username", "billy_46"], ["access_token", "5bbfaf60b681cabad9666b5327252a74"], ["uuid", "3ba2dfeb-2200-4d45-8496-12f30b2088aa"], ["support_identifier", "cs_363866b4"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:14.772889"], ["updated_at", "2018-10-16 18:06:14.772889"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1571382758 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '043fce7b-b816-4da1-8de8-d7a43eb98af4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_863e3e6a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1571382758], ["username", "billy_47"], ["access_token", "1ff626cc91d033624909c88b1fc2dc34"], ["uuid", "043fce7b-b816-4da1-8de8-d7a43eb98af4"], ["support_identifier", "cs_863e3e6a"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:14.777438"], ["updated_at", "2018-10-16 18:06:14.777438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -723902376 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '674081cb-829e-432f-8b40-26aa0479d1d9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f101aa5f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -723902376], ["username", "billy_48"], ["access_token", "189c8a7c8f508ab662efbde20fff9d01"], ["uuid", "674081cb-829e-432f-8b40-26aa0479d1d9"], ["support_identifier", "cs_f101aa5f"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:14.781500"], ["updated_at", "2018-10-16 18:06:14.781500"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1446514640 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29228150-efa1-43ff-ad35-ec3397516f00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09d6d940' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1446514640], ["username", "billy_49"], ["access_token", "012cad9dc50857eda2617ace719236ad"], ["uuid", "29228150-efa1-43ff-ad35-ec3397516f00"], ["support_identifier", "cs_09d6d940"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:14.785562"], ["updated_at", "2018-10-16 18:06:14.785562"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') + OpenStax::Accounts::Account Load (0.8ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185177059 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '52d6e4c6-1560-4835-a1a7-dcf58a7121e6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7160dc63' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1185177059], ["username", "jstrav"], ["access_token", "beafca0c3de5d9c65cbcc42cc888a8aa"], ["uuid", "52d6e4c6-1560-4835-a1a7-dcf58a7121e6"], ["support_identifier", "cs_7160dc63"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:14.796306"], ["updated_at", "2018-10-16 18:06:14.796306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -580734976 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3271a73b-9ed8-4ec8-81a3-35c86f928a6f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5cc9dbda' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -580734976], ["username", "mary"], ["access_token", "dcf89f66fe870a909004ed107e38ce79"], ["uuid", "3271a73b-9ed8-4ec8-81a3-35c86f928a6f"], ["support_identifier", "cs_5cc9dbda"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:14.800750"], ["updated_at", "2018-10-16 18:06:14.800750"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -652712497 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '389e40c7-8fdc-429d-b518-53118256e12e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_908783f7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -652712497], ["username", "jstead"], ["access_token", "122ec4caee2691b4f6651c4a45619f5d"], ["uuid", "389e40c7-8fdc-429d-b518-53118256e12e"], ["support_identifier", "cs_908783f7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:14.805513"], ["updated_at", "2018-10-16 18:06:14.805513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1204248718 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d4092b5-49ce-4229-984e-6996e4895919' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b3a2385b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1204248718], ["username", "bigbear"], ["access_token", "43da9300e83f53477ff09c9f1aa7fab4"], ["uuid", "0d4092b5-49ce-4229-984e-6996e4895919"], ["support_identifier", "cs_b3a2385b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:14.809721"], ["updated_at", "2018-10-16 18:06:14.809721"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -818527069 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '085c6315-544b-45f8-a905-d0c84818781b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_271eb73f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -818527069], ["username", "billy_00"], ["access_token", "6a534fabe3faf8a8a6cae607d25d9498"], ["uuid", "085c6315-544b-45f8-a905-d0c84818781b"], ["support_identifier", "cs_271eb73f"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2018-10-16 18:06:14.813827"], ["updated_at", "2018-10-16 18:06:14.813827"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1511462388 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0d550fe9-ad9c-4ec4-898d-b20c3c48a335' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e215708' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1511462388], ["username", "billy_01"], ["access_token", "784246f7a6a248260b5958f6e942ac74"], ["uuid", "0d550fe9-ad9c-4ec4-898d-b20c3c48a335"], ["support_identifier", "cs_3e215708"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2018-10-16 18:06:14.818113"], ["updated_at", "2018-10-16 18:06:14.818113"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -857501699 LIMIT 1 + OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '03d9ec9c-f433-4e51-b2f5-df7ee6a24aa4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1c829eb7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -857501699], ["username", "billy_02"], ["access_token", "f082c0ec6425cdb60cba51b92677e2d3"], ["uuid", "03d9ec9c-f433-4e51-b2f5-df7ee6a24aa4"], ["support_identifier", "cs_1c829eb7"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2018-10-16 18:06:14.826228"], ["updated_at", "2018-10-16 18:06:14.826228"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563648411 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0844b297-e6d1-496e-9609-4fd4ecde2422' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e57ce9e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1563648411], ["username", "billy_03"], ["access_token", "1dc79bd7d7b7daff15607b3fa3451b67"], ["uuid", "0844b297-e6d1-496e-9609-4fd4ecde2422"], ["support_identifier", "cs_3e57ce9e"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2018-10-16 18:06:14.831058"], ["updated_at", "2018-10-16 18:06:14.831058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1912038891 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bdf0a2fe-08e7-47ff-963b-fec6d8ab97ef' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5548d8c0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1912038891], ["username", "billy_04"], ["access_token", "f0d553dd91b17700467725d3d04d1693"], ["uuid", "bdf0a2fe-08e7-47ff-963b-fec6d8ab97ef"], ["support_identifier", "cs_5548d8c0"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:14.835409"], ["updated_at", "2018-10-16 18:06:14.835409"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -711770282 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eef8281a-72f9-46f5-bbac-f03ecd398bd7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9323be59' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -711770282], ["username", "billy_05"], ["access_token", "79c52034a61d58b79eb32b4011dac247"], ["uuid", "eef8281a-72f9-46f5-bbac-f03ecd398bd7"], ["support_identifier", "cs_9323be59"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:14.840449"], ["updated_at", "2018-10-16 18:06:14.840449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -837761263 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '851abe72-00ec-4c74-bf5f-6aaec21152f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a3a5d980' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -837761263], ["username", "billy_06"], ["access_token", "782ea977a90bc9115718fef2b67c52cb"], ["uuid", "851abe72-00ec-4c74-bf5f-6aaec21152f4"], ["support_identifier", "cs_a3a5d980"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:14.844691"], ["updated_at", "2018-10-16 18:06:14.844691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -62000765 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ff4e6df-bb1e-4cc2-a9f6-f9c231ba318b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b79726e2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -62000765], ["username", "billy_07"], ["access_token", "b70be8b25cea68a52f8adc7091cc0052"], ["uuid", "4ff4e6df-bb1e-4cc2-a9f6-f9c231ba318b"], ["support_identifier", "cs_b79726e2"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:14.848814"], ["updated_at", "2018-10-16 18:06:14.848814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -289481421 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'af06edf4-7ef3-49f5-8c22-a9f6935933c0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_578d4214' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -289481421], ["username", "billy_08"], ["access_token", "f5a05e96d87b2799a3b7678dfb6553f3"], ["uuid", "af06edf4-7ef3-49f5-8c22-a9f6935933c0"], ["support_identifier", "cs_578d4214"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:14.853894"], ["updated_at", "2018-10-16 18:06:14.853894"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -449827020 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '42981d75-b225-4e58-bb9e-5d77ee95be9f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_99ad0c54' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -449827020], ["username", "billy_09"], ["access_token", "91e582bf91a6923668ad62dedcc5086c"], ["uuid", "42981d75-b225-4e58-bb9e-5d77ee95be9f"], ["support_identifier", "cs_99ad0c54"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:14.858220"], ["updated_at", "2018-10-16 18:06:14.858220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1402849799 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5037414b-5f35-4a2f-9a2c-4286bbe0dc15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ea5ccefd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1402849799], ["username", "billy_10"], ["access_token", "7c9a9367ddbc491bc0e0656a40daf98d"], ["uuid", "5037414b-5f35-4a2f-9a2c-4286bbe0dc15"], ["support_identifier", "cs_ea5ccefd"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:14.862547"], ["updated_at", "2018-10-16 18:06:14.862547"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1732283359 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5bdfa4e5-05e4-443d-92d8-1cc4deb82e4b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b513d6f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1732283359], ["username", "billy_11"], ["access_token", "528e67a5a645f5f719c209d265fd2df6"], ["uuid", "5bdfa4e5-05e4-443d-92d8-1cc4deb82e4b"], ["support_identifier", "cs_b513d6f8"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:14.866754"], ["updated_at", "2018-10-16 18:06:14.866754"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1107778047 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7bf746fe-f999-4cd7-8ac5-76bd5c5607a5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_57376060' LIMIT 1 + SQL (1.0ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1107778047], ["username", "billy_12"], ["access_token", "8475261011f093c784c4678763095484"], ["uuid", "7bf746fe-f999-4cd7-8ac5-76bd5c5607a5"], ["support_identifier", "cs_57376060"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:14.871804"], ["updated_at", "2018-10-16 18:06:14.871804"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1246525246 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '952334ab-9053-4746-bf5a-be6afce8b10e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d3fc9aa5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1246525246], ["username", "billy_13"], ["access_token", "a8974b1b62851a5a0812b6635e100817"], ["uuid", "952334ab-9053-4746-bf5a-be6afce8b10e"], ["support_identifier", "cs_d3fc9aa5"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:14.878951"], ["updated_at", "2018-10-16 18:06:14.878951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -59418119 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0252f3ca-f005-4e3c-92e5-4def1b31c426' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_65b7eb85' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -59418119], ["username", "billy_14"], ["access_token", "f503c782b94320a48fce4be9ca02a0cc"], ["uuid", "0252f3ca-f005-4e3c-92e5-4def1b31c426"], ["support_identifier", "cs_65b7eb85"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:14.883135"], ["updated_at", "2018-10-16 18:06:14.883135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -884178382 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc7b1513-8c59-425e-9cd0-de5072825ca4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7fc94a2a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -884178382], ["username", "billy_15"], ["access_token", "82354f06b1bd7ad3dcaa9fcd298ca40b"], ["uuid", "fc7b1513-8c59-425e-9cd0-de5072825ca4"], ["support_identifier", "cs_7fc94a2a"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:14.887348"], ["updated_at", "2018-10-16 18:06:14.887348"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2077802171 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b808e24-9842-4e36-9641-3a9c17c20ffc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_64507030' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2077802171], ["username", "billy_16"], ["access_token", "7a7ec3dcd6b7de400985ed1b75bea08a"], ["uuid", "4b808e24-9842-4e36-9641-3a9c17c20ffc"], ["support_identifier", "cs_64507030"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:14.892129"], ["updated_at", "2018-10-16 18:06:14.892129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -909634449 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0ad4a2f-954f-4029-9395-546b600192d6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe29354a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -909634449], ["username", "billy_17"], ["access_token", "cb3b1fbbd8fd1707d8410a73f3eb7e4b"], ["uuid", "c0ad4a2f-954f-4029-9395-546b600192d6"], ["support_identifier", "cs_fe29354a"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:14.899527"], ["updated_at", "2018-10-16 18:06:14.899527"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1800083472 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f47a443a-cd4b-4ac6-8077-c4f34b7da8a6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a3154546' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1800083472], ["username", "billy_18"], ["access_token", "b717b608d2cbafa2797df73175b78cb5"], ["uuid", "f47a443a-cd4b-4ac6-8077-c4f34b7da8a6"], ["support_identifier", "cs_a3154546"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:14.904082"], ["updated_at", "2018-10-16 18:06:14.904082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1133619561 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11807d96-ba8c-4e30-8fc2-49bc2eeeab73' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a81795e4' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1133619561], ["username", "billy_19"], ["access_token", "d76606e5f58771731044623a2a6f44ea"], ["uuid", "11807d96-ba8c-4e30-8fc2-49bc2eeeab73"], ["support_identifier", "cs_a81795e4"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:14.908492"], ["updated_at", "2018-10-16 18:06:14.908492"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1123025738 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7e44a5d9-db44-4a9e-8c38-ff78abf2deaa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_780308c4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1123025738], ["username", "billy_20"], ["access_token", "84529759ec9d37d60227cfea1586d874"], ["uuid", "7e44a5d9-db44-4a9e-8c38-ff78abf2deaa"], ["support_identifier", "cs_780308c4"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:14.912589"], ["updated_at", "2018-10-16 18:06:14.912589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -62551475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ff4eb441-c574-4c9b-9206-52ffe2a34a10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_44ca11da' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -62551475], ["username", "billy_21"], ["access_token", "5f2a9c34b4f50f97c2c142dce23ede25"], ["uuid", "ff4eb441-c574-4c9b-9206-52ffe2a34a10"], ["support_identifier", "cs_44ca11da"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:14.916669"], ["updated_at", "2018-10-16 18:06:14.916669"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -627423788 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eca057c2-f714-44ba-b9e3-a8098f5c20ff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5c02d7fa' LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -627423788], ["username", "billy_22"], ["access_token", "7b9267d8c66f15d3592918c325e4ee3e"], ["uuid", "eca057c2-f714-44ba-b9e3-a8098f5c20ff"], ["support_identifier", "cs_5c02d7fa"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:14.921574"], ["updated_at", "2018-10-16 18:06:14.921574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -140619923 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f8f3651e-1937-4617-a8ac-cfd3a047807b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cedbe8bf' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -140619923], ["username", "billy_23"], ["access_token", "59da70b19d9e0a7021bdcde129e49114"], ["uuid", "f8f3651e-1937-4617-a8ac-cfd3a047807b"], ["support_identifier", "cs_cedbe8bf"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:14.928434"], ["updated_at", "2018-10-16 18:06:14.928434"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -693014101 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '39b9d198-fbea-4d3a-82fe-99ec7eccc334' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6d0ba621' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -693014101], ["username", "billy_24"], ["access_token", "407e72a426f0536d5fdd024257bf4e23"], ["uuid", "39b9d198-fbea-4d3a-82fe-99ec7eccc334"], ["support_identifier", "cs_6d0ba621"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:14.932585"], ["updated_at", "2018-10-16 18:06:14.932585"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2065013389 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6a7558a1-0859-47c4-ab25-accb4b17b360' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a905d05' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2065013389], ["username", "billy_25"], ["access_token", "73373d445d7fd8e86f963e6288b93737"], ["uuid", "6a7558a1-0859-47c4-ab25-accb4b17b360"], ["support_identifier", "cs_4a905d05"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:14.936837"], ["updated_at", "2018-10-16 18:06:14.936837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -5804476 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4fb9cdd1-d07a-4b27-867a-08245d8cc2b6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dc077f59' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -5804476], ["username", "billy_26"], ["access_token", "0443c3cd0be16731cbf45071c61663d7"], ["uuid", "4fb9cdd1-d07a-4b27-867a-08245d8cc2b6"], ["support_identifier", "cs_dc077f59"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:14.941479"], ["updated_at", "2018-10-16 18:06:14.941479"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1507051237 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5d5bfc41-439f-4f63-bd48-965b322a4657' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3abfa4cd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1507051237], ["username", "billy_27"], ["access_token", "d77c4feb6b99e63d815ddc95f2f7f3ca"], ["uuid", "5d5bfc41-439f-4f63-bd48-965b322a4657"], ["support_identifier", "cs_3abfa4cd"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:14.945581"], ["updated_at", "2018-10-16 18:06:14.945581"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -713600532 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b1b6a852-5fb1-4126-9efd-4a8aa6bef7f9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5fcf8dcb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -713600532], ["username", "billy_28"], ["access_token", "9aaee7185b200ed380f7032d03aa0565"], ["uuid", "b1b6a852-5fb1-4126-9efd-4a8aa6bef7f9"], ["support_identifier", "cs_5fcf8dcb"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:14.949624"], ["updated_at", "2018-10-16 18:06:14.949624"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -616004080 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2e170fd1-e640-4f73-82ef-0887eec0566d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c4fde92a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -616004080], ["username", "billy_29"], ["access_token", "6b32c6149ee2135592aeeabf4a9ed079"], ["uuid", "2e170fd1-e640-4f73-82ef-0887eec0566d"], ["support_identifier", "cs_c4fde92a"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:14.954880"], ["updated_at", "2018-10-16 18:06:14.954880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1312786877 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ca578173-b178-47a6-bf8e-228cd89e4ea2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_af9a6112' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1312786877], ["username", "billy_30"], ["access_token", "62c8b367425f182f4f1dd44962bc7021"], ["uuid", "ca578173-b178-47a6-bf8e-228cd89e4ea2"], ["support_identifier", "cs_af9a6112"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:14.959083"], ["updated_at", "2018-10-16 18:06:14.959083"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -12139446 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e1e36932-5afa-4c46-9014-28c94de10429' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_47d65e8b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -12139446], ["username", "billy_31"], ["access_token", "e31cbc90a20ff0643dbd62496b065d41"], ["uuid", "e1e36932-5afa-4c46-9014-28c94de10429"], ["support_identifier", "cs_47d65e8b"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:14.963191"], ["updated_at", "2018-10-16 18:06:14.963191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -844871533 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47857a71-ac15-4a92-8191-decf9e1d24db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0db98f47' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -844871533], ["username", "billy_32"], ["access_token", "db8848760113f89cb8b3e158a4ce0881"], ["uuid", "47857a71-ac15-4a92-8191-decf9e1d24db"], ["support_identifier", "cs_0db98f47"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:14.967473"], ["updated_at", "2018-10-16 18:06:14.967473"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1479700332 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fe2fe2b5-4db7-409b-99f4-49deb946e928' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63465562' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1479700332], ["username", "billy_33"], ["access_token", "e2607d0fcefce402b5ae39350b9b6533"], ["uuid", "fe2fe2b5-4db7-409b-99f4-49deb946e928"], ["support_identifier", "cs_63465562"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:14.974759"], ["updated_at", "2018-10-16 18:06:14.974759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488106381 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13611476-9d29-4859-bff0-9c57096fbcb4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ed32a644' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -488106381], ["username", "billy_34"], ["access_token", "d24398d6a8217bca8c0465a4ff25485d"], ["uuid", "13611476-9d29-4859-bff0-9c57096fbcb4"], ["support_identifier", "cs_ed32a644"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:14.979853"], ["updated_at", "2018-10-16 18:06:14.979853"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -887134131 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ecbbdb96-39ac-45a4-9f16-43a7dd43d5c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2da42420' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -887134131], ["username", "billy_35"], ["access_token", "c4d8738263c3be899f8eb580bd8e9235"], ["uuid", "ecbbdb96-39ac-45a4-9f16-43a7dd43d5c9"], ["support_identifier", "cs_2da42420"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:14.983917"], ["updated_at", "2018-10-16 18:06:14.983917"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -307507580 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '95bc20ce-9132-4bd9-a4e8-b4f90ca445df' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0fe28b9e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -307507580], ["username", "billy_36"], ["access_token", "d76d7172e9ffb654b171945ee6371ba5"], ["uuid", "95bc20ce-9132-4bd9-a4e8-b4f90ca445df"], ["support_identifier", "cs_0fe28b9e"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:14.987988"], ["updated_at", "2018-10-16 18:06:14.987988"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -599419388 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6b52a935-eb43-4c54-af61-2703aaad4297' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9353903f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -599419388], ["username", "billy_37"], ["access_token", "86b4d8299593fd8a7a3a0eeb94a17859"], ["uuid", "6b52a935-eb43-4c54-af61-2703aaad4297"], ["support_identifier", "cs_9353903f"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:14.992718"], ["updated_at", "2018-10-16 18:06:14.992718"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -817880039 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5a91f750-3c33-4e87-9147-e1469b1f83dc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_447e0482' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -817880039], ["username", "billy_38"], ["access_token", "fdf326d3db60ae4debd8f2e09b665c5a"], ["uuid", "5a91f750-3c33-4e87-9147-e1469b1f83dc"], ["support_identifier", "cs_447e0482"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:14.996876"], ["updated_at", "2018-10-16 18:06:14.996876"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -640713658 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3ab9e717-9bf6-4747-bbe5-ba059ae83d1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b987af5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -640713658], ["username", "billy_39"], ["access_token", "cfddfdf81740b6779f753eaddf9547bb"], ["uuid", "3ab9e717-9bf6-4747-bbe5-ba059ae83d1e"], ["support_identifier", "cs_9b987af5"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:15.000896"], ["updated_at", "2018-10-16 18:06:15.000896"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -765645925 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e60ce921-28a3-4144-a9b4-d8016228d6db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bddb9e9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -765645925], ["username", "billy_40"], ["access_token", "11ce11f78c89c8a65ab49df4c98413ac"], ["uuid", "e60ce921-28a3-4144-a9b4-d8016228d6db"], ["support_identifier", "cs_4bddb9e9"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:15.005348"], ["updated_at", "2018-10-16 18:06:15.005348"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -471864630 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0a6e0326-5f5c-4d36-955a-ada7f413be91' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a36f4394' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -471864630], ["username", "billy_41"], ["access_token", "29cce3fd29f014b0e1d531177272f7a8"], ["uuid", "0a6e0326-5f5c-4d36-955a-ada7f413be91"], ["support_identifier", "cs_a36f4394"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:15.009544"], ["updated_at", "2018-10-16 18:06:15.009544"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -271825907 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '102bef70-57f6-4bf9-8a97-3135c8f3d311' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_679fdc94' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -271825907], ["username", "billy_42"], ["access_token", "5a2c286bc9dbe0d3cbfff68711891657"], ["uuid", "102bef70-57f6-4bf9-8a97-3135c8f3d311"], ["support_identifier", "cs_679fdc94"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:15.013623"], ["updated_at", "2018-10-16 18:06:15.013623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1749748224 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2541cebc-5293-4360-9ede-b5463bd56995' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5518dd73' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1749748224], ["username", "billy_43"], ["access_token", "b6dba58d0400c6d7784df7e54e9bb4e1"], ["uuid", "2541cebc-5293-4360-9ede-b5463bd56995"], ["support_identifier", "cs_5518dd73"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:15.017758"], ["updated_at", "2018-10-16 18:06:15.017758"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1144159318 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '673c8b11-4d46-4532-bb9b-a988f91027b9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf004070' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1144159318], ["username", "billy_44"], ["access_token", "18c24bac34f61b0ee5d5e669d543a04a"], ["uuid", "673c8b11-4d46-4532-bb9b-a988f91027b9"], ["support_identifier", "cs_bf004070"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:15.025135"], ["updated_at", "2018-10-16 18:06:15.025135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1649815123 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3938c48d-5c00-4036-865f-40aff45f6794' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3e23756a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1649815123], ["username", "billy_45"], ["access_token", "eadaf44ce09e6cdcc14221f894942ffa"], ["uuid", "3938c48d-5c00-4036-865f-40aff45f6794"], ["support_identifier", "cs_3e23756a"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:15.029777"], ["updated_at", "2018-10-16 18:06:15.029777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1736834722 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ed8e1dd1-67c8-46b0-97bb-cb900df7f315' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1ca7166c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1736834722], ["username", "billy_46"], ["access_token", "eceb79e1f84d880c64e33152187eb231"], ["uuid", "ed8e1dd1-67c8-46b0-97bb-cb900df7f315"], ["support_identifier", "cs_1ca7166c"], ["is_test", "t"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:15.034014"], ["updated_at", "2018-10-16 18:06:15.034014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1952571113 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4059b0b8-b1ea-46ae-80fa-bb31ba850b5d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_95b5e360' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1952571113], ["username", "billy_47"], ["access_token", "25d8ae76681d4339c30ac47932f8481d"], ["uuid", "4059b0b8-b1ea-46ae-80fa-bb31ba850b5d"], ["support_identifier", "cs_95b5e360"], ["is_test", "t"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:15.038599"], ["updated_at", "2018-10-16 18:06:15.038599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1206099318 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab717f30-2e2e-4488-9b1d-47a178cacb90' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e4216215' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1206099318], ["username", "billy_48"], ["access_token", "bf66e0ef287ff5ad30e20d95378f1fb6"], ["uuid", "ab717f30-2e2e-4488-9b1d-47a178cacb90"], ["support_identifier", "cs_e4216215"], ["is_test", "t"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:15.042821"], ["updated_at", "2018-10-16 18:06:15.042821"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1707495603 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '30b212b9-d1ff-4a6a-931a-6d252e877b8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_531bee64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1707495603], ["username", "billy_49"], ["access_token", "d12b511e67b1fd6ad51d431e0ebb46a2"], ["uuid", "30b212b9-d1ff-4a6a-931a-6d252e877b8f"], ["support_identifier", "cs_531bee64"], ["is_test", "t"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:15.046858"], ["updated_at", "2018-10-16 18:06:15.046858"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" + OpenStax::Accounts::Account Load (1.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8e86ef1-e803-4279-b16d-263752740df2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3f0a20a0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "c5f33705d1dd276948b268a3ac0010df"], ["uuid", "b8e86ef1-e803-4279-b16d-263752740df2"], ["support_identifier", "cs_3f0a20a0"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.059107"], ["updated_at", "2018-10-16 18:06:15.059107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"http://jimmy"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6a7777b-1401-4599-9393-db66bc847197' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0bf36b3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "4edaa35fa0a0dcb68f3ea41ad7fed296"], ["uuid", "d6a7777b-1401-4599-9393-db66bc847197"], ["support_identifier", "cs_e0bf36b3"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.075231"], ["updated_at", "2018-10-16 18:06:15.075231"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 520]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://localhost:57527/logout +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '435a9599-4df5-4e33-986a-9723651837b0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38bc212a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "0aee36c0b9a0fb2ba11d172fb70ebfaf"], ["uuid", "435a9599-4df5-4e33-986a-9723651837b0"], ["support_identifier", "cs_38bc212a"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.094970"], ["updated_at", "2018-10-16 18:06:15.094970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '72888399-e274-4bf5-b314-a04fdc2ac423' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1807011' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "aa0e95b5895a9ec4116363f8ff523cc5"], ["uuid", "72888399-e274-4bf5-b314-a04fdc2ac423"], ["support_identifier", "cs_b1807011"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.100419"], ["updated_at", "2018-10-16 18:06:15.100419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 522]] +Processing by OpenStax::Accounts::SessionsController#destroy as HTML +Redirected to http://test.host/ +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '10900a1f-9ecd-4794-92be-4d0214547504' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_285394f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "997bc461cd54628843844a46175f631b"], ["uuid", "10900a1f-9ecd-4794-92be-4d0214547504"], ["support_identifier", "cs_285394f8"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.111822"], ["updated_at", "2018-10-16 18:06:15.111822"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9d73f6b4-4256-4db9-97ab-4428b506057a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cd8fffa2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "a18083f708383555d5bed1803572d749"], ["uuid", "9d73f6b4-4256-4db9-97ab-4428b506057a"], ["support_identifier", "cs_cd8fffa2"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.122439"], ["updated_at", "2018-10-16 18:06:15.122439"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"return_to"=>"https://woohoo"} +Redirected to http://test.host/accounts/auth/openstax +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b09efa91-1969-4f7a-a030-ae4ecf822ce8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f91401d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "53b2f5769bb6fda59f372696b101bdf2"], ["uuid", "b09efa91-1969-4f7a-a030-ae4ecf822ce8"], ["support_identifier", "cs_4f91401d"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.133009"], ["updated_at", "2018-10-16 18:06:15.133009"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::SessionsController#new as HTML +Redirected to http://test.host/accounts/dev/accounts +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 3ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Started GET "/forwards_params_route" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by ForwardsParamsController#action_needing_authentication as HTML +Redirected to http://www.example.com/accounts/login?go=bar&signup_at=foo&sp=blah +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 2ms (ActiveRecord: 0.0ms) +Started GET "/accounts/login?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OpenStax::Accounts::SessionsController#new as HTML + Parameters: {"go"=>"bar", "signup_at"=>"foo", "sp"=>"blah"} +Redirected to http://www.example.com/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah +Completed 302 Found in 0ms (ActiveRecord: 0.0ms) +Started GET "/accounts/auth/openstax?go=bar&signup_at=foo&sp=blah" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'User' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c477c4ac-2c36-4f67-9d22-64433e996cd1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ca4f3061' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 2], ["username", "User"], ["access_token", "e113ca59a81eb87695497c2644f23704"], ["uuid", "c477c4ac-2c36-4f67-9d22-64433e996cd1"], ["support_identifier", "cs_ca4f3061"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.195142"], ["updated_at", "2018-10-16 18:06:15.195142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'Fuego' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6f0e7898-9a84-4a28-a393-8e1f46bd36d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6c53b375' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 3], ["username", "Fuego"], ["access_token", "64e8153fd3b24bef72ab95d9908e03a9"], ["uuid", "6f0e7898-9a84-4a28-a393-8e1f46bd36d8"], ["support_identifier", "cs_6c53b375"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.199410"], ["updated_at", "2018-10-16 18:06:15.199410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 2], ["name", "Member Group"], ["created_at", "2018-10-16 18:06:15.201717"], ["updated_at", "2018-10-16 18:06:15.201717"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 526 AND "openstax_accounts_group_members"."group_id" = 2) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 2], ["user_id", 2], ["created_at", "2018-10-16 18:06:15.204746"], ["updated_at", "2018-10-16 18:06:15.204746"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 4], ["name", "Container Group"], ["created_at", "2018-10-16 18:06:15.207035"], ["updated_at", "2018-10-16 18:06:15.207035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 526 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 4], ["user_id", 2], ["created_at", "2018-10-16 18:06:15.210646"], ["updated_at", "2018-10-16 18:06:15.210646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 7 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2018-10-16 18:06:15.213115"], ["updated_at", "2018-10-16 18:06:15.213115"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 7]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 4]] +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 2]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.3ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 527 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 526 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", 3], ["name", "Fuego's Deputies"], ["created_at", "2018-10-16 18:06:15.261703"], ["updated_at", "2018-10-16 18:06:15.261703"]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 527 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 18:06:15.263343"], ["updated_at", "2018-10-16 18:06:15.263343"]] + OpenStax::Accounts::GroupMember Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 526 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 18:06:15.264938"], ["updated_at", "2018-10-16 18:06:15.264938"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 9 LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 18:06:15.271301"], ["updated_at", "2018-10-16 18:06:15.271301"]] +  (0.5ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 7) LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "name" = $1, "updated_at" = $2 WHERE "openstax_accounts_groups"."id" = $3 [["name", "M"], ["updated_at", "2018-10-16 18:06:15.276780"], ["id", 7]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 9) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 7]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_groups" +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = $1 [["id", 3]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = $1 [["id", 3]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + SQL (0.2ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = $1 [["id", 3]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupMember Load (0.2ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupOwner Load (0.2ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 2]] + OpenStax::Accounts::GroupNesting Load (0.2ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupNesting Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 9 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2018-10-16 18:06:15.333736"], ["updated_at", "2018-10-16 18:06:15.333736"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 7) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Load (0.1ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 2]] + OpenStax::Accounts::GroupMember Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 526 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 2], ["created_at", "2018-10-16 18:06:15.342376"], ["updated_at", "2018-10-16 18:06:15.342376"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 3]] + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 527 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", 3], ["user_id", 3], ["created_at", "2018-10-16 18:06:15.346568"], ["updated_at", "2018-10-16 18:06:15.346568"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Load (0.1ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 3]] +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 9) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}], "application_group"=>{"_json"=>[{"group_id"=>2, "read_updates"=>1}, {"group_id"=>3, "read_updates"=>2}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_groups" + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 7]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 2]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 8]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = $1 [["container_group_id", 4]] + OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 9]] + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = $1 [["group_id", 3]] + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = $1 [["group_id", 3]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/dummy?test=true" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::DummyController#dummy as application/vnd.accounts.openstax.v1 + Parameters: {"test"=>"true", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1342614071 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'b0623da797d8327ffa107bab02d7a902' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '94ab1d5e-04cb-4767-945e-8b9ebb1ca67f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15873e02' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1342614071], ["username", "b0623da797d8327ffa107bab02d7a902"], ["access_token", "d686843c899ed04dbe38239aa1a7de9a"], ["uuid", "94ab1d5e-04cb-4767-945e-8b9ebb1ca67f"], ["support_identifier", "cs_15873e02"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.403952"], ["updated_at", "2018-10-16 18:06:15.403952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -589990670 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -589990670], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.412121"], ["updated_at", "2018-10-16 18:06:15.412121"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -663496631 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd72d7a172241faa9f751cdc0bd0c5d36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'aa481110-e852-4da1-8e92-2f7b6247dd1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a7615cbf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -663496631], ["username", "d72d7a172241faa9f751cdc0bd0c5d36"], ["access_token", "43bc09432943b0cac06fd17eb8fa96cd"], ["uuid", "aa481110-e852-4da1-8e92-2f7b6247dd1e"], ["support_identifier", "cs_a7615cbf"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.416302"], ["updated_at", "2018-10-16 18:06:15.416302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-589990670/members/-663496631" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-589990670", "user_id"=>"-663496631", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -423377112 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '81eed5158995a8890e2ead372bbff7cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0c783b0f-6606-44ba-824d-eb383898a92e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0521a6f2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -423377112], ["username", "81eed5158995a8890e2ead372bbff7cc"], ["access_token", "75bd0395c3f6c37f21cc770e49b2ce44"], ["uuid", "0c783b0f-6606-44ba-824d-eb383898a92e"], ["support_identifier", "cs_0521a6f2"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.431513"], ["updated_at", "2018-10-16 18:06:15.431513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1259844377 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1259844377], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.433908"], ["updated_at", "2018-10-16 18:06:15.433908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1037798161 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '181c780e7b86b26ca42e70e2ee441e5f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ae2cf5a-8377-42a2-81f0-cdf1f1e98800' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f4b0886' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1037798161], ["username", "181c780e7b86b26ca42e70e2ee441e5f"], ["access_token", "0f10f5e6dbbfe20a0a10a0362346d06c"], ["uuid", "6ae2cf5a-8377-42a2-81f0-cdf1f1e98800"], ["support_identifier", "cs_2f4b0886"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.437883"], ["updated_at", "2018-10-16 18:06:15.437883"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupMember Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 531 AND "openstax_accounts_group_members"."group_id" = -1259844377) LIMIT 1 + SQL (0.9ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -1259844377], ["user_id", -1037798161], ["created_at", "2018-10-16 18:06:15.441578"], ["updated_at", "2018-10-16 18:06:15.441578"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1259844377/members/-1037798161" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-1259844377", "user_id"=>"-1037798161", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) +  (0.3ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -765701116 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '4176cedc60221d7a7d5162bc1009ee8d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '151582ef-45fb-41cc-a33b-13fb4beea434' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8e635f1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -765701116], ["username", "4176cedc60221d7a7d5162bc1009ee8d"], ["access_token", "682a9dac071f73c8010c5934322e5b5c"], ["uuid", "151582ef-45fb-41cc-a33b-13fb4beea434"], ["support_identifier", "cs_e8e635f1"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.460652"], ["updated_at", "2018-10-16 18:06:15.460652"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -276525079 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -276525079], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.469146"], ["updated_at", "2018-10-16 18:06:15.469146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -538048224 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -538048224], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.471302"], ["updated_at", "2018-10-16 18:06:15.471302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-276525079/nestings/-538048224" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-276525079", "member_group_id"=>"-538048224", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1997354838 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '0d0e75b5c21e09c421aea17c31f318ec' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'af5f7119-ae22-49e4-ae7f-ce64f586a9fc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6f663b55' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1997354838], ["username", "0d0e75b5c21e09c421aea17c31f318ec"], ["access_token", "c8c151a6da89bd4323df4b38a7531c6e"], ["uuid", "af5f7119-ae22-49e4-ae7f-ce64f586a9fc"], ["support_identifier", "cs_6f663b55"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.486727"], ["updated_at", "2018-10-16 18:06:15.486727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -838706504 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -838706504], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.489145"], ["updated_at", "2018-10-16 18:06:15.489145"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -427877164 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -427877164], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.491239"], ["updated_at", "2018-10-16 18:06:15.491239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupNesting Exists (0.7ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 15 LIMIT 1 + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 15]] + OpenStax::Accounts::Group Load (0.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = -427877164 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '--- +- -427877164 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 15]] + OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = $1 LIMIT 1 [["id", 14]] + OpenStax::Accounts::Group Load (0.3ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = -838706504 ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '--- +- -838706504 +' WHERE "openstax_accounts_groups"."id" = $1 [["id", 14]] + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -427877164 + SQL (0.2ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -838706504 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["container_group_id", -838706504], ["member_group_id", -427877164], ["created_at", "2018-10-16 18:06:15.496689"], ["updated_at", "2018-10-16 18:06:15.496689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-838706504/nestings/-427877164" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-838706504", "member_group_id"=>"-427877164", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1423751085 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a55fec220703307f00b39af08eac5819' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b538336d-c42a-4609-a537-b007a41213d2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09a91aa0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1423751085], ["username", "a55fec220703307f00b39af08eac5819"], ["access_token", "ac10eadaa52c1e44d362d70e250ebdb5"], ["uuid", "b538336d-c42a-4609-a537-b007a41213d2"], ["support_identifier", "cs_09a91aa0"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.518752"], ["updated_at", "2018-10-16 18:06:15.518752"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/user" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"a55fec220703307f00b39af08eac5819", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil, "dummy"=>{"username"=>"a55fec220703307f00b39af08eac5819", "first_name"=>nil, "last_name"=>nil, "full_name"=>nil, "title"=>nil}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1750933729 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '1fdfc32d5d7260d8ac2f5ef9e8a72e87' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '720068a7-bf9c-43cf-ab87-139a6c50867a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1891da5b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1750933729], ["username", "1fdfc32d5d7260d8ac2f5ef9e8a72e87"], ["access_token", "ddf252b94f13c5270d2e52ebd9d77c84"], ["uuid", "720068a7-bf9c-43cf-ab87-139a6c50867a"], ["support_identifier", "cs_1891da5b"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.538361"], ["updated_at", "2018-10-16 18:06:15.538361"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/users?q=something" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1415762121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '1d7a787a9bbfb2d83661b2e0f6e4121f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6bebee46-6317-4a72-bb84-a67dc1ef299e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_19566bc2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1415762121], ["username", "1d7a787a9bbfb2d83661b2e0f6e4121f"], ["access_token", "322a1a39fcd6339e5474aa7301501d54"], ["uuid", "6bebee46-6317-4a72-bb84-a67dc1ef299e"], ["support_identifier", "cs_19566bc2"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.561207"], ["updated_at", "2018-10-16 18:06:15.561207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"email"=>"dummy@dum.my", "dummy"=>{"email"=>"dummy@dum.my"}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -576201082 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '6f96d445ae773d73bfa411035403cb0a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1183d94c-af1e-4f74-a46c-03152aaaaf40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ef8a82f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -576201082], ["username", "6f96d445ae773d73bfa411035403cb0a"], ["access_token", "dd69d8b18fb6abc22e66f5ad090985db"], ["uuid", "1183d94c-af1e-4f74-a46c-03152aaaaf40"], ["support_identifier", "cs_ef8a82f1"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.582653"], ["updated_at", "2018-10-16 18:06:15.582653"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started POST "/api/user/find-or-create" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"username"=>"dummy", "dummy"=>{"username"=>"dummy"}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_groups/updates" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_group"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "application_group"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1256485175 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '8af91b84797de601b869b1f51f69d824' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '13efe43e-c0f2-483b-9de2-ed7bfc1fe5e2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_501c4998' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1256485175], ["username", "8af91b84797de601b869b1f51f69d824"], ["access_token", "dfb7ab50895c6529b4491ac42d0c3f4f"], ["uuid", "13efe43e-c0f2-483b-9de2-ed7bfc1fe5e2"], ["support_identifier", "cs_501c4998"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.644416"], ["updated_at", "2018-10-16 18:06:15.644416"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1806754448 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1806754448], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.651695"], ["updated_at", "2018-10-16 18:06:15.651695"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -801736681 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'efb1051b56ef9c35d02ce3a90b50993d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'edbc9526-ef5d-4b39-9127-ce01d71ce720' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ef109637' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -801736681], ["username", "efb1051b56ef9c35d02ce3a90b50993d"], ["access_token", "1c13426542ab8cea403db4332b2a437e"], ["uuid", "edbc9526-ef5d-4b39-9127-ce01d71ce720"], ["support_identifier", "cs_ef109637"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.656843"], ["updated_at", "2018-10-16 18:06:15.656843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::GroupOwner Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 539 AND "openstax_accounts_group_owners"."group_id" = -1806754448) LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["group_id", -1806754448], ["user_id", -801736681], ["created_at", "2018-10-16 18:06:15.659365"], ["updated_at", "2018-10-16 18:06:15.659365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1806754448/owners/-801736681" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-1806754448", "user_id"=>"-801736681", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1240969633 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '8e32a93c5e4c8951fb7bf2f52876ec8c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b91de488-3549-41ab-9935-3c941ee60872' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_21ca97b1' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -1240969633], ["username", "8e32a93c5e4c8951fb7bf2f52876ec8c"], ["access_token", "b27710d533662710a235ea37bf123248"], ["uuid", "b91de488-3549-41ab-9935-3c941ee60872"], ["support_identifier", "cs_21ca97b1"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.673831"], ["updated_at", "2018-10-16 18:06:15.673831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -691576619 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -691576619], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.676668"], ["updated_at", "2018-10-16 18:06:15.676668"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -788776753 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '4eef2da0884461e189212d5394e17e79' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e09b9e67-933c-4bc2-9c7a-2e830422ce5d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2a4bd415' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -788776753], ["username", "4eef2da0884461e189212d5394e17e79"], ["access_token", "69e03ab3ac7ae9e795b31275f77d36b9"], ["uuid", "e09b9e67-933c-4bc2-9c7a-2e830422ce5d"], ["support_identifier", "cs_2a4bd415"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.680817"], ["updated_at", "2018-10-16 18:06:15.680817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups/-691576619/owners/-788776753" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1 + Parameters: {"group_id"=>"-691576619", "user_id"=>"-788776753", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -125494256 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '99c881961bc4e0d971c71835d9efcbc6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5d01e07f-d222-4a09-b68e-1e77ad79c39a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9b997357' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -125494256], ["username", "99c881961bc4e0d971c71835d9efcbc6"], ["access_token", "39a54532e67b8c42146dafcc6336bf3a"], ["uuid", "5d01e07f-d222-4a09-b68e-1e77ad79c39a"], ["support_identifier", "cs_9b997357"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.695048"], ["updated_at", "2018-10-16 18:06:15.695048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -777507412 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -777507412], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.702084"], ["updated_at", "2018-10-16 18:06:15.702084"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -777507412 AND "openstax_accounts_groups"."id" != 18) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started PUT "/api/groups/-777507412" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "id"=>"-777507412", "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -254328794 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '6f03880001639fcf717c1168973f3f77' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ab27c647-ad5c-4318-80a0-26ca037371d1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_158ee282' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -254328794], ["username", "6f03880001639fcf717c1168973f3f77"], ["access_token", "fc11c700756d9d2db788fa1b849c6149"], ["uuid", "ab27c647-ad5c-4318-80a0-26ca037371d1"], ["support_identifier", "cs_158ee282"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.717185"], ["updated_at", "2018-10-16 18:06:15.717185"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1101230434 LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1101230434], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.719555"], ["updated_at", "2018-10-16 18:06:15.719555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started POST "/api/groups" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1 + Parameters: {"name"=>"MyGroup", "is_public"=>false, "dummy"=>{"name"=>"MyGroup", "is_public"=>false}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2096208508 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd10d9a1609e110496fc42be3be4e60cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4302c2d6-7302-445c-890a-2168b2933442' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b588bb7f' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", -2096208508], ["username", "d10d9a1609e110496fc42be3be4e60cc"], ["access_token", "596d7a141181947374f610b900ff0358"], ["uuid", "4302c2d6-7302-445c-890a-2168b2933442"], ["support_identifier", "cs_b588bb7f"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:15.733332"], ["updated_at", "2018-10-16 18:06:15.733332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1889192970 LIMIT 1 + SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["openstax_uid", -1889192970], ["name", "MyGroup"], ["created_at", "2018-10-16 18:06:15.735854"], ["updated_at", "2018-10-16 18:06:15.735854"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Group Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1889192970 AND "openstax_accounts_groups"."id" != 20) LIMIT 1 +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Started DELETE "/api/groups/-1889192970" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1 + Parameters: {"id"=>"-1889192970", "dummy"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users?q=something" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1 + Parameters: {"q"=>"something", "application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started PUT "/api/application_users/updated" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1 + Parameters: {"_json"=>[{"id"=>1, "read_updates"=>1}], "application_user"=>{"_json"=>[{"id"=>1, "read_updates"=>1}]}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" IS NULL LIMIT 1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +Started POST "/oauth/token" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by OauthController#token as */* + Parameters: {"client_id"=>"secret", "client_secret"=>"[FILTERED]", "grant_type"=>"client_credentials"} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +Started GET "/api/application_users/updates?limit=250" for 127.0.0.1 at 2018-10-16 13:06:15 -0500 +Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1 + Parameters: {"limit"=>"250", "application_user"=>{}} +Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1126080998 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '622e1680-56b0-4665-a8e3-c5302389dc94' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f4e5386' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1126080998], ["username", "jstrav"], ["access_token", "b34ca07f9ef9b4457bac8ea2274aff22"], ["uuid", "622e1680-56b0-4665-a8e3-c5302389dc94"], ["support_identifier", "cs_4f4e5386"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.835395"], ["updated_at", "2018-10-16 18:06:15.835395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -239256220 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d04afcf-61b8-4f1c-b7fb-ca1276c626bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d852760f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -239256220], ["username", "mary"], ["access_token", "7f1b9b89582a05cbac6164f86526adbe"], ["uuid", "7d04afcf-61b8-4f1c-b7fb-ca1276c626bb"], ["support_identifier", "cs_d852760f"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.840703"], ["updated_at", "2018-10-16 18:06:15.840703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -991795783 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b8f57ad9-72bc-46ad-bb79-65ce911502d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_484a8fcd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -991795783], ["username", "jstead"], ["access_token", "23d893a9e20d825c57e620d0b0c6dd20"], ["uuid", "b8f57ad9-72bc-46ad-bb79-65ce911502d3"], ["support_identifier", "cs_484a8fcd"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.845175"], ["updated_at", "2018-10-16 18:06:15.845175"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1156515347 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '00a2eb87-63ff-4d44-9a03-9abc3c1344fa' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3aa010aa' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1156515347], ["username", "bigbear"], ["access_token", "617b59612d176e6183d654fae1515e54"], ["uuid", "00a2eb87-63ff-4d44-9a03-9abc3c1344fa"], ["support_identifier", "cs_3aa010aa"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.849482"], ["updated_at", "2018-10-16 18:06:15.849482"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.6ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" ILIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -182050391 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'beb93db1-b270-4a5c-8d3a-b97773079a94' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_74fec8a8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -182050391], ["username", "jstrav"], ["access_token", "aa715cda7f28538e860bc682c7978de3"], ["uuid", "beb93db1-b270-4a5c-8d3a-b97773079a94"], ["support_identifier", "cs_74fec8a8"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.859611"], ["updated_at", "2018-10-16 18:06:15.859611"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1154642006 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5eae01eb-1f57-42ee-9b40-aef68ed0640b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f83e54b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1154642006], ["username", "mary"], ["access_token", "cbc8f9a04c810cc6da9a60ca2dc8854f"], ["uuid", "5eae01eb-1f57-42ee-9b40-aef68ed0640b"], ["support_identifier", "cs_9f83e54b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.867317"], ["updated_at", "2018-10-16 18:06:15.867317"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2042830070 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1bd3e832-9484-481c-93e7-45a74acb37cc' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_50647d0e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2042830070], ["username", "jstead"], ["access_token", "be7a11db7094e104485ac290b9c9afab"], ["uuid", "1bd3e832-9484-481c-93e7-45a74acb37cc"], ["support_identifier", "cs_50647d0e"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.872008"], ["updated_at", "2018-10-16 18:06:15.872008"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1841744761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cf5f64a1-9e68-4898-bffc-734b1732e3c5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3e582a3' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1841744761], ["username", "bigbear"], ["access_token", "e5f036e130dcfa5435e66185ca7712e3"], ["uuid", "cf5f64a1-9e68-4898-bffc-734b1732e3c5"], ["support_identifier", "cs_c3e582a3"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.877115"], ["updated_at", "2018-10-16 18:06:15.877115"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -890321867 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '951ab494-ea21-482b-a8b4-dec8b20e3ce5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_62e1b67f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -890321867], ["username", "jstrav"], ["access_token", "b07cd92cd63ab573a90080fb708d69cf"], ["uuid", "951ab494-ea21-482b-a8b4-dec8b20e3ce5"], ["support_identifier", "cs_62e1b67f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.885680"], ["updated_at", "2018-10-16 18:06:15.885680"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1580165734 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c586e42-2af5-4b22-85f7-66894ef543b0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3cffa8b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1580165734], ["username", "mary"], ["access_token", "e6107bc499ad8c635b8405bcdfbd9c74"], ["uuid", "4c586e42-2af5-4b22-85f7-66894ef543b0"], ["support_identifier", "cs_f3cffa8b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.889954"], ["updated_at", "2018-10-16 18:06:15.889954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1329490706 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7d14ea34-747b-4ec3-86f4-925cc232fc32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a6f2ec2' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1329490706], ["username", "jstead"], ["access_token", "dc8a48e176bd241e8d22e76d0778a668"], ["uuid", "7d14ea34-747b-4ec3-86f4-925cc232fc32"], ["support_identifier", "cs_4a6f2ec2"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.894820"], ["updated_at", "2018-10-16 18:06:15.894820"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -225319692 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '55e3f85c-e841-47ad-8e3c-bf1828b80b21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25e04e93' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -225319692], ["username", "bigbear"], ["access_token", "cc4addfc189aaa3b59427434f7b0331d"], ["uuid", "55e3f85c-e841-47ad-8e3c-bf1828b80b21"], ["support_identifier", "cs_25e04e93"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.899061"], ["updated_at", "2018-10-16 18:06:15.899061"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '7d14ea34-747b-4ec3-86f4-925cc232fc32') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."uuid" = '7d14ea34-747b-4ec3-86f4-925cc232fc32') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -744121139 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7308ba24-8e49-4854-8173-46cca103103c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_95ad38d2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -744121139], ["username", "jstrav"], ["access_token", "6b5c8c04acc8b437dcbf8efa2389630f"], ["uuid", "7308ba24-8e49-4854-8173-46cca103103c"], ["support_identifier", "cs_95ad38d2"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.907051"], ["updated_at", "2018-10-16 18:06:15.907051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -48873313 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68ea374b-6f58-46b3-add2-0aecdf9b8d35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_62603d77' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -48873313], ["username", "mary"], ["access_token", "c1c9f92ff9d744acc78e594b90360982"], ["uuid", "68ea374b-6f58-46b3-add2-0aecdf9b8d35"], ["support_identifier", "cs_62603d77"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.911326"], ["updated_at", "2018-10-16 18:06:15.911326"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1362196707 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '28a938d5-72f9-45f1-9349-3d2b21e7a5e7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d87b05f1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1362196707], ["username", "jstead"], ["access_token", "2c144d6e1191d5b2e9125fd362853be0"], ["uuid", "28a938d5-72f9-45f1-9349-3d2b21e7a5e7"], ["support_identifier", "cs_d87b05f1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.915519"], ["updated_at", "2018-10-16 18:06:15.915519"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -787212583 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4ff40595-eb85-451b-adf6-caf261e99b09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0ee7336b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -787212583], ["username", "bigbear"], ["access_token", "44a553ae67eb648c490ca8d6ece946f5"], ["uuid", "4ff40595-eb85-451b-adf6-caf261e99b09"], ["support_identifier", "cs_0ee7336b"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.919985"], ["updated_at", "2018-10-16 18:06:15.919985"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" ILIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1287158558 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c459f93e-6ea5-4dc9-81f1-b326ce20b2c1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7f1b0649' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1287158558], ["username", "jstrav"], ["access_token", "9b4020724760ade57c54b349c7d0123e"], ["uuid", "c459f93e-6ea5-4dc9-81f1-b326ce20b2c1"], ["support_identifier", "cs_7f1b0649"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.928188"], ["updated_at", "2018-10-16 18:06:15.928188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -53232052 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5fad39cf-d5c3-4d74-8441-3d5de605c725' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf39bbb9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -53232052], ["username", "mary"], ["access_token", "2d96ab114245918fb416068303cdff26"], ["uuid", "5fad39cf-d5c3-4d74-8441-3d5de605c725"], ["support_identifier", "cs_bf39bbb9"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.932510"], ["updated_at", "2018-10-16 18:06:15.932510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -460984279 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '54766a87-b700-4d7a-9dd8-5ce8a29578d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_300dd572' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -460984279], ["username", "jstead"], ["access_token", "2f6e927cf59f960e9a6afe6f8c72bd7c"], ["uuid", "54766a87-b700-4d7a-9dd8-5ce8a29578d3"], ["support_identifier", "cs_300dd572"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.936804"], ["updated_at", "2018-10-16 18:06:15.936804"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1697713892 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cc0f45d4-52e5-45b7-9ea7-4f6c733b1465' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_424f646a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1697713892], ["username", "bigbear"], ["access_token", "28c138f25566edaf74b04e954d4330c8"], ["uuid", "cc0f45d4-52e5-45b7-9ea7-4f6c733b1465"], ["support_identifier", "cs_424f646a"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.943553"], ["updated_at", "2018-10-16 18:06:15.943553"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1901788164 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b9d9d309-6194-49d1-95fa-9fddb93bbb21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_25b539d6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1901788164], ["username", "jstrav"], ["access_token", "1e745bb86950e3ece09f48298aaa35ca"], ["uuid", "b9d9d309-6194-49d1-95fa-9fddb93bbb21"], ["support_identifier", "cs_25b539d6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.953179"], ["updated_at", "2018-10-16 18:06:15.953179"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1578580405 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e9712fe-ca41-4d10-a5f6-5a2777feb706' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_87c53a74' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1578580405], ["username", "mary"], ["access_token", "c005d7943ac38646762a47b669442993"], ["uuid", "5e9712fe-ca41-4d10-a5f6-5a2777feb706"], ["support_identifier", "cs_87c53a74"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.958299"], ["updated_at", "2018-10-16 18:06:15.958299"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1748195884 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8e517fe-4e48-4e6e-8121-113c95b9c27e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5a70b3e7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1748195884], ["username", "jstead"], ["access_token", "e1625c08ff7e3ace25d2e149b026fb5b"], ["uuid", "a8e517fe-4e48-4e6e-8121-113c95b9c27e"], ["support_identifier", "cs_5a70b3e7"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.962908"], ["updated_at", "2018-10-16 18:06:15.962908"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -614790125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6d158d8-0273-404e-9ade-3dfcf17f621c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bc029dfb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -614790125], ["username", "bigbear"], ["access_token", "41493f152fc939f7d27e23602c555273"], ["uuid", "d6d158d8-0273-404e-9ade-3dfcf17f621c"], ["support_identifier", "cs_bc029dfb"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.967541"], ["updated_at", "2018-10-16 18:06:15.967541"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -519280921 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5cd9dc2a-a9f7-4497-b411-967c412bed9f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f5bd9509' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -519280921], ["username", "jstrav"], ["access_token", "405f0ebe4f46400e7aa4400b7140698f"], ["uuid", "5cd9dc2a-a9f7-4497-b411-967c412bed9f"], ["support_identifier", "cs_f5bd9509"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.976318"], ["updated_at", "2018-10-16 18:06:15.976318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1954718992 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '023cb609-9a18-4563-9386-9b57035d589c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2a7492a2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1954718992], ["username", "mary"], ["access_token", "856373fea8db23b1cc171196818e2632"], ["uuid", "023cb609-9a18-4563-9386-9b57035d589c"], ["support_identifier", "cs_2a7492a2"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:15.980808"], ["updated_at", "2018-10-16 18:06:15.980808"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1775838766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e73c2073-2148-44cb-92d2-f06c373f0572' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a7acb616' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1775838766], ["username", "jstead"], ["access_token", "029e2221e5b251afbf15dde3511b3e76"], ["uuid", "e73c2073-2148-44cb-92d2-f06c373f0572"], ["support_identifier", "cs_a7acb616"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:15.985044"], ["updated_at", "2018-10-16 18:06:15.985044"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1725557052 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38b27497-f5d5-4465-93fa-b6edea96a7d8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a51476ca' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1725557052], ["username", "bigbear"], ["access_token", "0bcec199ef4927976d3a5f9d10012411"], ["uuid", "38b27497-f5d5-4465-93fa-b6edea96a7d8"], ["support_identifier", "cs_a51476ca"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:15.989379"], ["updated_at", "2018-10-16 18:06:15.989379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.5ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_a7acb616') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."support_identifier" = 'cs_a7acb616') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1965127966 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e795b29-decf-42b8-8316-eb199937f0a8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f92d1b5b' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1965127966], ["username", "jstrav"], ["access_token", "08d791f9527c3c186ae642e7ca5f2171"], ["uuid", "9e795b29-decf-42b8-8316-eb199937f0a8"], ["support_identifier", "cs_f92d1b5b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:15.999290"], ["updated_at", "2018-10-16 18:06:15.999290"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657662685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1a4aa3e3-8bad-4435-af67-7495db31bbc3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9f3b103d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -657662685], ["username", "mary"], ["access_token", "c1933e5f7e88713a0ac0972ab0e1f043"], ["uuid", "1a4aa3e3-8bad-4435-af67-7495db31bbc3"], ["support_identifier", "cs_9f3b103d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.004293"], ["updated_at", "2018-10-16 18:06:16.004293"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1760814789 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '23abff6c-d550-49a7-97e2-766fa0637b69' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a3e38901' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1760814789], ["username", "jstead"], ["access_token", "aca76a9bc83d896f4cea9e24b2dee9ee"], ["uuid", "23abff6c-d550-49a7-97e2-766fa0637b69"], ["support_identifier", "cs_a3e38901"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.009219"], ["updated_at", "2018-10-16 18:06:16.009219"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -194413985 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '87e42b0f-278f-4bce-8306-fc7be9d1c267' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3323906' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -194413985], ["username", "bigbear"], ["access_token", "5885688a9c8b05ebdda531120fe1ea63"], ["uuid", "87e42b0f-278f-4bce-8306-fc7be9d1c267"], ["support_identifier", "cs_f3323906"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.014010"], ["updated_at", "2018-10-16 18:06:16.014010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -473243031 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c419ff14-f610-473a-8d11-d845dc0280c6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f52cec22' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -473243031], ["username", "jstrav"], ["access_token", "2987b3699e17825a6f48ac9677c786cc"], ["uuid", "c419ff14-f610-473a-8d11-d845dc0280c6"], ["support_identifier", "cs_f52cec22"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.023459"], ["updated_at", "2018-10-16 18:06:16.023459"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -7073899 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e422b758-c849-425a-bdec-0fc107c1e4a2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_26e98786' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -7073899], ["username", "mary"], ["access_token", "d50f00bdff86bc94e6db855ab363039f"], ["uuid", "e422b758-c849-425a-bdec-0fc107c1e4a2"], ["support_identifier", "cs_26e98786"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.028191"], ["updated_at", "2018-10-16 18:06:16.028191"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -367791325 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57f34c3f-73b5-46c9-949c-67460824d4e0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_778a9135' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -367791325], ["username", "jstead"], ["access_token", "c8c474205b5a1ffaeabd1ff1be9240cc"], ["uuid", "57f34c3f-73b5-46c9-949c-67460824d4e0"], ["support_identifier", "cs_778a9135"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.032888"], ["updated_at", "2018-10-16 18:06:16.032888"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1527766119 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a83254c6-5435-49a1-ac52-9320b739ee92' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d52f3a09' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1527766119], ["username", "bigbear"], ["access_token", "137c248ab2291c72ad35a91fa3a78db0"], ["uuid", "a83254c6-5435-49a1-ac52-9320b739ee92"], ["support_identifier", "cs_d52f3a09"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.037436"], ["updated_at", "2018-10-16 18:06:16.037436"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2081380493 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '2da1e28c-bb96-42a4-93b4-2e50679f6763' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b250377c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2081380493], ["username", "jstrav"], ["access_token", "bff4284babb67eaafe6b425d38f3f786"], ["uuid", "2da1e28c-bb96-42a4-93b4-2e50679f6763"], ["support_identifier", "cs_b250377c"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.046193"], ["updated_at", "2018-10-16 18:06:16.046193"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -338758434 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7fdcea86-9c2a-4ff7-9219-eb25a1f3e83c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4226973b' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -338758434], ["username", "mary"], ["access_token", "6fda197e8e47a7593f13fbd01bd556db"], ["uuid", "7fdcea86-9c2a-4ff7-9219-eb25a1f3e83c"], ["support_identifier", "cs_4226973b"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.051238"], ["updated_at", "2018-10-16 18:06:16.051238"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -883122688 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bf78f1ae-fab9-4adf-ac16-e508f124b142' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cacfa49f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -883122688], ["username", "jstead"], ["access_token", "59db6c4aac370860c527ed95a2905390"], ["uuid", "bf78f1ae-fab9-4adf-ac16-e508f124b142"], ["support_identifier", "cs_cacfa49f"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.057174"], ["updated_at", "2018-10-16 18:06:16.057174"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927687519 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be8cac77-b4c2-427e-9140-f017c579e9e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1ba858d8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -927687519], ["username", "bigbear"], ["access_token", "7a5df994ac61585739dc76bb3baece3e"], ["uuid", "be8cac77-b4c2-427e-9140-f017c579e9e5"], ["support_identifier", "cs_1ba858d8"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.062143"], ["updated_at", "2018-10-16 18:06:16.062143"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" ILIKE 'john%' OR "openstax_accounts_accounts"."username" ILIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" ILIKE 'john%' OR "openstax_accounts_accounts"."first_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" ILIKE 'john%' OR "openstax_accounts_accounts"."last_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" ILIKE 'john%' OR "openstax_accounts_accounts"."full_name" ILIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.2ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830758888 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '36c28394-425d-4da3-af81-9d97dbd9ba98' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7c57f7a1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1830758888], ["username", "jstrav"], ["access_token", "1b7244ae589506a7ee817eed4d8f3bcf"], ["uuid", "36c28394-425d-4da3-af81-9d97dbd9ba98"], ["support_identifier", "cs_7c57f7a1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.071682"], ["updated_at", "2018-10-16 18:06:16.071682"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1338062020 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33f87148-b2fd-4c6b-85bb-e6a1b102e8cf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e3f0e2f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1338062020], ["username", "mary"], ["access_token", "2ec7178953e5b9c72cf08ad85822163f"], ["uuid", "33f87148-b2fd-4c6b-85bb-e6a1b102e8cf"], ["support_identifier", "cs_4e3f0e2f"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.079656"], ["updated_at", "2018-10-16 18:06:16.079656"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2066319591 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '7c06c397-a86e-48db-bb69-6c20ee541dd2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_07e20563' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2066319591], ["username", "jstead"], ["access_token", "b6277611d2265a742edd90c4fd6ff051"], ["uuid", "7c06c397-a86e-48db-bb69-6c20ee541dd2"], ["support_identifier", "cs_07e20563"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.084200"], ["updated_at", "2018-10-16 18:06:16.084200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1213525783 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd3e349a6-94f9-4630-9cff-9216dc4e829a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b11153c8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1213525783], ["username", "bigbear"], ["access_token", "4d1f1a243b1fe52ac87da578ece04d9f"], ["uuid", "d3e349a6-94f9-4630-9cff-9216dc4e829a"], ["support_identifier", "cs_b11153c8"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.088703"], ["updated_at", "2018-10-16 18:06:16.088703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" ILIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1210284029 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '62f6595e-34fa-449a-8fd9-9364fbf4f902' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f6bccfe1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1210284029], ["username", "jstrav"], ["access_token", "6aabe443a85ed94c6d32d7878caf17d4"], ["uuid", "62f6595e-34fa-449a-8fd9-9364fbf4f902"], ["support_identifier", "cs_f6bccfe1"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.097386"], ["updated_at", "2018-10-16 18:06:16.097386"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372893573 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8f842b4b-39f4-4849-b710-fde6d50725e9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2f820ade' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -372893573], ["username", "mary"], ["access_token", "90434f2e4c3ff648f572007effcd8f19"], ["uuid", "8f842b4b-39f4-4849-b710-fde6d50725e9"], ["support_identifier", "cs_2f820ade"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.102707"], ["updated_at", "2018-10-16 18:06:16.102707"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1327169830 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e6c26385-c07f-4f5c-9b33-e317d5e72c87' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0500ed07' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1327169830], ["username", "jstead"], ["access_token", "bb9f3a3ebc7746e68e770528be74a1af"], ["uuid", "e6c26385-c07f-4f5c-9b33-e317d5e72c87"], ["support_identifier", "cs_0500ed07"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.108691"], ["updated_at", "2018-10-16 18:06:16.108691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -150835993 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '68b58c23-2fbe-4273-83b5-817a1ac3fac3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01ce26a9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -150835993], ["username", "bigbear"], ["access_token", "6fefb5d35da6c482c7ee7b1f1c2d8860"], ["uuid", "68b58c23-2fbe-4273-83b5-817a1ac3fac3"], ["support_identifier", "cs_01ce26a9"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.113030"], ["updated_at", "2018-10-16 18:06:16.113030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1327169830) +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = -1327169830) ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1807171633 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5c5f25f-3dd2-4953-bc73-18b8b60a7e7c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_dceebfb9' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1807171633], ["username", "jstrav"], ["access_token", "60bb890e929e9cc163bb9115b20c7e50"], ["uuid", "e5c5f25f-3dd2-4953-bc73-18b8b60a7e7c"], ["support_identifier", "cs_dceebfb9"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.120856"], ["updated_at", "2018-10-16 18:06:16.120856"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1562703782 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '67f48039-67a7-4126-88ed-04ebb831ab39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e8b91d06' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1562703782], ["username", "mary"], ["access_token", "0f2a6bd9028d779f4500dd461f66ccf2"], ["uuid", "67f48039-67a7-4126-88ed-04ebb831ab39"], ["support_identifier", "cs_e8b91d06"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.129066"], ["updated_at", "2018-10-16 18:06:16.129066"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -504126893 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '07133a52-094b-4382-bfee-e9c78e699b06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_59dd5963' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -504126893], ["username", "jstead"], ["access_token", "b9927b361ed26b169d46114770931f57"], ["uuid", "07133a52-094b-4382-bfee-e9c78e699b06"], ["support_identifier", "cs_59dd5963"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.133489"], ["updated_at", "2018-10-16 18:06:16.133489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -785227116 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '69299333-6eeb-4ffb-848c-33798a3df23b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_df4dbdb4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -785227116], ["username", "bigbear"], ["access_token", "7221e53dbabcb385fe3da9339230367b"], ["uuid", "69299333-6eeb-4ffb-848c-33798a3df23b"], ["support_identifier", "cs_df4dbdb4"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.137645"], ["updated_at", "2018-10-16 18:06:16.137645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1979987710 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd3e55024-7c8d-48eb-96ba-e1f54e067dbf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4941e038' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1979987710], ["username", "jstrav"], ["access_token", "eaf2c60b9a1010e1cf9cacea12a78ecc"], ["uuid", "d3e55024-7c8d-48eb-96ba-e1f54e067dbf"], ["support_identifier", "cs_4941e038"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.145794"], ["updated_at", "2018-10-16 18:06:16.145794"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2014891159 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea5a847f-5bd3-4db6-88e3-e4eade046849' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_46a8c6f1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -2014891159], ["username", "mary"], ["access_token", "e76c005604833170d0bcac30650e8b81"], ["uuid", "ea5a847f-5bd3-4db6-88e3-e4eade046849"], ["support_identifier", "cs_46a8c6f1"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.150031"], ["updated_at", "2018-10-16 18:06:16.150031"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -298819950 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '408c1c26-11d7-44db-b1d1-1ed87e14cf1f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a937fb4b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -298819950], ["username", "jstead"], ["access_token", "1f5065a3fa27cd2231b91754e39f18eb"], ["uuid", "408c1c26-11d7-44db-b1d1-1ed87e14cf1f"], ["support_identifier", "cs_a937fb4b"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.155328"], ["updated_at", "2018-10-16 18:06:16.155328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -766510041 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0386f086-9060-49fa-b14c-1ab381b5c4c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b15b774' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -766510041], ["username", "bigbear"], ["access_token", "b4b78357a3d8984fdbfe22dc293bf893"], ["uuid", "0386f086-9060-49fa-b14c-1ab381b5c4c9"], ["support_identifier", "cs_0b15b774"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.160146"], ["updated_at", "2018-10-16 18:06:16.160146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1695849949 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '35998844-12d9-42ec-83dc-1bc3fc3e3315' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_403b7e76' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1695849949], ["username", "foo_bb"], ["access_token", "517dbd72e7cf408913fe6d6f53746b08"], ["uuid", "35998844-12d9-42ec-83dc-1bc3fc3e3315"], ["support_identifier", "cs_403b7e76"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2018-10-16 18:06:16.164400"], ["updated_at", "2018-10-16 18:06:16.164400"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -311455523 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_bj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '875f21bd-e3a2-4414-aff2-e41eeb6f3032' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_146421ff' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -311455523], ["username", "foo_bj"], ["access_token", "30a4cb49eaf57c76bb5d2c0a16b30870"], ["uuid", "875f21bd-e3a2-4414-aff2-e41eeb6f3032"], ["support_identifier", "cs_146421ff"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2018-10-16 18:06:16.168434"], ["updated_at", "2018-10-16 18:06:16.168434"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1287244117 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'foo_tj' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '61132543-28c5-4e45-a257-83afe70768b4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d654fd1c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1287244117], ["username", "foo_tj"], ["access_token", "f73b4135911ee5b89a4f6e4955235648"], ["uuid", "61132543-28c5-4e45-a257-83afe70768b4"], ["support_identifier", "cs_d654fd1c"], ["is_test", "t"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2018-10-16 18:06:16.173138"], ["updated_at", "2018-10-16 18:06:16.173138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.3ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -213563083 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b4502d36-b878-436e-89cb-d22cfcf525de' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2d518271' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -213563083], ["username", "jstrav"], ["access_token", "b307f560ac4a6436c41e63c853054b35"], ["uuid", "b4502d36-b878-436e-89cb-d22cfcf525de"], ["support_identifier", "cs_2d518271"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.184028"], ["updated_at", "2018-10-16 18:06:16.184028"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1573086321 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ca09cd18-0013-4c6e-b3c8-be40776cb107' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4e2851f0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1573086321], ["username", "mary"], ["access_token", "3e5ba1fde4063032b086d0cdcd8f50d6"], ["uuid", "ca09cd18-0013-4c6e-b3c8-be40776cb107"], ["support_identifier", "cs_4e2851f0"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.188713"], ["updated_at", "2018-10-16 18:06:16.188713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1342384649 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e7fd3c09-9e59-42f8-a0b2-6e0176c088a3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f7b4aecb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1342384649], ["username", "jstead"], ["access_token", "a3f05fb72edaa398b6fda6ea4ec195a8"], ["uuid", "e7fd3c09-9e59-42f8-a0b2-6e0176c088a3"], ["support_identifier", "cs_f7b4aecb"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.193212"], ["updated_at", "2018-10-16 18:06:16.193212"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1186572600 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e673069f-c0d4-41b4-82c7-3f8f372b7a66' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a492f7f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1186572600], ["username", "bigbear"], ["access_token", "cb8d27359b836cfc0925ec8e7473bc75"], ["uuid", "e673069f-c0d4-41b4-82c7-3f8f372b7a66"], ["support_identifier", "cs_6a492f7f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.197382"], ["updated_at", "2018-10-16 18:06:16.197382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1583554152 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6ac2905e-8391-4af2-80de-2963aa583eac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_34d3216a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1583554152], ["username", "billy_00"], ["access_token", "f2868925d8c0221310ed141ac56b6080"], ["uuid", "6ac2905e-8391-4af2-80de-2963aa583eac"], ["support_identifier", "cs_34d3216a"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:16.201554"], ["updated_at", "2018-10-16 18:06:16.201554"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -903541890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6bac945a-7550-4618-a105-96226c2ca247' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0947484e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -903541890], ["username", "billy_01"], ["access_token", "6988ac5231505128c390fe9b9f2fc947"], ["uuid", "6bac945a-7550-4618-a105-96226c2ca247"], ["support_identifier", "cs_0947484e"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:16.206064"], ["updated_at", "2018-10-16 18:06:16.206064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -712319737 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73fe6147-2ed7-40f0-884c-9a72e9e9bfff' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e6649b8a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -712319737], ["username", "billy_02"], ["access_token", "c3ad42cd69c8a03878b9bce76a8783ec"], ["uuid", "73fe6147-2ed7-40f0-884c-9a72e9e9bfff"], ["support_identifier", "cs_e6649b8a"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:16.210310"], ["updated_at", "2018-10-16 18:06:16.210310"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -836809610 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '73ab9431-0287-4f91-9c36-c5523cdcdfa4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_619aad01' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -836809610], ["username", "billy_03"], ["access_token", "d516e2cdb75a8789299dd1cff7b1ace5"], ["uuid", "73ab9431-0287-4f91-9c36-c5523cdcdfa4"], ["support_identifier", "cs_619aad01"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:16.214407"], ["updated_at", "2018-10-16 18:06:16.214407"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1189565544 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '109398ac-3329-44ed-ac75-a26ca8eb4eb7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e626d629' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1189565544], ["username", "billy_04"], ["access_token", "b617621cd5cb61075c59181bb3f12863"], ["uuid", "109398ac-3329-44ed-ac75-a26ca8eb4eb7"], ["support_identifier", "cs_e626d629"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:16.218725"], ["updated_at", "2018-10-16 18:06:16.218725"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -569206673 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ee1ae5e4-77ca-46ec-8ecc-b12196628b6b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_69c87cbe' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -569206673], ["username", "billy_05"], ["access_token", "41a60fa41d654396f53778989b15c483"], ["uuid", "ee1ae5e4-77ca-46ec-8ecc-b12196628b6b"], ["support_identifier", "cs_69c87cbe"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:16.223659"], ["updated_at", "2018-10-16 18:06:16.223659"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137453834 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '20a7443c-8c2c-42ce-a446-852fe1787337' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f12dc733' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2137453834], ["username", "billy_06"], ["access_token", "32193958449d3f5d3043aab42cacc58f"], ["uuid", "20a7443c-8c2c-42ce-a446-852fe1787337"], ["support_identifier", "cs_f12dc733"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:16.228303"], ["updated_at", "2018-10-16 18:06:16.228303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -472255034 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9ba8dd9a-7d02-4451-a34d-e93d439e7243' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b5e4132b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -472255034], ["username", "billy_07"], ["access_token", "231959ad805d8d6b2c58045103dadc8e"], ["uuid", "9ba8dd9a-7d02-4451-a34d-e93d439e7243"], ["support_identifier", "cs_b5e4132b"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:16.232447"], ["updated_at", "2018-10-16 18:06:16.232447"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -135032569 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9855bb8e-9c32-41b0-a750-603ecf182dc6' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_01500d76' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -135032569], ["username", "billy_08"], ["access_token", "3c5754ae9dcc24a76f0cb5b9e2ee4444"], ["uuid", "9855bb8e-9c32-41b0-a750-603ecf182dc6"], ["support_identifier", "cs_01500d76"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:16.236654"], ["updated_at", "2018-10-16 18:06:16.236654"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -722409056 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c0447ee5-206e-41c2-b31d-3ee51b933bea' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_657fd1e4' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -722409056], ["username", "billy_09"], ["access_token", "a874aaaa4475406f53aa7959d42f366e"], ["uuid", "c0447ee5-206e-41c2-b31d-3ee51b933bea"], ["support_identifier", "cs_657fd1e4"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:16.243115"], ["updated_at", "2018-10-16 18:06:16.243115"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -156417757 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cf0a8b3b-8b35-48c2-bfe9-e900049e0891' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6e35bf53' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -156417757], ["username", "billy_10"], ["access_token", "2562cf6c23b28ce164bbf2323fd8524c"], ["uuid", "cf0a8b3b-8b35-48c2-bfe9-e900049e0891"], ["support_identifier", "cs_6e35bf53"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:16.248940"], ["updated_at", "2018-10-16 18:06:16.248940"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -578379761 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd6a9042d-b390-46e7-b867-91bc3cef9c62' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b6a61401' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -578379761], ["username", "billy_11"], ["access_token", "c8d43c7e5be1d82eb7b6b23c9e1808d0"], ["uuid", "d6a9042d-b390-46e7-b867-91bc3cef9c62"], ["support_identifier", "cs_b6a61401"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:16.253990"], ["updated_at", "2018-10-16 18:06:16.253990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -340935795 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '406f5121-35b9-4af5-b834-ba61f1ae6aa8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bfbc190a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -340935795], ["username", "billy_12"], ["access_token", "4e642c33161bf58545f85537bb547b92"], ["uuid", "406f5121-35b9-4af5-b834-ba61f1ae6aa8"], ["support_identifier", "cs_bfbc190a"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:16.259373"], ["updated_at", "2018-10-16 18:06:16.259373"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2093773525 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e0654575-47e6-4ebc-bfca-698423caf49f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bacdf260' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2093773525], ["username", "billy_13"], ["access_token", "6653b4c06c5e4d5fe11b59830e07ea51"], ["uuid", "e0654575-47e6-4ebc-bfca-698423caf49f"], ["support_identifier", "cs_bacdf260"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:16.263779"], ["updated_at", "2018-10-16 18:06:16.263779"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -566975012 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e6bf4cb1-97b6-47e8-a83b-0d9b8454ef41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8a17866a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -566975012], ["username", "billy_14"], ["access_token", "aa8941cdd534d2e5680b999d61a44547"], ["uuid", "e6bf4cb1-97b6-47e8-a83b-0d9b8454ef41"], ["support_identifier", "cs_8a17866a"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:16.267962"], ["updated_at", "2018-10-16 18:06:16.267962"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -99520991 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c90fa4d0-6ff2-4673-9da5-5f43339cbc28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f8fd37f7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -99520991], ["username", "billy_15"], ["access_token", "544af05c5dc13af72a819ed7b61e243c"], ["uuid", "c90fa4d0-6ff2-4673-9da5-5f43339cbc28"], ["support_identifier", "cs_f8fd37f7"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:16.272398"], ["updated_at", "2018-10-16 18:06:16.272398"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -607905037 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '982c5857-3e2d-4460-85a2-838c2218de9b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fe18e7a7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -607905037], ["username", "billy_16"], ["access_token", "85c5cde84a60dc363c0ab1c69ab3afb7"], ["uuid", "982c5857-3e2d-4460-85a2-838c2218de9b"], ["support_identifier", "cs_fe18e7a7"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:16.279675"], ["updated_at", "2018-10-16 18:06:16.279675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -348657209 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4d4a16e-827a-4299-9c4c-1bdada022c3e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e41a4977' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -348657209], ["username", "billy_17"], ["access_token", "e3ac02127d5778415fa02eae2743e050"], ["uuid", "c4d4a16e-827a-4299-9c4c-1bdada022c3e"], ["support_identifier", "cs_e41a4977"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:16.283941"], ["updated_at", "2018-10-16 18:06:16.283941"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -251454788 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c2e76b2-a1ac-43f2-a5d8-307d5968016e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8461a2e9' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -251454788], ["username", "billy_18"], ["access_token", "58e98b3fae5313af73c98a7c5f54a4ab"], ["uuid", "8c2e76b2-a1ac-43f2-a5d8-307d5968016e"], ["support_identifier", "cs_8461a2e9"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:16.288366"], ["updated_at", "2018-10-16 18:06:16.288366"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -343020614 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '99e23ebf-2f3d-4329-a8a1-fa9acfb90437' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_611a4e32' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -343020614], ["username", "billy_19"], ["access_token", "6761e9473b6783bdd0a279c73b1a42d1"], ["uuid", "99e23ebf-2f3d-4329-a8a1-fa9acfb90437"], ["support_identifier", "cs_611a4e32"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:16.292847"], ["updated_at", "2018-10-16 18:06:16.292847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -153996329 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4b4a6b66-7cde-493f-bc8e-b18786bbdd5b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f92adc30' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -153996329], ["username", "billy_20"], ["access_token", "895d04059b127450ca961f25b44bdd3d"], ["uuid", "4b4a6b66-7cde-493f-bc8e-b18786bbdd5b"], ["support_identifier", "cs_f92adc30"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:16.297047"], ["updated_at", "2018-10-16 18:06:16.297047"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -892615714 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1ab4e260-e540-4fb6-8a45-136fd92b991d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_057336a0' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -892615714], ["username", "billy_21"], ["access_token", "b7f1a55af13956fc655da8598c51d2af"], ["uuid", "1ab4e260-e540-4fb6-8a45-136fd92b991d"], ["support_identifier", "cs_057336a0"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:16.301217"], ["updated_at", "2018-10-16 18:06:16.301217"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1531844806 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.6ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '87647bb6-497a-4901-b9a3-b88baf271865' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06a68f2e' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1531844806], ["username", "billy_22"], ["access_token", "77481194a946e1068025dab10ee8b24a"], ["uuid", "87647bb6-497a-4901-b9a3-b88baf271865"], ["support_identifier", "cs_06a68f2e"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:16.308076"], ["updated_at", "2018-10-16 18:06:16.308076"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1464998303 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8813e38f-0af3-4967-8999-a4a690357e7e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2b4ae421' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1464998303], ["username", "billy_23"], ["access_token", "b9ec9bc87be4124725d5b3a9df554827"], ["uuid", "8813e38f-0af3-4967-8999-a4a690357e7e"], ["support_identifier", "cs_2b4ae421"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:16.313225"], ["updated_at", "2018-10-16 18:06:16.313225"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -924126228 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a080f54f-e5eb-4fe2-be3e-4befb8b05496' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ae299a23' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -924126228], ["username", "billy_24"], ["access_token", "07a4be35d5ccab7cff0afa0a2ad98cae"], ["uuid", "a080f54f-e5eb-4fe2-be3e-4befb8b05496"], ["support_identifier", "cs_ae299a23"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:16.317326"], ["updated_at", "2018-10-16 18:06:16.317326"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1935042169 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd1c14386-0058-4a1e-9fb8-02597bc182db' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_30c5bd5f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1935042169], ["username", "billy_25"], ["access_token", "131dc8db3758137cc35f62e8f9b07d6f"], ["uuid", "d1c14386-0058-4a1e-9fb8-02597bc182db"], ["support_identifier", "cs_30c5bd5f"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:16.321725"], ["updated_at", "2018-10-16 18:06:16.321725"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1541195986 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'def9bb43-65c8-4792-bc24-4b8e4e3297ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_709e125a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1541195986], ["username", "billy_26"], ["access_token", "0324b8523dec6ca428661b6980aaf0a2"], ["uuid", "def9bb43-65c8-4792-bc24-4b8e4e3297ad"], ["support_identifier", "cs_709e125a"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:16.326495"], ["updated_at", "2018-10-16 18:06:16.326495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1121339821 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'cd20ebeb-2757-4f4b-b477-68e0499f6517' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c432aeba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1121339821], ["username", "billy_27"], ["access_token", "e0da06111176c3941cd2423a8a1c287f"], ["uuid", "cd20ebeb-2757-4f4b-b477-68e0499f6517"], ["support_identifier", "cs_c432aeba"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:16.330618"], ["updated_at", "2018-10-16 18:06:16.330618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1139664766 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '95c02a5a-f3cd-4247-a212-520899254d5f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1dbfb943' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1139664766], ["username", "billy_28"], ["access_token", "92139145efbc603f791224be64c326f7"], ["uuid", "95c02a5a-f3cd-4247-a212-520899254d5f"], ["support_identifier", "cs_1dbfb943"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:16.334736"], ["updated_at", "2018-10-16 18:06:16.334736"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -243134774 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3e24c8ab-015d-4e01-84f7-8cf5c416dff9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e78062a7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -243134774], ["username", "billy_29"], ["access_token", "b01e8b93fd99c3f5f37c8c61ca691785"], ["uuid", "3e24c8ab-015d-4e01-84f7-8cf5c416dff9"], ["support_identifier", "cs_e78062a7"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:16.341526"], ["updated_at", "2018-10-16 18:06:16.341526"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1429800176 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '956ee480-4c2f-428b-8a65-8c4276f572f1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_939685cf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1429800176], ["username", "billy_30"], ["access_token", "6cc2e56e3e486ccd6b2a00aca45666b0"], ["uuid", "956ee480-4c2f-428b-8a65-8c4276f572f1"], ["support_identifier", "cs_939685cf"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:16.347245"], ["updated_at", "2018-10-16 18:06:16.347245"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1725527841 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '61fe7a6f-4b43-46fc-bc1b-4d878072ac48' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_990b1ab5' LIMIT 1 + SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1725527841], ["username", "billy_31"], ["access_token", "204bcdf8a7a744f0f259b8851eac4561"], ["uuid", "61fe7a6f-4b43-46fc-bc1b-4d878072ac48"], ["support_identifier", "cs_990b1ab5"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:16.351565"], ["updated_at", "2018-10-16 18:06:16.351565"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1738894125 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33dd7cee-68d3-44b3-a551-bbb049f777f5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a5cd4f01' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1738894125], ["username", "billy_32"], ["access_token", "0edcc1e6ad9170d5652b3682601f8c0c"], ["uuid", "33dd7cee-68d3-44b3-a551-bbb049f777f5"], ["support_identifier", "cs_a5cd4f01"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:16.357040"], ["updated_at", "2018-10-16 18:06:16.357040"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -766933450 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3434f0ad-c06e-4772-8ba9-599c751c6a1e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_21d3fa48' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -766933450], ["username", "billy_33"], ["access_token", "997f1ab1a52a4e5b8d24aa6d42840480"], ["uuid", "3434f0ad-c06e-4772-8ba9-599c751c6a1e"], ["support_identifier", "cs_21d3fa48"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:16.361669"], ["updated_at", "2018-10-16 18:06:16.361669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -130900127 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd952b525-3fd0-43d9-8762-3af952e992d0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a1841ade' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -130900127], ["username", "billy_34"], ["access_token", "15050f82bb04afda585aacc10c1e389b"], ["uuid", "d952b525-3fd0-43d9-8762-3af952e992d0"], ["support_identifier", "cs_a1841ade"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:16.366641"], ["updated_at", "2018-10-16 18:06:16.366641"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -827671664 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5c03985e-96ab-40fd-9d32-a44e33d15c5f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_464d8f7c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -827671664], ["username", "billy_35"], ["access_token", "41f85338b2ab0b3b2b727d67967ed21b"], ["uuid", "5c03985e-96ab-40fd-9d32-a44e33d15c5f"], ["support_identifier", "cs_464d8f7c"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:16.371188"], ["updated_at", "2018-10-16 18:06:16.371188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -737856565 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bc32e23d-f938-473b-9e39-f6ac50ce1a14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_15ab5425' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -737856565], ["username", "billy_36"], ["access_token", "ce9da2541273d2f593ee9e596fb8fd94"], ["uuid", "bc32e23d-f938-473b-9e39-f6ac50ce1a14"], ["support_identifier", "cs_15ab5425"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:16.376054"], ["updated_at", "2018-10-16 18:06:16.376054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2025286327 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'da163463-9d0a-44c0-aa5a-681dfb1c4c30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f431b9d1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2025286327], ["username", "billy_37"], ["access_token", "43b8e09a9833572d06d36c904409ed6e"], ["uuid", "da163463-9d0a-44c0-aa5a-681dfb1c4c30"], ["support_identifier", "cs_f431b9d1"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:16.380400"], ["updated_at", "2018-10-16 18:06:16.380400"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1516378341 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '49665216-d9c0-4eb3-a5b9-fb94f070e005' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_add78f77' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1516378341], ["username", "billy_38"], ["access_token", "1ea3a9136bdca99a06302bb0f8b17038"], ["uuid", "49665216-d9c0-4eb3-a5b9-fb94f070e005"], ["support_identifier", "cs_add78f77"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:16.384592"], ["updated_at", "2018-10-16 18:06:16.384592"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1878368786 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5830cd69-1430-47a0-bf46-ea5ddf91e99b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4a118d71' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1878368786], ["username", "billy_39"], ["access_token", "e55aac085be7b91bde0435a0bbe9486b"], ["uuid", "5830cd69-1430-47a0-bf46-ea5ddf91e99b"], ["support_identifier", "cs_4a118d71"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:16.389017"], ["updated_at", "2018-10-16 18:06:16.389017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1797365666 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '89065a25-27ba-4a3c-a668-ca0b86efccb2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6fc6d9b6' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1797365666], ["username", "billy_40"], ["access_token", "509155a781dff1b0d6db4e4008bc70c0"], ["uuid", "89065a25-27ba-4a3c-a668-ca0b86efccb2"], ["support_identifier", "cs_6fc6d9b6"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:16.393437"], ["updated_at", "2018-10-16 18:06:16.393437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1413026475 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '57a537cd-5127-466c-a8a3-40e41599e780' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d298f302' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1413026475], ["username", "billy_41"], ["access_token", "a831195279778fbbfd7fe75b7b506552"], ["uuid", "57a537cd-5127-466c-a8a3-40e41599e780"], ["support_identifier", "cs_d298f302"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:16.397771"], ["updated_at", "2018-10-16 18:06:16.397771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -582540909 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c4bd9c63-6fbf-4431-8430-8d02db092464' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3736c04c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -582540909], ["username", "billy_42"], ["access_token", "23fb81ba125bf5254ad3edd63ee9fd46"], ["uuid", "c4bd9c63-6fbf-4431-8430-8d02db092464"], ["support_identifier", "cs_3736c04c"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:16.401841"], ["updated_at", "2018-10-16 18:06:16.401841"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -659288756 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11cf24a4-f6f5-42b3-9d5c-dc4dc299f864' LIMIT 1 + OpenStax::Accounts::Account Exists (1.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b57dc40e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -659288756], ["username", "billy_43"], ["access_token", "b88eb067c670077ce1fc0cd8b80ba4ef"], ["uuid", "11cf24a4-f6f5-42b3-9d5c-dc4dc299f864"], ["support_identifier", "cs_b57dc40e"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:16.409428"], ["updated_at", "2018-10-16 18:06:16.409428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -981488202 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '31392dd4-0c31-4819-92b4-d351679ed4c8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_381cdcef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -981488202], ["username", "billy_44"], ["access_token", "0b2ddbeb53fde8979dad71509d588eff"], ["uuid", "31392dd4-0c31-4819-92b4-d351679ed4c8"], ["support_identifier", "cs_381cdcef"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:16.414406"], ["updated_at", "2018-10-16 18:06:16.414406"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -568722566 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd63c7753-3a11-4f03-8407-4fa667b1c6f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b2824e14' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -568722566], ["username", "billy_45"], ["access_token", "caf73e43775fe76b39af4c4f36da0d5f"], ["uuid", "d63c7753-3a11-4f03-8407-4fa667b1c6f4"], ["support_identifier", "cs_b2824e14"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:16.418513"], ["updated_at", "2018-10-16 18:06:16.418513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.2ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (1.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_00"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_19"]] +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1472300768 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4aad2585-0f15-45c2-bc49-5a0fb527d5e3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a390b221' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1472300768], ["username", "jstrav"], ["access_token", "761c8ad36daa779e3e45a7960fc041db"], ["uuid", "4aad2585-0f15-45c2-bc49-5a0fb527d5e3"], ["support_identifier", "cs_a390b221"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.429150"], ["updated_at", "2018-10-16 18:06:16.429150"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -48200615 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '32a62cd4-dc37-4595-8e47-8ee98c70a3ad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c1dd0234' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -48200615], ["username", "mary"], ["access_token", "0812a34f3c7bc2fc9970d23308ba6480"], ["uuid", "32a62cd4-dc37-4595-8e47-8ee98c70a3ad"], ["support_identifier", "cs_c1dd0234"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.433632"], ["updated_at", "2018-10-16 18:06:16.433632"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -925581814 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bb52cee2-4ff5-42ac-9d70-85d0de629196' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1fabe6fc' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -925581814], ["username", "jstead"], ["access_token", "02f8c39d147d3416f203ed72e2ee941e"], ["uuid", "bb52cee2-4ff5-42ac-9d70-85d0de629196"], ["support_identifier", "cs_1fabe6fc"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.437889"], ["updated_at", "2018-10-16 18:06:16.437889"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -914087825 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e7ccce52-6ea6-4058-b595-a4fa4210a240' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5d906a2f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -914087825], ["username", "bigbear"], ["access_token", "6b5223c1d36ab2b8ce4bcc884fe233b5"], ["uuid", "e7ccce52-6ea6-4058-b595-a4fa4210a240"], ["support_identifier", "cs_5d906a2f"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.442420"], ["updated_at", "2018-10-16 18:06:16.442420"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -504509101 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6845a938-8065-4c64-983b-8491db3f35c2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2b4d56a5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -504509101], ["username", "billy_00"], ["access_token", "4754c67c5a606e17739d0adaa60e603d"], ["uuid", "6845a938-8065-4c64-983b-8491db3f35c2"], ["support_identifier", "cs_2b4d56a5"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:16.446587"], ["updated_at", "2018-10-16 18:06:16.446587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -566550417 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09d6a0b7-5ebb-4bc5-b63c-71f03583309d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3ac3d28a' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -566550417], ["username", "billy_01"], ["access_token", "eb28efddfe5891b16b35d2184bbc3657"], ["uuid", "09d6a0b7-5ebb-4bc5-b63c-71f03583309d"], ["support_identifier", "cs_3ac3d28a"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:16.450783"], ["updated_at", "2018-10-16 18:06:16.450783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1444084805 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33969420-f754-4508-b877-ac894df34b2d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b53311bc' LIMIT 1 + SQL (1.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1444084805], ["username", "billy_02"], ["access_token", "59093639fb106de16bdacdf1f411a5e9"], ["uuid", "33969420-f754-4508-b877-ac894df34b2d"], ["support_identifier", "cs_b53311bc"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:16.456333"], ["updated_at", "2018-10-16 18:06:16.456333"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1738249756 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '84f3c4da-1982-43ce-829b-9fabdc47fda2' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_20200ab6' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1738249756], ["username", "billy_03"], ["access_token", "30d3856e862ebaf26fe6529be9e183ff"], ["uuid", "84f3c4da-1982-43ce-829b-9fabdc47fda2"], ["support_identifier", "cs_20200ab6"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:16.464365"], ["updated_at", "2018-10-16 18:06:16.464365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1281603469 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '508d096b-4cef-4428-8b19-14e0893f4f10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c03ea13a' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1281603469], ["username", "billy_04"], ["access_token", "8c4b18afd7e0cf0004b69671a4513189"], ["uuid", "508d096b-4cef-4428-8b19-14e0893f4f10"], ["support_identifier", "cs_c03ea13a"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:16.468714"], ["updated_at", "2018-10-16 18:06:16.468714"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -499305643 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bdac69a8-915c-4fa2-b905-3f3b38ab39ae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3d189768' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -499305643], ["username", "billy_05"], ["access_token", "cf00ad3b23cf2500651c949a58b9770c"], ["uuid", "bdac69a8-915c-4fa2-b905-3f3b38ab39ae"], ["support_identifier", "cs_3d189768"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:16.473819"], ["updated_at", "2018-10-16 18:06:16.473819"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1361037686 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c6a65a87-02f1-4f53-a03c-148f0c3ee705' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8e4dfeef' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1361037686], ["username", "billy_06"], ["access_token", "8220bb1af6f111e59933a2213057c639"], ["uuid", "c6a65a87-02f1-4f53-a03c-148f0c3ee705"], ["support_identifier", "cs_8e4dfeef"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:16.481748"], ["updated_at", "2018-10-16 18:06:16.481748"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1098657197 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1c7a867d-612a-4d1f-bae3-5911be3f90ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bb521201' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1098657197], ["username", "billy_07"], ["access_token", "3688d3f947b028241401ecf24b2c4e5f"], ["uuid", "1c7a867d-612a-4d1f-bae3-5911be3f90ce"], ["support_identifier", "cs_bb521201"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:16.486026"], ["updated_at", "2018-10-16 18:06:16.486026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -885449747 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ebcc5359-0bed-4986-b169-ab03ca63b461' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c2bf79bb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -885449747], ["username", "billy_08"], ["access_token", "247dd873881a3c848652340882b98aa5"], ["uuid", "ebcc5359-0bed-4986-b169-ab03ca63b461"], ["support_identifier", "cs_c2bf79bb"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:16.490228"], ["updated_at", "2018-10-16 18:06:16.490228"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1166774861 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '666892d5-9cb3-4867-a693-d1fd1d09f901' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_09ada5f8' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1166774861], ["username", "billy_09"], ["access_token", "b67c5db4d7a39fc33626afd9d9ce1dbe"], ["uuid", "666892d5-9cb3-4867-a693-d1fd1d09f901"], ["support_identifier", "cs_09ada5f8"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:16.494953"], ["updated_at", "2018-10-16 18:06:16.494953"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1145936247 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '366b4846-4a92-4cac-b924-65e8688e12ce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_d8af8efb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1145936247], ["username", "billy_10"], ["access_token", "1c07a0fdbd9bcd9f9604b06f13f0fdbf"], ["uuid", "366b4846-4a92-4cac-b924-65e8688e12ce"], ["support_identifier", "cs_d8af8efb"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:16.499101"], ["updated_at", "2018-10-16 18:06:16.499101"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -895878551 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bcb1dd44-29f8-400e-979c-f1dcc3b70f4e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee66a380' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -895878551], ["username", "billy_11"], ["access_token", "79f4d0ddf214913cbb8dbd766010ceb9"], ["uuid", "bcb1dd44-29f8-400e-979c-f1dcc3b70f4e"], ["support_identifier", "cs_ee66a380"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:16.503200"], ["updated_at", "2018-10-16 18:06:16.503200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -904364068 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08e1b213-a7ec-44ee-bbbc-4cf03358fd8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_37cdd0a2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -904364068], ["username", "billy_12"], ["access_token", "080ce65fbf63c87d7b23ac7449681aa0"], ["uuid", "08e1b213-a7ec-44ee-bbbc-4cf03358fd8f"], ["support_identifier", "cs_37cdd0a2"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:16.507799"], ["updated_at", "2018-10-16 18:06:16.507799"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -889803006 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd15f6098-9f90-4b07-bf2c-4a3dcf7861c9' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a65e87ce' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -889803006], ["username", "billy_13"], ["access_token", "8217434e90b5ba0ef6365a09548d0d8b"], ["uuid", "d15f6098-9f90-4b07-bf2c-4a3dcf7861c9"], ["support_identifier", "cs_a65e87ce"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:16.511944"], ["updated_at", "2018-10-16 18:06:16.511944"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -920194878 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c33915c7-dae7-4451-80a3-c59fc101944b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_afe7346c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -920194878], ["username", "billy_14"], ["access_token", "7df87ed5e71f73659873f45fd3434818"], ["uuid", "c33915c7-dae7-4451-80a3-c59fc101944b"], ["support_identifier", "cs_afe7346c"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:16.515978"], ["updated_at", "2018-10-16 18:06:16.515978"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1466840095 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '11c2cb25-269e-4389-8636-68d9f7d8ae2a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c3d3df98' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1466840095], ["username", "billy_15"], ["access_token", "d978f92d7ff66a92b9ce92a1fbaa8c6f"], ["uuid", "11c2cb25-269e-4389-8636-68d9f7d8ae2a"], ["support_identifier", "cs_c3d3df98"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:16.520095"], ["updated_at", "2018-10-16 18:06:16.520095"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1320553610 LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0db1b8e7-7cfd-49d9-b11f-9bb11d633f2c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e793abc1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1320553610], ["username", "billy_16"], ["access_token", "33506485f677327b50acda6a83e866e4"], ["uuid", "0db1b8e7-7cfd-49d9-b11f-9bb11d633f2c"], ["support_identifier", "cs_e793abc1"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:16.527908"], ["updated_at", "2018-10-16 18:06:16.527908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1152922176 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8540c794-6d81-410a-beab-f17e0dacde7e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4de39e9f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1152922176], ["username", "billy_17"], ["access_token", "7ee3c65a04bc49000ea8713785ac9e16"], ["uuid", "8540c794-6d81-410a-beab-f17e0dacde7e"], ["support_identifier", "cs_4de39e9f"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:16.532336"], ["updated_at", "2018-10-16 18:06:16.532336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2134528198 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8acb5f95-7531-463c-9961-d12bb0b20fdf' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29837abf' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2134528198], ["username", "billy_18"], ["access_token", "ac4f4cdbe47d3de45345e8602315baf9"], ["uuid", "8acb5f95-7531-463c-9961-d12bb0b20fdf"], ["support_identifier", "cs_29837abf"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:16.536545"], ["updated_at", "2018-10-16 18:06:16.536545"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -16711429 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3e9656bd-63cf-4d61-92e2-25d38a03f07d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7e8f359e' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -16711429], ["username", "billy_19"], ["access_token", "d84896105700ae65079861fa49ae8c33"], ["uuid", "3e9656bd-63cf-4d61-92e2-25d38a03f07d"], ["support_identifier", "cs_7e8f359e"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:16.541244"], ["updated_at", "2018-10-16 18:06:16.541244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2055617482 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '09557cc4-29fd-4c7f-ab01-a2057c36fe49' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_63c79416' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2055617482], ["username", "billy_20"], ["access_token", "19031ff326c1e981f47e119ff365d755"], ["uuid", "09557cc4-29fd-4c7f-ab01-a2057c36fe49"], ["support_identifier", "cs_63c79416"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:16.545386"], ["updated_at", "2018-10-16 18:06:16.545386"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1302842093 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '04f35375-b108-46ef-89c5-f1f139b82fdd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8eaa24e5' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1302842093], ["username", "billy_21"], ["access_token", "f523e56690f4574ad9dea130b5b89956"], ["uuid", "04f35375-b108-46ef-89c5-f1f139b82fdd"], ["support_identifier", "cs_8eaa24e5"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:16.549397"], ["updated_at", "2018-10-16 18:06:16.549397"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1871895115 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'acdb5c40-b88f-4372-81ab-7993ce9f883d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_96718744' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1871895115], ["username", "billy_22"], ["access_token", "d40d43f3c8793c5c799bb217de54e7f6"], ["uuid", "acdb5c40-b88f-4372-81ab-7993ce9f883d"], ["support_identifier", "cs_96718744"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:16.554336"], ["updated_at", "2018-10-16 18:06:16.554336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -158028901 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bd379692-2a48-4906-9d04-6785a75fd005' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6523dcde' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -158028901], ["username", "billy_23"], ["access_token", "8f65ccd032d31ee61c4942d995600a73"], ["uuid", "bd379692-2a48-4906-9d04-6785a75fd005"], ["support_identifier", "cs_6523dcde"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:16.559237"], ["updated_at", "2018-10-16 18:06:16.559237"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1372885733 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c92b2a8c-2bc2-4da0-8aa3-67ef7c3912f4' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ffdc53ad' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1372885733], ["username", "billy_24"], ["access_token", "62a07283a803be7759cf13c1e4131cb6"], ["uuid", "c92b2a8c-2bc2-4da0-8aa3-67ef7c3912f4"], ["support_identifier", "cs_ffdc53ad"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:16.563397"], ["updated_at", "2018-10-16 18:06:16.563397"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -636071420 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8d1a0679-0fde-4fa2-8989-0e3bdf2c106a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f69c912d' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -636071420], ["username", "billy_25"], ["access_token", "66e6bc15cd3bc23272ab52b4f79022ac"], ["uuid", "8d1a0679-0fde-4fa2-8989-0e3bdf2c106a"], ["support_identifier", "cs_f69c912d"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:16.567764"], ["updated_at", "2018-10-16 18:06:16.567764"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1605406411 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4c7d4588-67ff-4e45-896f-4ea60e850751' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67bf645a' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1605406411], ["username", "billy_26"], ["access_token", "79034c58bb02033a5521e45a86bca998"], ["uuid", "4c7d4588-67ff-4e45-896f-4ea60e850751"], ["support_identifier", "cs_67bf645a"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:16.572108"], ["updated_at", "2018-10-16 18:06:16.572108"]] +  (0.4ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -937522113 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ea9b2c03-bfd1-4a66-ac71-758296ce2721' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e3de20b2' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -937522113], ["username", "billy_27"], ["access_token", "653d7ae4c978a1c71c43f95f5b512e73"], ["uuid", "ea9b2c03-bfd1-4a66-ac71-758296ce2721"], ["support_identifier", "cs_e3de20b2"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:16.579660"], ["updated_at", "2018-10-16 18:06:16.579660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1755853334 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9e0b8c4d-1129-4723-a566-2d3ddcb8fb09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_bf42511c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1755853334], ["username", "billy_28"], ["access_token", "41b8315b0d0ad20baae8d52de5db59a7"], ["uuid", "9e0b8c4d-1129-4723-a566-2d3ddcb8fb09"], ["support_identifier", "cs_bf42511c"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:16.583978"], ["updated_at", "2018-10-16 18:06:16.583978"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372761159 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd7d60c4a-b4ff-423b-b68b-8710221bd95f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fa643628' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -372761159], ["username", "billy_29"], ["access_token", "1a4bfa10c89b075029813b8865cd4e69"], ["uuid", "d7d60c4a-b4ff-423b-b68b-8710221bd95f"], ["support_identifier", "cs_fa643628"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:16.588093"], ["updated_at", "2018-10-16 18:06:16.588093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2055145565 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b850acc-d520-4add-b41c-02b669831890' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_38b04218' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2055145565], ["username", "billy_30"], ["access_token", "480d9e9a1249ba9ef33befab0dce5172"], ["uuid", "0b850acc-d520-4add-b41c-02b669831890"], ["support_identifier", "cs_38b04218"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:16.592813"], ["updated_at", "2018-10-16 18:06:16.592813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1761388866 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3898fb22-3fd7-4a44-b7e5-48674e4c6565' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6e6bfd98' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1761388866], ["username", "billy_31"], ["access_token", "8f9b2e279881c35389829a981ef9b5e2"], ["uuid", "3898fb22-3fd7-4a44-b7e5-48674e4c6565"], ["support_identifier", "cs_6e6bfd98"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:16.596920"], ["updated_at", "2018-10-16 18:06:16.596920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1283018219 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'c03a876c-317c-4c2b-bcc3-22ab3dc4403f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1543aa7b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1283018219], ["username", "billy_32"], ["access_token", "2f8cac368fa486b43485f2ae95ab4a5d"], ["uuid", "c03a876c-317c-4c2b-bcc3-22ab3dc4403f"], ["support_identifier", "cs_1543aa7b"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:16.601201"], ["updated_at", "2018-10-16 18:06:16.601201"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -680427636 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bfe24c46-ff2e-4582-87c2-d3619de828f0' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6313d8ef' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -680427636], ["username", "billy_33"], ["access_token", "ee09ab13ad3595c446473c8aa3b836d1"], ["uuid", "bfe24c46-ff2e-4582-87c2-d3619de828f0"], ["support_identifier", "cs_6313d8ef"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:16.607073"], ["updated_at", "2018-10-16 18:06:16.607073"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1858517329 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a423fd4c-d5b2-4fbe-aa45-d632ccd2bf5a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_29274253' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1858517329], ["username", "billy_34"], ["access_token", "7cd1b3bcb6cf69861e544ef21ec3f36d"], ["uuid", "a423fd4c-d5b2-4fbe-aa45-d632ccd2bf5a"], ["support_identifier", "cs_29274253"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:16.611643"], ["updated_at", "2018-10-16 18:06:16.611643"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1291995226 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6af504df-876b-4117-bfac-02cdfe79b5e5' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1788bac4' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1291995226], ["username", "billy_35"], ["access_token", "c7e4767360a13a6373f7ffc673c163fb"], ["uuid", "6af504df-876b-4117-bfac-02cdfe79b5e5"], ["support_identifier", "cs_1788bac4"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:16.615921"], ["updated_at", "2018-10-16 18:06:16.615921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1454217953 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4a589d60-b582-4765-9773-ce3aa7d93068' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a8685eca' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1454217953], ["username", "billy_36"], ["access_token", "edafd843dda446822e07ff1b1b5fb1fc"], ["uuid", "4a589d60-b582-4765-9773-ce3aa7d93068"], ["support_identifier", "cs_a8685eca"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:16.620073"], ["updated_at", "2018-10-16 18:06:16.620073"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1291008523 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e8a0b4d3-f372-46d7-bca9-ed6fcf5d6386' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_322bad7e' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1291008523], ["username", "billy_37"], ["access_token", "a06bd9b7fc344d549888df0a45882f57"], ["uuid", "e8a0b4d3-f372-46d7-bca9-ed6fcf5d6386"], ["support_identifier", "cs_322bad7e"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:16.627912"], ["updated_at", "2018-10-16 18:06:16.627912"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2034684773 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ad6c6a1c-1f60-412a-a21c-5185fa3d9238' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_22721cda' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2034684773], ["username", "billy_38"], ["access_token", "a425be786682eec256df8dbc2d295d82"], ["uuid", "ad6c6a1c-1f60-412a-a21c-5185fa3d9238"], ["support_identifier", "cs_22721cda"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:16.632470"], ["updated_at", "2018-10-16 18:06:16.632470"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1140969721 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '28fc1549-ce5a-48db-8296-46071783cee7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_ee478b25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1140969721], ["username", "billy_39"], ["access_token", "6079bbf6be5aa6ef6210bae936d97dfd"], ["uuid", "28fc1549-ce5a-48db-8296-46071783cee7"], ["support_identifier", "cs_ee478b25"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:16.636789"], ["updated_at", "2018-10-16 18:06:16.636789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -89373431 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'fc5a905d-ae51-4bf0-bd86-0a11829b0966' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b9d4c3c' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -89373431], ["username", "billy_40"], ["access_token", "b7659c4394cfbaa5b4721b903025018d"], ["uuid", "fc5a905d-ae51-4bf0-bd86-0a11829b0966"], ["support_identifier", "cs_0b9d4c3c"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:16.641572"], ["updated_at", "2018-10-16 18:06:16.641572"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -528601782 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ba69d36a-2497-406c-b5d7-8f2b25a8eded' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c6d335cd' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -528601782], ["username", "billy_41"], ["access_token", "fec27d9425b82919f14918a67757e937"], ["uuid", "ba69d36a-2497-406c-b5d7-8f2b25a8eded"], ["support_identifier", "cs_c6d335cd"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:16.645796"], ["updated_at", "2018-10-16 18:06:16.645796"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -686070306 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '47208729-2a4c-4ed2-af1f-e68414bc2d45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5701fb3e' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -686070306], ["username", "billy_42"], ["access_token", "0a676ec4b4ec0450206731287d8eba2e"], ["uuid", "47208729-2a4c-4ed2-af1f-e68414bc2d45"], ["support_identifier", "cs_5701fb3e"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:16.649913"], ["updated_at", "2018-10-16 18:06:16.649913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1202452785 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4be10123-1b85-4e33-a2d4-733c80428049' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f3e30a5f' LIMIT 1 + SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1202452785], ["username", "billy_43"], ["access_token", "55b142d3a573d516a9c547ab0f15c6f4"], ["uuid", "4be10123-1b85-4e33-a2d4-733c80428049"], ["support_identifier", "cs_f3e30a5f"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:16.655566"], ["updated_at", "2018-10-16 18:06:16.655566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -52032823 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0b13a5be-241b-43cc-922c-c8ec60ec0136' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cd29cb64' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -52032823], ["username", "billy_44"], ["access_token", "5f52ae06485c03966b455cdd12e4fba4"], ["uuid", "0b13a5be-241b-43cc-922c-c8ec60ec0136"], ["support_identifier", "cs_cd29cb64"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:16.660116"], ["updated_at", "2018-10-16 18:06:16.660116"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1676253897 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9a4d4e06-2ddc-4d17-8893-04520b326775' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e2298786' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1676253897], ["username", "billy_45"], ["access_token", "5681b17b7d6f3c48c4889f6a501703e6"], ["uuid", "9a4d4e06-2ddc-4d17-8893-04520b326775"], ["support_identifier", "cs_e2298786"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:16.664391"], ["updated_at", "2018-10-16 18:06:16.664391"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40 + OpenStax::Accounts::Account Load (0.4ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_45"]] +  (0.2ms) ROLLBACK +  (0.2ms) BEGIN +  (0.2ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2015956461 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstrav' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '0e81aa27-db37-485c-8acb-7ae03b7c31b1' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_06377173' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2015956461], ["username", "jstrav"], ["access_token", "e9ed23b8adab0faadcbee12629262737"], ["uuid", "0e81aa27-db37-485c-8acb-7ae03b7c31b1"], ["support_identifier", "cs_06377173"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2018-10-16 18:06:16.679034"], ["updated_at", "2018-10-16 18:06:16.679034"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1853961880 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'mary' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a8de67dc-6fd0-4e57-86d7-d150e18c2c3c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_aabce68d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["openstax_uid", -1853961880], ["username", "mary"], ["access_token", "da85dba8e11ef75b3d23e60a39fc79e0"], ["uuid", "a8de67dc-6fd0-4e57-86d7-d150e18c2c3c"], ["support_identifier", "cs_aabce68d"], ["is_test", "t"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2018-10-16 18:06:16.683517"], ["updated_at", "2018-10-16 18:06:16.683517"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1923918070 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'jstead' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '38504507-9a66-451e-a4e7-ec4d834623ac' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c8a96ac6' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1923918070], ["username", "jstead"], ["access_token", "488367147fe9e258db627d081572535d"], ["uuid", "38504507-9a66-451e-a4e7-ec4d834623ac"], ["support_identifier", "cs_c8a96ac6"], ["is_test", "t"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2018-10-16 18:06:16.687946"], ["updated_at", "2018-10-16 18:06:16.687946"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -117436064 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'bigbear' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6c821ce0-c122-440e-960b-29515bae7092' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e358d689' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -117436064], ["username", "bigbear"], ["access_token", "bd7c02544c0d755c66b8d60b17974ad4"], ["uuid", "6c821ce0-c122-440e-960b-29515bae7092"], ["support_identifier", "cs_e358d689"], ["is_test", "t"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2018-10-16 18:06:16.692681"], ["updated_at", "2018-10-16 18:06:16.692681"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -964415931 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '86e7616f-d9c5-4dec-8e57-d9605ba12826' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c14b04b6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -964415931], ["username", "billy_00"], ["access_token", "a03ad3e736533c51d25aa0c471cb2eeb"], ["uuid", "86e7616f-d9c5-4dec-8e57-d9605ba12826"], ["support_identifier", "cs_c14b04b6"], ["is_test", "t"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2018-10-16 18:06:16.696775"], ["updated_at", "2018-10-16 18:06:16.696775"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -8056012 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_01' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'b3870c4c-764f-4d17-93a4-61fdcb03be46' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56e0ba87' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -8056012], ["username", "billy_01"], ["access_token", "60417f082941c54fbf46a52549394138"], ["uuid", "b3870c4c-764f-4d17-93a4-61fdcb03be46"], ["support_identifier", "cs_56e0ba87"], ["is_test", "t"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2018-10-16 18:06:16.700777"], ["updated_at", "2018-10-16 18:06:16.700777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -651332077 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_02' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f1def48b-b3ca-4652-b1e4-9cf58ac5830a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_56dcddf7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -651332077], ["username", "billy_02"], ["access_token", "a93db49e0c2ca867de76b567b163b3c4"], ["uuid", "f1def48b-b3ca-4652-b1e4-9cf58ac5830a"], ["support_identifier", "cs_56dcddf7"], ["is_test", "t"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2018-10-16 18:06:16.705203"], ["updated_at", "2018-10-16 18:06:16.705203"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -634246473 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_03' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '1bb694d3-9536-4c4f-9482-fbbd59320d63' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9bd5e6de' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -634246473], ["username", "billy_03"], ["access_token", "db746732c7b3f61ed1ed15ff6bd5e383"], ["uuid", "1bb694d3-9536-4c4f-9482-fbbd59320d63"], ["support_identifier", "cs_9bd5e6de"], ["is_test", "t"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2018-10-16 18:06:16.709902"], ["updated_at", "2018-10-16 18:06:16.709902"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1712125326 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_04' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'be306ac8-6aa7-4ad3-8298-e2895a30bbca' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_1fa8f0ba' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1712125326], ["username", "billy_04"], ["access_token", "e0bee504048efc24a6bad347306465ee"], ["uuid", "be306ac8-6aa7-4ad3-8298-e2895a30bbca"], ["support_identifier", "cs_1fa8f0ba"], ["is_test", "t"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2018-10-16 18:06:16.714058"], ["updated_at", "2018-10-16 18:06:16.714058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -996875316 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_05' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e78bed0c-42ca-447a-8cf3-16dd843f740a' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bc10903' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -996875316], ["username", "billy_05"], ["access_token", "c0de70aaedce30c2278734ac5325dfd5"], ["uuid", "e78bed0c-42ca-447a-8cf3-16dd843f740a"], ["support_identifier", "cs_4bc10903"], ["is_test", "t"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2018-10-16 18:06:16.718149"], ["updated_at", "2018-10-16 18:06:16.718149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1414931421 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_06' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '749a11b6-a09e-42de-8799-8043662bc31f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.5ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b6f4f67e' LIMIT 1 + SQL (0.7ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1414931421], ["username", "billy_06"], ["access_token", "70e7124a3affe7ffc310a918cc95d43c"], ["uuid", "749a11b6-a09e-42de-8799-8043662bc31f"], ["support_identifier", "cs_b6f4f67e"], ["is_test", "t"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2018-10-16 18:06:16.723327"], ["updated_at", "2018-10-16 18:06:16.723327"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -415565176 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_07' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '03d2f447-00a0-4f9b-bdac-075f5718130e' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c9f78f50' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -415565176], ["username", "billy_07"], ["access_token", "e741ff6570944c69bb5bea0113f7e2c5"], ["uuid", "03d2f447-00a0-4f9b-bdac-075f5718130e"], ["support_identifier", "cs_c9f78f50"], ["is_test", "t"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2018-10-16 18:06:16.730241"], ["updated_at", "2018-10-16 18:06:16.730241"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -18685539 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_08' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '110428e7-b67d-4e54-8a4f-4b04c28e9f57' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5ca92f0d' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -18685539], ["username", "billy_08"], ["access_token", "883532c326cd7b5640c4b52cf35871cb"], ["uuid", "110428e7-b67d-4e54-8a4f-4b04c28e9f57"], ["support_identifier", "cs_5ca92f0d"], ["is_test", "t"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2018-10-16 18:06:16.734390"], ["updated_at", "2018-10-16 18:06:16.734390"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -881222156 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_09' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5e6fcee-fa35-4f63-9b9d-28a50ae746bb' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_6a172a5c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -881222156], ["username", "billy_09"], ["access_token", "38988c2431bbe10840598687f8eab14f"], ["uuid", "e5e6fcee-fa35-4f63-9b9d-28a50ae746bb"], ["support_identifier", "cs_6a172a5c"], ["is_test", "t"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2018-10-16 18:06:16.738524"], ["updated_at", "2018-10-16 18:06:16.738524"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -660180572 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_10' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6d983eea-dce5-4d49-a7f0-51e05637cbae' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_fefb72ec' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -660180572], ["username", "billy_10"], ["access_token", "6c011613b567ce086b8081c8180aa5c6"], ["uuid", "6d983eea-dce5-4d49-a7f0-51e05637cbae"], ["support_identifier", "cs_fefb72ec"], ["is_test", "t"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2018-10-16 18:06:16.743218"], ["updated_at", "2018-10-16 18:06:16.743218"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2132808636 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '87ecd007-bb47-4644-aa39-bdbf6ec86f47' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5535bd12' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2132808636], ["username", "billy_11"], ["access_token", "2baa5451119d842806e18a66d4498b5d"], ["uuid", "87ecd007-bb47-4644-aa39-bdbf6ec86f47"], ["support_identifier", "cs_5535bd12"], ["is_test", "t"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2018-10-16 18:06:16.747358"], ["updated_at", "2018-10-16 18:06:16.747358"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96726890 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_12' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '33ab5b0a-d07c-4524-a783-720f252e9abd' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4caea502' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -96726890], ["username", "billy_12"], ["access_token", "9dcc1c4dabc9be05e13ead13b32864ec"], ["uuid", "33ab5b0a-d07c-4524-a783-720f252e9abd"], ["support_identifier", "cs_4caea502"], ["is_test", "t"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2018-10-16 18:06:16.751415"], ["updated_at", "2018-10-16 18:06:16.751415"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2054458426 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_13' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bbfd1b77-2567-4498-8e08-57166e025d36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4d78ebe1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2054458426], ["username", "billy_13"], ["access_token", "f571f79404444ab1481c5358a573e687"], ["uuid", "bbfd1b77-2567-4498-8e08-57166e025d36"], ["support_identifier", "cs_4d78ebe1"], ["is_test", "t"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2018-10-16 18:06:16.756472"], ["updated_at", "2018-10-16 18:06:16.756472"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1424544685 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_14' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a7b20bdb-711d-4e09-90b7-a0e762e14a8b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e89cf396' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1424544685], ["username", "billy_14"], ["access_token", "8f614f70aa1d5312e27f77e36c1d687b"], ["uuid", "a7b20bdb-711d-4e09-90b7-a0e762e14a8b"], ["support_identifier", "cs_e89cf396"], ["is_test", "t"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2018-10-16 18:06:16.760856"], ["updated_at", "2018-10-16 18:06:16.760856"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1238603103 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_15' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd8b4b190-4ffd-4c3f-87c7-ed30c6c48f43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_de5fccc7' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1238603103], ["username", "billy_15"], ["access_token", "0faee0309912894d6b45d11cb8cf6755"], ["uuid", "d8b4b190-4ffd-4c3f-87c7-ed30c6c48f43"], ["support_identifier", "cs_de5fccc7"], ["is_test", "t"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2018-10-16 18:06:16.764914"], ["updated_at", "2018-10-16 18:06:16.764914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -787508677 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_16' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6600761a-9f7e-469c-b5f5-6b9f79e292f8' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_825f3205' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -787508677], ["username", "billy_16"], ["access_token", "69741b0915d8d736147c9773c5b6ec65"], ["uuid", "6600761a-9f7e-469c-b5f5-6b9f79e292f8"], ["support_identifier", "cs_825f3205"], ["is_test", "t"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2018-10-16 18:06:16.768942"], ["updated_at", "2018-10-16 18:06:16.768942"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -801816547 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_17' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ae80448c-58dd-42dd-8598-c6da57a98918' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4f59f9a6' LIMIT 1 + SQL (0.8ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -801816547], ["username", "billy_17"], ["access_token", "e0889f9546f75e131f006cc59d978ea9"], ["uuid", "ae80448c-58dd-42dd-8598-c6da57a98918"], ["support_identifier", "cs_4f59f9a6"], ["is_test", "t"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2018-10-16 18:06:16.773165"], ["updated_at", "2018-10-16 18:06:16.773165"]] +  (0.3ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1717928285 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_18' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9dc9abc4-d00b-48ca-8cf7-b2206e88fc56' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5e8a8982' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1717928285], ["username", "billy_18"], ["access_token", "129fb014558e812d29f9bd19baf8e86a"], ["uuid", "9dc9abc4-d00b-48ca-8cf7-b2206e88fc56"], ["support_identifier", "cs_5e8a8982"], ["is_test", "t"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2018-10-16 18:06:16.780489"], ["updated_at", "2018-10-16 18:06:16.780489"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -379396692 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '02d8bb2a-c3d9-43b8-a63b-9e2b766060d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e99da68a' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -379396692], ["username", "billy_19"], ["access_token", "8873a07afbaee5ac3448a55a46c4799d"], ["uuid", "02d8bb2a-c3d9-43b8-a63b-9e2b766060d3"], ["support_identifier", "cs_e99da68a"], ["is_test", "t"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2018-10-16 18:06:16.784723"], ["updated_at", "2018-10-16 18:06:16.784723"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -694874561 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e88055ce-e5ee-4661-8c3f-1b1ef30baa9d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_66034004' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -694874561], ["username", "billy_20"], ["access_token", "244920c8f7637d107939bf3f8ecbebde"], ["uuid", "e88055ce-e5ee-4661-8c3f-1b1ef30baa9d"], ["support_identifier", "cs_66034004"], ["is_test", "t"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2018-10-16 18:06:16.788986"], ["updated_at", "2018-10-16 18:06:16.788986"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -658937826 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_21' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '08b3d2fb-836b-4a7d-91ad-46a723eb1e8f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_f475586f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -658937826], ["username", "billy_21"], ["access_token", "21beabeccbec1ac93d78cdc3ccfb5b72"], ["uuid", "08b3d2fb-836b-4a7d-91ad-46a723eb1e8f"], ["support_identifier", "cs_f475586f"], ["is_test", "t"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2018-10-16 18:06:16.793680"], ["updated_at", "2018-10-16 18:06:16.793680"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1510257295 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_22' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '4307d24c-712e-470b-a4c5-870a1a79c48c' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_316f3a95' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1510257295], ["username", "billy_22"], ["access_token", "dacb4f0b48e2214119c2f925a63d432f"], ["uuid", "4307d24c-712e-470b-a4c5-870a1a79c48c"], ["support_identifier", "cs_316f3a95"], ["is_test", "t"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2018-10-16 18:06:16.797797"], ["updated_at", "2018-10-16 18:06:16.797797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1244070626 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_23' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '9f59cc7a-22b8-4580-9403-254639be3cba' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_e0061d58' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1244070626], ["username", "billy_23"], ["access_token", "8489863bbdfae8ebe1d686f90b9084b2"], ["uuid", "9f59cc7a-22b8-4580-9403-254639be3cba"], ["support_identifier", "cs_e0061d58"], ["is_test", "t"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2018-10-16 18:06:16.801865"], ["updated_at", "2018-10-16 18:06:16.801865"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -79180914 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_24' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e5cfe711-a42f-4fc5-8514-7f14af193aad' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_010cdfeb' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -79180914], ["username", "billy_24"], ["access_token", "5ffb6fba3a522572c7aa652a220c6e59"], ["uuid", "e5cfe711-a42f-4fc5-8514-7f14af193aad"], ["support_identifier", "cs_010cdfeb"], ["is_test", "t"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2018-10-16 18:06:16.806503"], ["updated_at", "2018-10-16 18:06:16.806503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -403518459 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '5e82aa7e-7db4-425d-a18d-41c758e23d2f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7d9bc183' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -403518459], ["username", "billy_25"], ["access_token", "3e6586b387d870088b5c98d3f55ad897"], ["uuid", "5e82aa7e-7db4-425d-a18d-41c758e23d2f"], ["support_identifier", "cs_7d9bc183"], ["is_test", "t"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2018-10-16 18:06:16.810914"], ["updated_at", "2018-10-16 18:06:16.810914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -69351521 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_26' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a4e9954e-834c-4ffa-9a97-fb0e7f202739' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_67a6e897' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -69351521], ["username", "billy_26"], ["access_token", "7956a62e21d10c42feeded6b8966606d"], ["uuid", "a4e9954e-834c-4ffa-9a97-fb0e7f202739"], ["support_identifier", "cs_67a6e897"], ["is_test", "t"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2018-10-16 18:06:16.815058"], ["updated_at", "2018-10-16 18:06:16.815058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -82314637 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_27' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'dc8180d0-ec9e-49c5-b862-81503c68ee11' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_a11f7bd9' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -82314637], ["username", "billy_27"], ["access_token", "a3e1bdd2833919e35e5179de677abc2b"], ["uuid", "dc8180d0-ec9e-49c5-b862-81503c68ee11"], ["support_identifier", "cs_a11f7bd9"], ["is_test", "t"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2018-10-16 18:06:16.819376"], ["updated_at", "2018-10-16 18:06:16.819376"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1665096189 LIMIT 1 + OpenStax::Accounts::Account Exists (0.8ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_28' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'e249c1b8-5f05-4523-a864-900422bb5933' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_baf4c033' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1665096189], ["username", "billy_28"], ["access_token", "515a391b4043fb69c2f4139900a79c7e"], ["uuid", "e249c1b8-5f05-4523-a864-900422bb5933"], ["support_identifier", "cs_baf4c033"], ["is_test", "t"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2018-10-16 18:06:16.826265"], ["updated_at", "2018-10-16 18:06:16.826265"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1580702887 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_29' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '6db07fda-fd35-4442-8c83-ab7da399dbce' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c7f70831' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1580702887], ["username", "billy_29"], ["access_token", "5d56fe165d43462fc923b2c04bfedff6"], ["uuid", "6db07fda-fd35-4442-8c83-ab7da399dbce"], ["support_identifier", "cs_c7f70831"], ["is_test", "t"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2018-10-16 18:06:16.830966"], ["updated_at", "2018-10-16 18:06:16.830966"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1993796707 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_30' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'ffedd7c9-6388-41fb-b588-3692acce889b' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_cb711fa1' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1993796707], ["username", "billy_30"], ["access_token", "d3fbda90caef11c0990da43544291440"], ["uuid", "ffedd7c9-6388-41fb-b588-3692acce889b"], ["support_identifier", "cs_cb711fa1"], ["is_test", "t"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2018-10-16 18:06:16.835208"], ["updated_at", "2018-10-16 18:06:16.835208"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1094527609 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_31' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8c5bc21b-137b-499f-95ff-bea5a0ded446' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b39216f' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1094527609], ["username", "billy_31"], ["access_token", "cc54ec05b2f967099f2d443e4b6e9eb1"], ["uuid", "8c5bc21b-137b-499f-95ff-bea5a0ded446"], ["support_identifier", "cs_7b39216f"], ["is_test", "t"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2018-10-16 18:06:16.839753"], ["updated_at", "2018-10-16 18:06:16.839753"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561797912 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_32' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'eeded6ad-f832-4545-ad56-16b292fd4195' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_248c16ee' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1561797912], ["username", "billy_32"], ["access_token", "2bacc6a08283b6bf2e25506e6792ffe8"], ["uuid", "eeded6ad-f832-4545-ad56-16b292fd4195"], ["support_identifier", "cs_248c16ee"], ["is_test", "t"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2018-10-16 18:06:16.844266"], ["updated_at", "2018-10-16 18:06:16.844266"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -730607112 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '62e127a9-e9a0-488f-ae43-1f1241b8394d' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_9719b6f8' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -730607112], ["username", "billy_33"], ["access_token", "d9d06a6bb88af690c641791b02d2b9f3"], ["uuid", "62e127a9-e9a0-488f-ae43-1f1241b8394d"], ["support_identifier", "cs_9719b6f8"], ["is_test", "t"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2018-10-16 18:06:16.852183"], ["updated_at", "2018-10-16 18:06:16.852183"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1603955609 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_34' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '29c0a621-8470-4649-aacd-03e418b787b7' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_3cf0dc2c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1603955609], ["username", "billy_34"], ["access_token", "f98a6ee0cdaf169dbedd65c298a57c68"], ["uuid", "29c0a621-8470-4649-aacd-03e418b787b7"], ["support_identifier", "cs_3cf0dc2c"], ["is_test", "t"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2018-10-16 18:06:16.857456"], ["updated_at", "2018-10-16 18:06:16.857456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1249269385 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_35' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '8750b8ab-0f2d-45fe-976e-0d904f55ab25' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_445512a6' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1249269385], ["username", "billy_35"], ["access_token", "e714c67a5d332fba5d2a5c51850a5b3a"], ["uuid", "8750b8ab-0f2d-45fe-976e-0d904f55ab25"], ["support_identifier", "cs_445512a6"], ["is_test", "t"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2018-10-16 18:06:16.861805"], ["updated_at", "2018-10-16 18:06:16.861805"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -614748910 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_36' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '62330d61-e31a-4cfd-b11a-8b53ca6137d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_729850bc' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -614748910], ["username", "billy_36"], ["access_token", "f66dd27df336defc7357613dd50affc9"], ["uuid", "62330d61-e31a-4cfd-b11a-8b53ca6137d3"], ["support_identifier", "cs_729850bc"], ["is_test", "t"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2018-10-16 18:06:16.865929"], ["updated_at", "2018-10-16 18:06:16.865929"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416515727 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_37' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '220fa51e-e023-4134-bcf7-8fae054d3721' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_0b58095f' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1416515727], ["username", "billy_37"], ["access_token", "362d7f2f153a7131c88fc145314d9ef6"], ["uuid", "220fa51e-e023-4134-bcf7-8fae054d3721"], ["support_identifier", "cs_0b58095f"], ["is_test", "t"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2018-10-16 18:06:16.869969"], ["updated_at", "2018-10-16 18:06:16.869969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -495393421 LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_38' LIMIT 1 + OpenStax::Accounts::Account Exists (0.9ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '534dab31-9a87-4e2e-971d-960c3f4571d3' LIMIT 1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_717896e7' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -495393421], ["username", "billy_38"], ["access_token", "014b932fc7d82db515a6de718f7740eb"], ["uuid", "534dab31-9a87-4e2e-971d-960c3f4571d3"], ["support_identifier", "cs_717896e7"], ["is_test", "t"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2018-10-16 18:06:16.876884"], ["updated_at", "2018-10-16 18:06:16.876884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -67943746 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'bea24780-5357-4e4a-a05f-0aca898e7f33' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_2186f3cb' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -67943746], ["username", "billy_39"], ["access_token", "86b8b53f8c08b8d29ac03f85c1b1dd2f"], ["uuid", "bea24780-5357-4e4a-a05f-0aca898e7f33"], ["support_identifier", "cs_2186f3cb"], ["is_test", "t"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2018-10-16 18:06:16.881362"], ["updated_at", "2018-10-16 18:06:16.881362"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -105522575 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_40' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '395ebdee-15f3-4e32-88b1-21f0d9db7945' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_b1886fd0' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -105522575], ["username", "billy_40"], ["access_token", "1b97005638ebedc61bf49858b2b1571d"], ["uuid", "395ebdee-15f3-4e32-88b1-21f0d9db7945"], ["support_identifier", "cs_b1886fd0"], ["is_test", "t"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2018-10-16 18:06:16.885531"], ["updated_at", "2018-10-16 18:06:16.885531"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2048728121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_41' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'f7df0e84-0bcc-4379-93c2-b7333aa1c305' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_5b04a9bd' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -2048728121], ["username", "billy_41"], ["access_token", "7af4b0c7ac4ebcdb067868a6e003a60a"], ["uuid", "f7df0e84-0bcc-4379-93c2-b7333aa1c305"], ["support_identifier", "cs_5b04a9bd"], ["is_test", "t"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2018-10-16 18:06:16.890143"], ["updated_at", "2018-10-16 18:06:16.890143"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -659645505 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_42' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'a00aca3d-5ab3-4bd0-8e46-3a172970df43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_4bd921ea' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -659645505], ["username", "billy_42"], ["access_token", "ca88f039eda61281821c7b1ed604e841"], ["uuid", "a00aca3d-5ab3-4bd0-8e46-3a172970df43"], ["support_identifier", "cs_4bd921ea"], ["is_test", "t"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2018-10-16 18:06:16.894451"], ["updated_at", "2018-10-16 18:06:16.894451"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1626409086 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_43' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = 'd0d2c802-5d42-4aa0-8451-c3b80fc89174' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_60e8ed25' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -1626409086], ["username", "billy_43"], ["access_token", "7774a22dd7e9ddf60cd13aa348d025eb"], ["uuid", "d0d2c802-5d42-4aa0-8451-c3b80fc89174"], ["support_identifier", "cs_60e8ed25"], ["is_test", "t"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2018-10-16 18:06:16.898600"], ["updated_at", "2018-10-16 18:06:16.898600"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -781627121 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_44' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '28f261c8-12b7-477a-95c7-10eb92ea6966' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_8ad67b2b' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -781627121], ["username", "billy_44"], ["access_token", "3b71ff4e0a908782208a3a7c20764579"], ["uuid", "28f261c8-12b7-477a-95c7-10eb92ea6966"], ["support_identifier", "cs_8ad67b2b"], ["is_test", "t"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2018-10-16 18:06:16.902775"], ["updated_at", "2018-10-16 18:06:16.902775"]] +  (0.2ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.4ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -401723937 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '3129f484-db8d-42fc-9332-0aab91cf4011' LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_17f2f6e1' LIMIT 1 + SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "first_name", "last_name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["openstax_uid", -401723937], ["username", "billy_45"], ["access_token", "68e6e59e2ba0f0210be2cc3c4389d499"], ["uuid", "3129f484-db8d-42fc-9332-0aab91cf4011"], ["support_identifier", "cs_17f2f6e1"], ["is_test", "t"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2018-10-16 18:06:16.907491"], ["updated_at", "2018-10-16 18:06:16.907491"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') +  (0.1ms) RELEASE SAVEPOINT active_record_1 + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" ILIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20 + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_20"]] + OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = $1 LIMIT 1 [["username", "billy_39"]] +  (0.1ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '24eb45a3-ac62-499d-a7cb-b345de64d49f' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_7b95016b' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "ca479160adfe6b7e87e0cbde540e6d2d"], ["uuid", "24eb45a3-ac62-499d-a7cb-b345de64d49f"], ["support_identifier", "cs_7b95016b"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:16.917433"], ["updated_at", "2018-10-16 18:06:16.917433"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML + Parameters: {"id"=>"10"} + OpenStax::Accounts::Account Load (0.5ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = $1 LIMIT 1 [["openstax_uid", 10]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 754]] +Redirected to http://test.host/ +Completed 302 Found in 3ms (ActiveRecord: 0.7ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +  (0.1ms) SAVEPOINT active_record_1 + OpenStax::Accounts::Account Exists (0.3ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'some_user' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."uuid" = '459600b6-8286-40b7-90ac-7a4c63eb2849' LIMIT 1 + OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."support_identifier" = 'cs_c6844d7c' LIMIT 1 + SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "uuid", "support_identifier", "is_test", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["openstax_uid", 10], ["username", "some_user"], ["access_token", "90a6bcf006d679817271e5552ed12bd5"], ["uuid", "459600b6-8286-40b7-90ac-7a4c63eb2849"], ["support_identifier", "cs_c6844d7c"], ["is_test", "t"], ["created_at", "2018-10-16 18:06:16.932543"], ["updated_at", "2018-10-16 18:06:16.932543"]] +  (0.1ms) RELEASE SAVEPOINT active_record_1 +Processing by OpenStax::Accounts::Dev::AccountsController#index as HTML + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. + Rendered /Users/dante/Desktop/accounts-rails/app/views/openstax/accounts/dev/accounts/index.html.erb within layouts/openstax/accounts/application (0.3ms) + Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary. +Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms) +  (0.2ms) ROLLBACK +  (0.1ms) BEGIN +Processing by AnonymousController#action_needing_authentication as +Redirected to http://test.host/accounts/login +Filter chain halted as :authenticate_user! rendered or redirected +Completed 302 Found in 7ms (ActiveRecord: 0.0ms) +  (0.1ms) ROLLBACK