openstax_accounts 5.1.1 → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b2fc4b92f115119a36d3e3188de250182dc50f0
4
- data.tar.gz: 092006b7ade9f42b6d7e99fb7d3efc17f443b490
3
+ metadata.gz: 52a87257d6d2ee3d340b91510148bbe171b4e81d
4
+ data.tar.gz: cdfe36bd3626635f3880ef9dd84e224135056c69
5
5
  SHA512:
6
- metadata.gz: e2129e6b35b050409c9c76e25ec7c827a415998f84d287c4e8792168ac363c8e945b8f00cb1bf0f3623d6a1ff5351ad8b57817e5f0923c3b63689c32575110ad
7
- data.tar.gz: c3ffea3595ffac15a2f4397b1c27a11b139f9fe3f08bbbb06e3417e597530b9634f865c949cb12d87d533dde67dbdfabf35cb0582303d5dae27b77a8fd6c1950
6
+ metadata.gz: 9ff1a5fccb2ffd2d738d57acb9d2c7cb3efc21c2a86382115a64151249da56a23c191d1b83743b29ea05d483594842af0ae640e6587e488817eb3b8f992aca24
7
+ data.tar.gz: bde8c0cd5028e80fd0d55d5c371a1fbc7d8a7f8785d1ff0b4649c4e74f4d83012d9d9f184ea01f3c2031aa3d6287179bca5c52de5657520830c3c92d3bea970e
@@ -8,11 +8,15 @@ module OpenStax
8
8
 
9
9
  protected
10
10
 
11
- def exec(inputs={})
11
+ def exec(email: nil, username: nil, password: nil)
12
+ raise ArgumentError,
13
+ 'You must specify either an email address or a username (and an optional password)' \
14
+ if email.nil? && username.nil?
15
+
12
16
  if OpenStax::Accounts.configuration.enable_stubbing
13
17
  id = -SecureRandom.hex(4).to_i(16)/2
14
18
  else
15
- response = Api.create_temp_account(inputs)
19
+ response = Api.create_temp_account(email: email, username: username, password: password)
16
20
  fatal_error(code: :invalid_inputs) unless response.status == 200
17
21
 
18
22
  struct = OpenStruct.new
@@ -23,7 +27,6 @@ module OpenStax
23
27
  account = Account.find_or_initialize_by(openstax_uid: id)
24
28
 
25
29
  unless account.persisted?
26
- username = inputs[:username]
27
30
  while username.nil? || Account.where(username: username).exists? do
28
31
  username = SecureRandom.hex(3).to_s
29
32
  end
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Accounts
3
- VERSION = "5.1.1"
3
+ VERSION = "5.1.2"
4
4
  end
5
5
  end
@@ -1031410,3 +1031410,2972 @@ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
1031410
1031410
   (0.0ms) RELEASE SAVEPOINT active_record_1
1031411
1031411
  OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1031412
1031412
   (0.5ms) rollback transaction
1031413
+  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar NOT NULL, "access_token" varchar, "first_name" varchar, "last_name" varchar, "full_name" varchar, "title" varchar, "created_at" datetime, "updated_at" datetime) 
1031414
+  (0.1ms) select sqlite_version(*)
1031415
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
1031416
+  (0.1ms) SELECT sql
1031417
+ FROM sqlite_master
1031418
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031419
+ UNION ALL
1031420
+ SELECT sql
1031421
+ FROM sqlite_temp_master
1031422
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031423
+
1031424
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
1031425
+  (0.1ms) SELECT sql
1031426
+ FROM sqlite_master
1031427
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031428
+ UNION ALL
1031429
+ SELECT sql
1031430
+ FROM sqlite_temp_master
1031431
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031432
+
1031433
+  (0.1ms)  SELECT sql
1031434
+ FROM sqlite_master
1031435
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031436
+ UNION ALL
1031437
+ SELECT sql
1031438
+ FROM sqlite_temp_master
1031439
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031440
+ 
1031441
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
1031442
+  (0.1ms)  SELECT sql
1031443
+ FROM sqlite_master
1031444
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031445
+ UNION ALL
1031446
+ SELECT sql
1031447
+ FROM sqlite_temp_master
1031448
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031449
+ 
1031450
+  (0.1ms) SELECT sql
1031451
+ FROM sqlite_master
1031452
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031453
+ UNION ALL
1031454
+ SELECT sql
1031455
+ FROM sqlite_temp_master
1031456
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031457
+
1031458
+  (0.1ms)  SELECT sql
1031459
+ FROM sqlite_master
1031460
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031461
+ UNION ALL
1031462
+ SELECT sql
1031463
+ FROM sqlite_temp_master
1031464
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031465
+ 
1031466
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
1031467
+  (0.1ms)  SELECT sql
1031468
+ FROM sqlite_master
1031469
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1031470
+ UNION ALL
1031471
+ SELECT sql
1031472
+ FROM sqlite_temp_master
1031473
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1031474
+ 
1031475
+  (0.1ms) SELECT sql
1031476
+ FROM sqlite_master
1031477
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031478
+ UNION ALL
1031479
+ SELECT sql
1031480
+ FROM sqlite_temp_master
1031481
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031482
+
1031483
+  (0.1ms)  SELECT sql
1031484
+ FROM sqlite_master
1031485
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031486
+ UNION ALL
1031487
+ SELECT sql
1031488
+ FROM sqlite_temp_master
1031489
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031490
+ 
1031491
+  (0.1ms) SELECT sql
1031492
+ FROM sqlite_master
1031493
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031494
+ UNION ALL
1031495
+ SELECT sql
1031496
+ FROM sqlite_temp_master
1031497
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031498
+
1031499
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
1031500
+  (0.1ms) SELECT sql
1031501
+ FROM sqlite_master
1031502
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
1031503
+ UNION ALL
1031504
+ SELECT sql
1031505
+ FROM sqlite_temp_master
1031506
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
1031507
+
1031508
+  (0.1ms)  SELECT sql
1031509
+ FROM sqlite_master
1031510
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1031511
+ UNION ALL
1031512
+ SELECT sql
1031513
+ FROM sqlite_temp_master
1031514
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1031515
+ 
1031516
+  (0.1ms) SELECT sql
1031517
+ FROM sqlite_master
1031518
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031519
+ UNION ALL
1031520
+ SELECT sql
1031521
+ FROM sqlite_temp_master
1031522
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1031523
+
1031524
+  (0.1ms)  SELECT sql
1031525
+ FROM sqlite_master
1031526
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031527
+ UNION ALL
1031528
+ SELECT sql
1031529
+ FROM sqlite_temp_master
1031530
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1031531
+ 
1031532
+  (0.1ms) SELECT sql
1031533
+ FROM sqlite_master
1031534
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031535
+ UNION ALL
1031536
+ SELECT sql
1031537
+ FROM sqlite_temp_master
1031538
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1031539
+
1031540
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
1031541
+  (0.8ms) CREATE TABLE "openstax_accounts_group_members" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
1031542
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" ("group_id", "user_id")
1031543
+  (0.1ms) SELECT sql
1031544
+ FROM sqlite_master
1031545
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
1031546
+ UNION ALL
1031547
+ SELECT sql
1031548
+ FROM sqlite_temp_master
1031549
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
1031550
+
1031551
+  (0.7ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" ("user_id")
1031552
+  (0.8ms) CREATE TABLE "openstax_accounts_group_nestings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "member_group_id" integer NOT NULL, "container_group_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
1031553
+  (0.8ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" ("container_group_id")
1031554
+  (0.1ms) SELECT sql
1031555
+ FROM sqlite_master
1031556
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
1031557
+ UNION ALL
1031558
+ SELECT sql
1031559
+ FROM sqlite_temp_master
1031560
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
1031561
+
1031562
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" ("member_group_id")
1031563
+  (0.8ms) CREATE TABLE "openstax_accounts_group_owners" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
1031564
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" ("group_id", "user_id")
1031565
+  (0.1ms) SELECT sql
1031566
+ FROM sqlite_master
1031567
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
1031568
+ UNION ALL
1031569
+ SELECT sql
1031570
+ FROM sqlite_temp_master
1031571
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
1031572
+
1031573
+  (0.8ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" ("user_id")
1031574
+  (0.8ms) CREATE TABLE "openstax_accounts_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" varchar, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" datetime, "updated_at" datetime)
1031575
+  (0.8ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" ("is_public")
1031576
+  (0.1ms) SELECT sql
1031577
+ FROM sqlite_master
1031578
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
1031579
+ UNION ALL
1031580
+ SELECT sql
1031581
+ FROM sqlite_temp_master
1031582
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
1031583
+
1031584
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" ("openstax_uid")
1031585
+  (0.8ms) CREATE TABLE "ownerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer NOT NULL, "owner_type" varchar NOT NULL, "created_at" datetime, "updated_at" datetime)
1031586
+  (0.8ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" ("owner_id", "owner_type")
1031587
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
1031588
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" ("account_id")
1031589
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1031590
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1031591
+  (0.1ms) SELECT version FROM "schema_migrations"
1031592
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('6')
1031593
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('5')
1031594
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1031595
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
1031596
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('2')
1031597
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('3')
1031598
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('4')
1031599
+  (0.3ms) begin transaction
1031600
+  (0.1ms) SAVEPOINT active_record_1
1031601
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1031602
+ SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "User"], ["created_at", "2015-05-01 18:25:54.600298"], ["updated_at", "2015-05-01 18:25:54.600298"]]
1031603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031604
+  (0.0ms) SAVEPOINT active_record_1
1031605
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1
1031606
+ SQL (0.5ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "Fuego"], ["created_at", "2015-05-01 18:25:54.603029"], ["updated_at", "2015-05-01 18:25:54.603029"]]
1031607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031608
+  (0.0ms) SAVEPOINT active_record_1
1031609
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1
1031610
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Member Group"], ["openstax_uid", 2], ["created_at", "2015-05-01 18:25:54.609504"], ["updated_at", "2015-05-01 18:25:54.609504"]]
1031611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031612
+  (0.1ms) SAVEPOINT active_record_1
1031613
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 2) LIMIT 1
1031614
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 2], ["user_id", 2], ["created_at", "2015-05-01 18:25:54.624086"], ["updated_at", "2015-05-01 18:25:54.624086"]]
1031615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031616
+  (0.0ms) SAVEPOINT active_record_1
1031617
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1
1031618
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Container Group"], ["openstax_uid", 4], ["created_at", "2015-05-01 18:25:54.626369"], ["updated_at", "2015-05-01 18:25:54.626369"]]
1031619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031620
+  (0.0ms) SAVEPOINT active_record_1
1031621
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 2 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1
1031622
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 4], ["user_id", 2], ["created_at", "2015-05-01 18:25:54.632476"], ["updated_at", "2015-05-01 18:25:54.632476"]]
1031623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031624
+  (0.1ms) SAVEPOINT active_record_1
1031625
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 2 LIMIT 1
1031626
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2015-05-01 18:25:54.642285"], ["updated_at", "2015-05-01 18:25:54.642285"]]
1031627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031628
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1031629
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031630
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031631
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031632
+ OpenStax::Accounts::Account Exists (0.2ms) 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 2], ["id", 1]]
1031633
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031634
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031635
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031636
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1031637
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031638
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 4], ["id", 1]]
1031639
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031640
+ Processing by OauthController#token as */*
1031641
+ Parameters: {"grant_type"=>"client_credentials"}
1031642
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1031643
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031644
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1031645
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1031646
+ OpenStax::Accounts::GroupOwner Load (0.1ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
1031647
+ OpenStax::Accounts::GroupMember Load (0.1ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
1031648
+  (0.0ms) SAVEPOINT active_record_1
1031649
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 1]]
1031650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031651
+ OpenStax::Accounts::GroupNesting Load (0.1ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
1031652
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 3]]
1031653
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 3]]
1031654
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 3]]
1031655
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]]
1031656
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
1031657
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
1031658
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
1031659
+  (0.0ms) SAVEPOINT active_record_1
1031660
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1
1031661
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2015-05-01 18:25:54.727840"], ["updated_at", "2015-05-01 18:25:54.727840"]]
1031662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031663
+  (0.0ms) SAVEPOINT active_record_1
1031664
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1031665
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "name" = ?, "updated_at" = ? WHERE "openstax_accounts_groups"."id" = ? [["name", "M"], ["updated_at", "2015-05-01 18:25:54.729870"], ["id", 1]]
1031666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031667
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]]
1031668
+  (0.0ms) SAVEPOINT active_record_1
1031669
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
1031670
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1
1031671
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1
1031672
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["name", "Fuego's Deputies"], ["created_at", "2015-05-01 18:25:54.733488"], ["updated_at", "2015-05-01 18:25:54.733488"]]
1031673
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
1031674
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 3], ["user_id", 3], ["created_at", "2015-05-01 18:25:54.734710"], ["updated_at", "2015-05-01 18:25:54.734710"]]
1031675
+ OpenStax::Accounts::GroupMember Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1
1031676
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 3], ["user_id", 2], ["created_at", "2015-05-01 18:25:54.735940"], ["updated_at", "2015-05-01 18:25:54.735940"]]
1031677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031678
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031679
+ Processing by OauthController#token as */*
1031680
+ Parameters: {"grant_type"=>"client_credentials"}
1031681
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031682
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031683
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1031684
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
1031685
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031686
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1031687
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031688
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031689
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031690
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031691
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 2], ["id", 3]]
1031692
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031693
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031694
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031695
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031696
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1031697
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031698
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031699
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031700
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1031701
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 2]]
1031702
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031703
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1031704
+ OpenStax::Accounts::Account Exists (0.0ms) 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 1]]
1031705
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031706
+ Processing by OauthController#token as */*
1031707
+ Parameters: {"grant_type"=>"client_credentials"}
1031708
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031709
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031710
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1031711
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1031712
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
1031713
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
1031714
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
1031715
+  (0.0ms) SAVEPOINT active_record_1
1031716
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = ? [["id", 2]]
1031717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031718
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 3]]
1031719
+  (0.0ms) SAVEPOINT active_record_1
1031720
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = ? [["id", 2]]
1031721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031722
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 3]]
1031723
+  (0.0ms) SAVEPOINT active_record_1
1031724
+ SQL (0.0ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 2]]
1031725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031726
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 3]]
1031727
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]]
1031728
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
1031729
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
1031730
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
1031731
+  (0.0ms) SAVEPOINT active_record_1
1031732
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1
1031733
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2015-05-01 18:25:54.787192"], ["updated_at", "2015-05-01 18:25:54.787192"]]
1031734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031735
+  (0.0ms) SAVEPOINT active_record_1
1031736
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1031737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031738
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]]
1031739
+ OpenStax::Accounts::GroupMember Load (0.0ms) SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 3]]
1031740
+  (0.0ms) SAVEPOINT active_record_1
1031741
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1
1031742
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 3], ["user_id", 2], ["created_at", "2015-05-01 18:25:54.791347"], ["updated_at", "2015-05-01 18:25:54.791347"]]
1031743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031744
+ OpenStax::Accounts::GroupOwner Load (0.0ms) SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 3]]
1031745
+  (0.0ms) SAVEPOINT active_record_1
1031746
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
1031747
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 3], ["user_id", 3], ["created_at", "2015-05-01 18:25:54.793696"], ["updated_at", "2015-05-01 18:25:54.793696"]]
1031748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031749
+ OpenStax::Accounts::GroupNesting Load (0.0ms) SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 3]]
1031750
+  (0.0ms) SAVEPOINT active_record_1
1031751
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1
1031752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031753
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031754
+ Processing by OauthController#token as */*
1031755
+ Parameters: {"grant_type"=>"client_credentials"}
1031756
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031757
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-05-01 13:25:54 -0500
1031758
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1031759
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
1031760
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031761
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1031762
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031763
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031764
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031765
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031766
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 2], ["id", 3]]
1031767
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031768
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031769
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
1031770
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1031771
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1031772
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031773
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031774
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031775
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1031776
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 2]]
1031777
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1031778
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1031779
+ OpenStax::Accounts::Account Exists (0.1ms) 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" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 1]]
1031780
+  (1.1ms) rollback transaction
1031781
+  (0.4ms) begin transaction
1031782
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1
1031783
+  (0.1ms) SAVEPOINT active_record_1
1031784
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
1031785
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2015-05-01 18:25:54.835545"], ["updated_at", "2015-05-01 18:25:54.835545"]]
1031786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031787
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
1031788
+  (0.3ms) rollback transaction
1031789
+  (0.0ms) begin transaction
1031790
+  (0.0ms) SAVEPOINT active_record_1
1031791
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1031792
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "38108419da89f2929b8a66632b7698f8"], ["created_at", "2015-05-01 18:25:54.840606"], ["updated_at", "2015-05-01 18:25:54.840606"]]
1031793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031794
+ Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML
1031795
+ Parameters: {"id"=>"10"}
1031796
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 10]]
1031797
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1031798
+ Redirected to http://test.host/
1031799
+ Completed 302 Found in 12ms (ActiveRecord: 0.3ms)
1031800
+  (0.5ms) rollback transaction
1031801
+  (0.1ms) begin transaction
1031802
+  (0.0ms) SAVEPOINT active_record_1
1031803
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -471402739 LIMIT 1
1031804
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -471402739], ["username", "jstrav"], ["access_token", "5cd26d3f4f867310e378afef0178690a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:54.866650"], ["updated_at", "2015-05-01 18:25:54.866650"]]
1031805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031806
+  (0.0ms) SAVEPOINT active_record_1
1031807
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -276812247 LIMIT 1
1031808
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -276812247], ["username", "mary"], ["access_token", "37521b6522ddf36bf20b98aae599e6af"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:54.868811"], ["updated_at", "2015-05-01 18:25:54.868811"]]
1031809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031810
+  (0.0ms) SAVEPOINT active_record_1
1031811
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -867035472 LIMIT 1
1031812
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -867035472], ["username", "jstead"], ["access_token", "3b51f72b220e19d3515e37e7a0821437"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:54.870795"], ["updated_at", "2015-05-01 18:25:54.870795"]]
1031813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031814
+  (0.0ms) SAVEPOINT active_record_1
1031815
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -373458779 LIMIT 1
1031816
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -373458779], ["username", "bigbear"], ["access_token", "7e5c2fd4a46edfd5b23784a3f9342825"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:54.872493"], ["updated_at", "2015-05-01 18:25:54.872493"]]
1031817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031818
+  (0.0ms) SAVEPOINT active_record_1
1031819
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1580617869 LIMIT 1
1031820
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1580617869], ["username", "billy_00"], ["access_token", "67bb9ab3eb03db20c1968109b252d509"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-05-01 18:25:54.874198"], ["updated_at", "2015-05-01 18:25:54.874198"]]
1031821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031822
+  (0.0ms) SAVEPOINT active_record_1
1031823
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -953594338 LIMIT 1
1031824
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -953594338], ["username", "billy_01"], ["access_token", "1cf06c86a6bc99771942e845ad654fa1"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-05-01 18:25:54.875902"], ["updated_at", "2015-05-01 18:25:54.875902"]]
1031825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031826
+  (0.0ms) SAVEPOINT active_record_1
1031827
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1814867346 LIMIT 1
1031828
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1814867346], ["username", "billy_02"], ["access_token", "8268cd4e29effb784a770c733d430909"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-05-01 18:25:54.877584"], ["updated_at", "2015-05-01 18:25:54.877584"]]
1031829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031830
+  (0.0ms) SAVEPOINT active_record_1
1031831
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -708297603 LIMIT 1
1031832
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -708297603], ["username", "billy_03"], ["access_token", "3551c85294ea9c11a82d41651c27a8e2"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-05-01 18:25:54.879246"], ["updated_at", "2015-05-01 18:25:54.879246"]]
1031833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031834
+  (0.0ms) SAVEPOINT active_record_1
1031835
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2121436348 LIMIT 1
1031836
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2121436348], ["username", "billy_04"], ["access_token", "cdf981fd0fa065ab27f5d375812a04af"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:54.881001"], ["updated_at", "2015-05-01 18:25:54.881001"]]
1031837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031838
+  (0.0ms) SAVEPOINT active_record_1
1031839
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1643479142 LIMIT 1
1031840
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1643479142], ["username", "billy_05"], ["access_token", "f49e73b0495c964384961bd8bfefbd37"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:54.882699"], ["updated_at", "2015-05-01 18:25:54.882699"]]
1031841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031842
+  (0.0ms) SAVEPOINT active_record_1
1031843
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1629215216 LIMIT 1
1031844
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1629215216], ["username", "billy_06"], ["access_token", "342530938fa9466961aac1ad3ea7567f"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:54.884384"], ["updated_at", "2015-05-01 18:25:54.884384"]]
1031845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031846
+  (0.0ms) SAVEPOINT active_record_1
1031847
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -891703826 LIMIT 1
1031848
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -891703826], ["username", "billy_07"], ["access_token", "5a86b4831d6a64587f20315720fbc97f"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:54.886138"], ["updated_at", "2015-05-01 18:25:54.886138"]]
1031849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031850
+  (0.0ms) SAVEPOINT active_record_1
1031851
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1900312987 LIMIT 1
1031852
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1900312987], ["username", "billy_08"], ["access_token", "ad72fde068bac79204e104bd2f871d47"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:54.887913"], ["updated_at", "2015-05-01 18:25:54.887913"]]
1031853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031854
+  (0.0ms) SAVEPOINT active_record_1
1031855
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1923101830 LIMIT 1
1031856
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1923101830], ["username", "billy_09"], ["access_token", "73e31d30323e9e25e9debb55c857c68a"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:54.903251"], ["updated_at", "2015-05-01 18:25:54.903251"]]
1031857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031858
+  (0.0ms) SAVEPOINT active_record_1
1031859
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2109705480 LIMIT 1
1031860
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2109705480], ["username", "billy_10"], ["access_token", "1735b21f93bb26197f0013f2de4313a8"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:54.905256"], ["updated_at", "2015-05-01 18:25:54.905256"]]
1031861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031862
+  (0.0ms) SAVEPOINT active_record_1
1031863
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1462857290 LIMIT 1
1031864
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1462857290], ["username", "billy_11"], ["access_token", "37d99cff89c44eedc2846c80d391001b"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:54.907115"], ["updated_at", "2015-05-01 18:25:54.907115"]]
1031865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031866
+  (0.0ms) SAVEPOINT active_record_1
1031867
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2534952 LIMIT 1
1031868
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2534952], ["username", "billy_12"], ["access_token", "4bda8020299a5e4ff8fb0b27cb9d5967"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:54.908871"], ["updated_at", "2015-05-01 18:25:54.908871"]]
1031869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031870
+  (0.0ms) SAVEPOINT active_record_1
1031871
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -224790588 LIMIT 1
1031872
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -224790588], ["username", "billy_13"], ["access_token", "75e4810556f5233667c31eb872a9b779"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:54.910646"], ["updated_at", "2015-05-01 18:25:54.910646"]]
1031873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031874
+  (0.0ms) SAVEPOINT active_record_1
1031875
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1672409001 LIMIT 1
1031876
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1672409001], ["username", "billy_14"], ["access_token", "d66ae18b44fdf6bb6bf23c7d3f31e256"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:54.912740"], ["updated_at", "2015-05-01 18:25:54.912740"]]
1031877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031878
+  (0.0ms) SAVEPOINT active_record_1
1031879
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -726697465 LIMIT 1
1031880
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -726697465], ["username", "billy_15"], ["access_token", "bfd2218b402264fda431375e6d0b3fa1"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:54.914698"], ["updated_at", "2015-05-01 18:25:54.914698"]]
1031881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031882
+  (0.0ms) SAVEPOINT active_record_1
1031883
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -184948930 LIMIT 1
1031884
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -184948930], ["username", "billy_16"], ["access_token", "92c5c3947e233acaa2c00c34c352fe33"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:54.916641"], ["updated_at", "2015-05-01 18:25:54.916641"]]
1031885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031886
+  (0.0ms) SAVEPOINT active_record_1
1031887
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -565454648 LIMIT 1
1031888
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -565454648], ["username", "billy_17"], ["access_token", "ffc889dcd70e3fb8df820e4281cfcb17"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:54.918520"], ["updated_at", "2015-05-01 18:25:54.918520"]]
1031889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031890
+  (0.0ms) SAVEPOINT active_record_1
1031891
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -847246730 LIMIT 1
1031892
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -847246730], ["username", "billy_18"], ["access_token", "542e7e1fa68daa151199dd2c9b891026"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:54.920293"], ["updated_at", "2015-05-01 18:25:54.920293"]]
1031893
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1031894
+  (0.0ms) SAVEPOINT active_record_1
1031895
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -219655982 LIMIT 1
1031896
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -219655982], ["username", "billy_19"], ["access_token", "420736f05b4eb5705ea8e10b948a7b84"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:54.921987"], ["updated_at", "2015-05-01 18:25:54.921987"]]
1031897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031898
+  (0.1ms) SAVEPOINT active_record_1
1031899
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -665424978 LIMIT 1
1031900
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -665424978], ["username", "billy_20"], ["access_token", "18f2f3822655431bc2c1adb529927052"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:54.923935"], ["updated_at", "2015-05-01 18:25:54.923935"]]
1031901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031902
+  (0.0ms) SAVEPOINT active_record_1
1031903
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -380646705 LIMIT 1
1031904
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -380646705], ["username", "billy_21"], ["access_token", "1deb3cc31ccc5c211d33ab27efb55fc4"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:54.925900"], ["updated_at", "2015-05-01 18:25:54.925900"]]
1031905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031906
+  (0.0ms) SAVEPOINT active_record_1
1031907
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796923513 LIMIT 1
1031908
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -796923513], ["username", "billy_22"], ["access_token", "0332120cbe777f352dd5525a475fe271"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:54.927631"], ["updated_at", "2015-05-01 18:25:54.927631"]]
1031909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031910
+  (0.0ms) SAVEPOINT active_record_1
1031911
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -34973787 LIMIT 1
1031912
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -34973787], ["username", "billy_23"], ["access_token", "83cbb6c7acc4b0ea42c4e2fd22664503"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:54.929390"], ["updated_at", "2015-05-01 18:25:54.929390"]]
1031913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031914
+  (0.0ms) SAVEPOINT active_record_1
1031915
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -515969833 LIMIT 1
1031916
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -515969833], ["username", "billy_24"], ["access_token", "360df44015088dbf9adc603facbe8b26"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:54.931083"], ["updated_at", "2015-05-01 18:25:54.931083"]]
1031917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031918
+  (0.0ms) SAVEPOINT active_record_1
1031919
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1524910258 LIMIT 1
1031920
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1524910258], ["username", "billy_25"], ["access_token", "3e6784588ad3ca0d9fc9fc8afde5d736"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:54.932792"], ["updated_at", "2015-05-01 18:25:54.932792"]]
1031921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031922
+  (0.0ms) SAVEPOINT active_record_1
1031923
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1992721951 LIMIT 1
1031924
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1992721951], ["username", "billy_26"], ["access_token", "6de92b2610c77d8bca1926fdce0af01b"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:54.934490"], ["updated_at", "2015-05-01 18:25:54.934490"]]
1031925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031926
+  (0.0ms) SAVEPOINT active_record_1
1031927
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1574707567 LIMIT 1
1031928
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1574707567], ["username", "billy_27"], ["access_token", "7f8011495d287d48265441a889ff86f1"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:54.936202"], ["updated_at", "2015-05-01 18:25:54.936202"]]
1031929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031930
+  (0.0ms) SAVEPOINT active_record_1
1031931
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1584620144 LIMIT 1
1031932
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1584620144], ["username", "billy_28"], ["access_token", "771e28ceab7c3e41358d7d9c669593fa"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:54.937930"], ["updated_at", "2015-05-01 18:25:54.937930"]]
1031933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031934
+  (0.0ms) SAVEPOINT active_record_1
1031935
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1471834021 LIMIT 1
1031936
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1471834021], ["username", "billy_29"], ["access_token", "e13d1453496b5057718e29d1cb7e5b7d"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:54.939594"], ["updated_at", "2015-05-01 18:25:54.939594"]]
1031937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031938
+  (0.0ms) SAVEPOINT active_record_1
1031939
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -446179572 LIMIT 1
1031940
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -446179572], ["username", "billy_30"], ["access_token", "3a1564b34ef82bd581fb7abaad2a3edb"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:54.941321"], ["updated_at", "2015-05-01 18:25:54.941321"]]
1031941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031942
+  (0.0ms) SAVEPOINT active_record_1
1031943
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1747313315 LIMIT 1
1031944
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1747313315], ["username", "billy_31"], ["access_token", "09cd9119d88285b94740c7bcb5d9f30f"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:54.943084"], ["updated_at", "2015-05-01 18:25:54.943084"]]
1031945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031946
+  (0.0ms) SAVEPOINT active_record_1
1031947
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1707676250 LIMIT 1
1031948
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1707676250], ["username", "billy_32"], ["access_token", "0d4a77e1cbb9d2b0e416ac72dcf1d337"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:54.944952"], ["updated_at", "2015-05-01 18:25:54.944952"]]
1031949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031950
+  (0.0ms) SAVEPOINT active_record_1
1031951
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2099882986 LIMIT 1
1031952
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2099882986], ["username", "billy_33"], ["access_token", "c0d3b9083726edd4e01deb229062aa58"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:54.947482"], ["updated_at", "2015-05-01 18:25:54.947482"]]
1031953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031954
+  (0.0ms) SAVEPOINT active_record_1
1031955
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -54133440 LIMIT 1
1031956
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -54133440], ["username", "billy_34"], ["access_token", "7678e0d527c7a1e92e0abd57843f3fc2"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:54.950797"], ["updated_at", "2015-05-01 18:25:54.950797"]]
1031957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031958
+  (0.0ms) SAVEPOINT active_record_1
1031959
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -116754597 LIMIT 1
1031960
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -116754597], ["username", "billy_35"], ["access_token", "1a5bd704beb9db53d09b20b5fd92151c"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:54.952490"], ["updated_at", "2015-05-01 18:25:54.952490"]]
1031961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031962
+  (0.0ms) SAVEPOINT active_record_1
1031963
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -718927472 LIMIT 1
1031964
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -718927472], ["username", "billy_36"], ["access_token", "a38c6d747f538f1d5d3403991f65c6e8"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:54.954846"], ["updated_at", "2015-05-01 18:25:54.954846"]]
1031965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031966
+  (0.0ms) SAVEPOINT active_record_1
1031967
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -291684740 LIMIT 1
1031968
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -291684740], ["username", "billy_37"], ["access_token", "d23c533c4bef962b8c6e582fe649a2b9"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:54.957254"], ["updated_at", "2015-05-01 18:25:54.957254"]]
1031969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031970
+  (0.0ms) SAVEPOINT active_record_1
1031971
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1963820164 LIMIT 1
1031972
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1963820164], ["username", "billy_38"], ["access_token", "596d3e167e11faf02ac45af5695145db"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:54.959441"], ["updated_at", "2015-05-01 18:25:54.959441"]]
1031973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031974
+  (0.0ms) SAVEPOINT active_record_1
1031975
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1871619501 LIMIT 1
1031976
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1871619501], ["username", "billy_39"], ["access_token", "8f813ee25f41631f903827f0f75a4fe0"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:54.961411"], ["updated_at", "2015-05-01 18:25:54.961411"]]
1031977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031978
+  (0.0ms) SAVEPOINT active_record_1
1031979
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2123516108 LIMIT 1
1031980
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2123516108], ["username", "billy_40"], ["access_token", "2dbe8601b5ec72cdb7e1673fb4454c7c"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:54.963266"], ["updated_at", "2015-05-01 18:25:54.963266"]]
1031981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031982
+  (0.1ms) SAVEPOINT active_record_1
1031983
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1791160082 LIMIT 1
1031984
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1791160082], ["username", "billy_41"], ["access_token", "4ccbea857f48d48b3ebc7e3a6986a20b"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:54.964955"], ["updated_at", "2015-05-01 18:25:54.964955"]]
1031985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031986
+  (0.1ms) SAVEPOINT active_record_1
1031987
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1807135354 LIMIT 1
1031988
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1807135354], ["username", "billy_42"], ["access_token", "f5807b227821bc9d8bc8b60b4ce12926"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:54.966848"], ["updated_at", "2015-05-01 18:25:54.966848"]]
1031989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031990
+  (0.0ms) SAVEPOINT active_record_1
1031991
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1059280731 LIMIT 1
1031992
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1059280731], ["username", "billy_43"], ["access_token", "c5c494b873ebbcf03565511968f8bad2"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:54.968553"], ["updated_at", "2015-05-01 18:25:54.968553"]]
1031993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031994
+  (0.0ms) SAVEPOINT active_record_1
1031995
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1606019914 LIMIT 1
1031996
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1606019914], ["username", "billy_44"], ["access_token", "47c8787e4e9137e241d05e2372754d62"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:54.970229"], ["updated_at", "2015-05-01 18:25:54.970229"]]
1031997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1031998
+  (0.0ms) SAVEPOINT active_record_1
1031999
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1706832312 LIMIT 1
1032000
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1706832312], ["username", "billy_45"], ["access_token", "1730680ce800e6259997a646aa77b367"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:54.972045"], ["updated_at", "2015-05-01 18:25:54.972045"]]
1032001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032002
+  (0.1ms) SAVEPOINT active_record_1
1032003
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1615759819 LIMIT 1
1032004
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1615759819], ["username", "billy_46"], ["access_token", "7d422c43858d4d597aa0ac76aea6cdd7"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:54.973881"], ["updated_at", "2015-05-01 18:25:54.973881"]]
1032005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032006
+  (0.0ms) SAVEPOINT active_record_1
1032007
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -416277113 LIMIT 1
1032008
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -416277113], ["username", "billy_47"], ["access_token", "e31686bd83b584f05eec3e3d5067713e"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:54.975594"], ["updated_at", "2015-05-01 18:25:54.975594"]]
1032009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032010
+  (0.0ms) SAVEPOINT active_record_1
1032011
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2036139656 LIMIT 1
1032012
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2036139656], ["username", "billy_48"], ["access_token", "b19c2d9c6fae2d16c96ede203593878b"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:54.977230"], ["updated_at", "2015-05-01 18:25:54.977230"]]
1032013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032014
+  (0.0ms) SAVEPOINT active_record_1
1032015
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -486714018 LIMIT 1
1032016
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -486714018], ["username", "billy_49"], ["access_token", "746d793e98ceea2b4668eca3abe9ef9b"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:54.978921"], ["updated_at", "2015-05-01 18:25:54.978921"]]
1032017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032018
+  (0.0ms) SAVEPOINT active_record_1
1032019
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'billy%') OR ("openstax_accounts_accounts"."first_name" LIKE 'billy%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'billy%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'billy%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0))
1032020
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1032021
+  (1.1ms) rollback transaction
1032022
+  (0.1ms) begin transaction
1032023
+  (0.0ms) SAVEPOINT active_record_1
1032024
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1600180973 LIMIT 1
1032025
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1600180973], ["username", "jstrav"], ["access_token", "ca51dec4c4b21e232fef2729bfe57439"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:54.990585"], ["updated_at", "2015-05-01 18:25:54.990585"]]
1032026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032027
+  (0.0ms) SAVEPOINT active_record_1
1032028
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -288340684 LIMIT 1
1032029
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -288340684], ["username", "mary"], ["access_token", "f47b6f29a6792d6cc1192d2e5a1e8d82"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:54.993451"], ["updated_at", "2015-05-01 18:25:54.993451"]]
1032030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032031
+  (0.0ms) SAVEPOINT active_record_1
1032032
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1519173398 LIMIT 1
1032033
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1519173398], ["username", "jstead"], ["access_token", "1f14629b9f92c8b2a0ebc6e204730320"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:54.996086"], ["updated_at", "2015-05-01 18:25:54.996086"]]
1032034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032035
+  (0.0ms) SAVEPOINT active_record_1
1032036
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1410584482 LIMIT 1
1032037
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1410584482], ["username", "bigbear"], ["access_token", "40eeb1e4ce4d1a669e55d4d578ea6932"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:54.998320"], ["updated_at", "2015-05-01 18:25:54.998320"]]
1032038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032039
+  (0.1ms) SAVEPOINT active_record_1
1032040
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1370008262 LIMIT 1
1032041
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1370008262], ["username", "billy_00"], ["access_token", "01cf99d80d60395f8c18ab06309f3da5"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-05-01 18:25:55.000115"], ["updated_at", "2015-05-01 18:25:55.000115"]]
1032042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032043
+  (0.0ms) SAVEPOINT active_record_1
1032044
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -532655402 LIMIT 1
1032045
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -532655402], ["username", "billy_01"], ["access_token", "bd419d68acbbfe9f5a2683251c719180"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-05-01 18:25:55.001954"], ["updated_at", "2015-05-01 18:25:55.001954"]]
1032046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032047
+  (0.0ms) SAVEPOINT active_record_1
1032048
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1876275844 LIMIT 1
1032049
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1876275844], ["username", "billy_02"], ["access_token", "01066c6b06026811cf58e3b7220cd226"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-05-01 18:25:55.003645"], ["updated_at", "2015-05-01 18:25:55.003645"]]
1032050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032051
+  (0.0ms) SAVEPOINT active_record_1
1032052
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -337225135 LIMIT 1
1032053
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -337225135], ["username", "billy_03"], ["access_token", "ff48a08f0a97611890fab14a1b1bcc63"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-05-01 18:25:55.005633"], ["updated_at", "2015-05-01 18:25:55.005633"]]
1032054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032055
+  (0.0ms) SAVEPOINT active_record_1
1032056
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -613924125 LIMIT 1
1032057
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -613924125], ["username", "billy_04"], ["access_token", "5f02fe9d3f9b67ea0563a25475c9a286"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:55.007303"], ["updated_at", "2015-05-01 18:25:55.007303"]]
1032058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032059
+  (0.0ms) SAVEPOINT active_record_1
1032060
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2021352425 LIMIT 1
1032061
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2021352425], ["username", "billy_05"], ["access_token", "e83a29afa8551deaa0c77b5e2339c642"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:55.008973"], ["updated_at", "2015-05-01 18:25:55.008973"]]
1032062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032063
+  (0.0ms) SAVEPOINT active_record_1
1032064
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1960643898 LIMIT 1
1032065
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1960643898], ["username", "billy_06"], ["access_token", "3089078e584c2aa7a13df24c8b9a731a"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:55.010647"], ["updated_at", "2015-05-01 18:25:55.010647"]]
1032066
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032067
+  (0.0ms) SAVEPOINT active_record_1
1032068
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659928967 LIMIT 1
1032069
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1659928967], ["username", "billy_07"], ["access_token", "9c52a838a7fc6550e4e4b883690b3143"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:55.012326"], ["updated_at", "2015-05-01 18:25:55.012326"]]
1032070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032071
+  (0.0ms) SAVEPOINT active_record_1
1032072
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -810262899 LIMIT 1
1032073
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -810262899], ["username", "billy_08"], ["access_token", "929c7f92f72f67372dee43194ab96f18"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:55.014091"], ["updated_at", "2015-05-01 18:25:55.014091"]]
1032074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032075
+  (0.0ms) SAVEPOINT active_record_1
1032076
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1823485753 LIMIT 1
1032077
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1823485753], ["username", "billy_09"], ["access_token", "e72e74531c026a2ff48f4e13c1aebefc"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:55.015739"], ["updated_at", "2015-05-01 18:25:55.015739"]]
1032078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032079
+  (0.0ms) SAVEPOINT active_record_1
1032080
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -738266684 LIMIT 1
1032081
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -738266684], ["username", "billy_10"], ["access_token", "23c1997475e0792df220a7d512362d58"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:55.017419"], ["updated_at", "2015-05-01 18:25:55.017419"]]
1032082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032083
+  (0.0ms) SAVEPOINT active_record_1
1032084
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1030500965 LIMIT 1
1032085
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1030500965], ["username", "billy_11"], ["access_token", "d544a36701ef0bc7a8566682340376e0"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:55.019078"], ["updated_at", "2015-05-01 18:25:55.019078"]]
1032086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032087
+  (0.0ms) SAVEPOINT active_record_1
1032088
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -521387458 LIMIT 1
1032089
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -521387458], ["username", "billy_12"], ["access_token", "826f0c1310a6e07c523cec7d869be843"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:55.020732"], ["updated_at", "2015-05-01 18:25:55.020732"]]
1032090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032091
+  (0.0ms) SAVEPOINT active_record_1
1032092
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1834315093 LIMIT 1
1032093
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1834315093], ["username", "billy_13"], ["access_token", "c5e6f4b5889fee0726635dac97af9276"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:55.022837"], ["updated_at", "2015-05-01 18:25:55.022837"]]
1032094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032095
+  (0.0ms) SAVEPOINT active_record_1
1032096
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -433526089 LIMIT 1
1032097
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -433526089], ["username", "billy_14"], ["access_token", "65de8ea8de9cc2f250869081d975d305"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:55.025114"], ["updated_at", "2015-05-01 18:25:55.025114"]]
1032098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032099
+  (0.0ms) SAVEPOINT active_record_1
1032100
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1406117818 LIMIT 1
1032101
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1406117818], ["username", "billy_15"], ["access_token", "f968166afa399c16d0c9e16430bcf877"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:55.027203"], ["updated_at", "2015-05-01 18:25:55.027203"]]
1032102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032103
+  (0.0ms) SAVEPOINT active_record_1
1032104
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -483042028 LIMIT 1
1032105
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -483042028], ["username", "billy_16"], ["access_token", "49603397e36d0dac298ed90b7464d8f1"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:55.029808"], ["updated_at", "2015-05-01 18:25:55.029808"]]
1032106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032107
+  (0.0ms) SAVEPOINT active_record_1
1032108
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -520763646 LIMIT 1
1032109
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -520763646], ["username", "billy_17"], ["access_token", "d1d459c5f8be3d62992b6679a3b1cab4"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:55.031820"], ["updated_at", "2015-05-01 18:25:55.031820"]]
1032110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032111
+  (0.0ms) SAVEPOINT active_record_1
1032112
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1344282815 LIMIT 1
1032113
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1344282815], ["username", "billy_18"], ["access_token", "8bcf5327909bed3642e30348fed514ed"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:55.033752"], ["updated_at", "2015-05-01 18:25:55.033752"]]
1032114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032115
+  (0.0ms) SAVEPOINT active_record_1
1032116
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -250671539 LIMIT 1
1032117
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -250671539], ["username", "billy_19"], ["access_token", "41173ff59b722df41511a3f4552a5515"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:55.035526"], ["updated_at", "2015-05-01 18:25:55.035526"]]
1032118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032119
+  (0.0ms) SAVEPOINT active_record_1
1032120
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1476859217 LIMIT 1
1032121
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1476859217], ["username", "billy_20"], ["access_token", "45ae912b8550b91946749939a75fadfe"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:55.037286"], ["updated_at", "2015-05-01 18:25:55.037286"]]
1032122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032123
+  (0.0ms) SAVEPOINT active_record_1
1032124
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -627287747 LIMIT 1
1032125
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -627287747], ["username", "billy_21"], ["access_token", "e16244b7feeee64aa3e5292a1d43764d"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:55.039036"], ["updated_at", "2015-05-01 18:25:55.039036"]]
1032126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032127
+  (0.0ms) SAVEPOINT active_record_1
1032128
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1946395794 LIMIT 1
1032129
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1946395794], ["username", "billy_22"], ["access_token", "c4fee5be09a567911c5e14fa4243cd08"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:55.040764"], ["updated_at", "2015-05-01 18:25:55.040764"]]
1032130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032131
+  (0.0ms) SAVEPOINT active_record_1
1032132
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -8510946 LIMIT 1
1032133
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -8510946], ["username", "billy_23"], ["access_token", "9a91a95cc80eb20a9ed0fe47c57e55a9"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:55.042447"], ["updated_at", "2015-05-01 18:25:55.042447"]]
1032134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032135
+  (0.0ms) SAVEPOINT active_record_1
1032136
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1349551009 LIMIT 1
1032137
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1349551009], ["username", "billy_24"], ["access_token", "c3f3606311a941f6e6206be5d2c20dbb"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:55.044200"], ["updated_at", "2015-05-01 18:25:55.044200"]]
1032138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032139
+  (0.0ms) SAVEPOINT active_record_1
1032140
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -521204724 LIMIT 1
1032141
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -521204724], ["username", "billy_25"], ["access_token", "98d728edd08aa460e7d73424fe8f33a0"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:55.045845"], ["updated_at", "2015-05-01 18:25:55.045845"]]
1032142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032143
+  (0.0ms) SAVEPOINT active_record_1
1032144
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -129915152 LIMIT 1
1032145
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -129915152], ["username", "billy_26"], ["access_token", "1a3dcf01a00685a16c20f058e318670d"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:55.047845"], ["updated_at", "2015-05-01 18:25:55.047845"]]
1032146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032147
+  (0.0ms) SAVEPOINT active_record_1
1032148
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1567836096 LIMIT 1
1032149
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1567836096], ["username", "billy_27"], ["access_token", "1cbbc4b97880198c9381d6fe38d8014b"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:55.049530"], ["updated_at", "2015-05-01 18:25:55.049530"]]
1032150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032151
+  (0.1ms) SAVEPOINT active_record_1
1032152
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1911835672 LIMIT 1
1032153
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1911835672], ["username", "billy_28"], ["access_token", "820b23706054b017e77149d34ae4aeff"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:55.051211"], ["updated_at", "2015-05-01 18:25:55.051211"]]
1032154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032155
+  (0.0ms) SAVEPOINT active_record_1
1032156
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1966191666 LIMIT 1
1032157
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1966191666], ["username", "billy_29"], ["access_token", "d22884ec291f163d6db986ebd5784100"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:55.052944"], ["updated_at", "2015-05-01 18:25:55.052944"]]
1032158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032159
+  (0.0ms) SAVEPOINT active_record_1
1032160
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1504773215 LIMIT 1
1032161
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1504773215], ["username", "billy_30"], ["access_token", "ed51963cdcf0e03b97c2f7fe07245560"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:55.054650"], ["updated_at", "2015-05-01 18:25:55.054650"]]
1032162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032163
+  (0.0ms) SAVEPOINT active_record_1
1032164
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1888161803 LIMIT 1
1032165
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1888161803], ["username", "billy_31"], ["access_token", "c69e0ff1ed65b98f4b3eb752cd7a88fa"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:55.056297"], ["updated_at", "2015-05-01 18:25:55.056297"]]
1032166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032167
+  (0.0ms) SAVEPOINT active_record_1
1032168
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2024252927 LIMIT 1
1032169
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2024252927], ["username", "billy_32"], ["access_token", "ade9c3e5bcd98ef548406bae9ef6f246"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:55.057981"], ["updated_at", "2015-05-01 18:25:55.057981"]]
1032170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032171
+  (0.0ms) SAVEPOINT active_record_1
1032172
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -535166153 LIMIT 1
1032173
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -535166153], ["username", "billy_33"], ["access_token", "42270fbbefbe5ae42457a3c7c05dd3de"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:55.059694"], ["updated_at", "2015-05-01 18:25:55.059694"]]
1032174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032175
+  (0.0ms) SAVEPOINT active_record_1
1032176
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2143774903 LIMIT 1
1032177
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2143774903], ["username", "billy_34"], ["access_token", "0dfec5696142f73ce18a5addc788a1e2"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:55.061377"], ["updated_at", "2015-05-01 18:25:55.061377"]]
1032178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032179
+  (0.0ms) SAVEPOINT active_record_1
1032180
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -577940730 LIMIT 1
1032181
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -577940730], ["username", "billy_35"], ["access_token", "dfa0f16a60fdddee3fd640f589a47af1"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:55.063090"], ["updated_at", "2015-05-01 18:25:55.063090"]]
1032182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032183
+  (0.0ms) SAVEPOINT active_record_1
1032184
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -847297791 LIMIT 1
1032185
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -847297791], ["username", "billy_36"], ["access_token", "2553255780a4f81dc715e408ba0e2c54"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:55.064831"], ["updated_at", "2015-05-01 18:25:55.064831"]]
1032186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032187
+  (0.0ms) SAVEPOINT active_record_1
1032188
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1126812941 LIMIT 1
1032189
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1126812941], ["username", "billy_37"], ["access_token", "f363bd343637ac85a77e69c7c782994f"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:55.066911"], ["updated_at", "2015-05-01 18:25:55.066911"]]
1032190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032191
+  (0.0ms) SAVEPOINT active_record_1
1032192
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -609416192 LIMIT 1
1032193
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -609416192], ["username", "billy_38"], ["access_token", "2b42a2d10ae495f9317b7be2d67869e1"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:55.068610"], ["updated_at", "2015-05-01 18:25:55.068610"]]
1032194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032195
+  (0.0ms) SAVEPOINT active_record_1
1032196
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1283534243 LIMIT 1
1032197
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1283534243], ["username", "billy_39"], ["access_token", "213f6f7b6663fc47da1c54605194929f"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:55.070312"], ["updated_at", "2015-05-01 18:25:55.070312"]]
1032198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032199
+  (0.0ms) SAVEPOINT active_record_1
1032200
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -829052960 LIMIT 1
1032201
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -829052960], ["username", "billy_40"], ["access_token", "2f447222151422b34354267ce3a07686"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:55.072003"], ["updated_at", "2015-05-01 18:25:55.072003"]]
1032202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032203
+  (0.1ms) SAVEPOINT active_record_1
1032204
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -685710255 LIMIT 1
1032205
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -685710255], ["username", "billy_41"], ["access_token", "79eeaad69a757307c4f8d8d550ed581c"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:55.073696"], ["updated_at", "2015-05-01 18:25:55.073696"]]
1032206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032207
+  (0.0ms) SAVEPOINT active_record_1
1032208
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1586481951 LIMIT 1
1032209
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1586481951], ["username", "billy_42"], ["access_token", "897d5c0228aa14bedf2e172aced2bb0f"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:55.075362"], ["updated_at", "2015-05-01 18:25:55.075362"]]
1032210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032211
+  (0.0ms) SAVEPOINT active_record_1
1032212
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -846719508 LIMIT 1
1032213
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -846719508], ["username", "billy_43"], ["access_token", "7a1740eb0c32dfa71b9a5a0f11d17306"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:55.077039"], ["updated_at", "2015-05-01 18:25:55.077039"]]
1032214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032215
+  (0.0ms) SAVEPOINT active_record_1
1032216
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -995608063 LIMIT 1
1032217
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -995608063], ["username", "billy_44"], ["access_token", "2fadc7a138331334f65bd3a1513b7815"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:55.078716"], ["updated_at", "2015-05-01 18:25:55.078716"]]
1032218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032219
+  (0.0ms) SAVEPOINT active_record_1
1032220
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1286255571 LIMIT 1
1032221
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1286255571], ["username", "billy_45"], ["access_token", "ca20ba2a9dabc1ea8a6fb0b3e2544faf"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:55.080704"], ["updated_at", "2015-05-01 18:25:55.080704"]]
1032222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032223
+  (0.0ms) SAVEPOINT active_record_1
1032224
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1004481215 LIMIT 1
1032225
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1004481215], ["username", "billy_46"], ["access_token", "d354165daef6df03b1e92d84bf762768"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:55.082344"], ["updated_at", "2015-05-01 18:25:55.082344"]]
1032226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032227
+  (0.0ms) SAVEPOINT active_record_1
1032228
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -34612450 LIMIT 1
1032229
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -34612450], ["username", "billy_47"], ["access_token", "88f642af1444ea44bda999e681316a63"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:55.084016"], ["updated_at", "2015-05-01 18:25:55.084016"]]
1032230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032231
+  (0.0ms) SAVEPOINT active_record_1
1032232
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -631106367 LIMIT 1
1032233
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -631106367], ["username", "billy_48"], ["access_token", "f00da5e4eea5589167cb3ee0e8986293"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:55.085810"], ["updated_at", "2015-05-01 18:25:55.085810"]]
1032234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032235
+  (0.0ms) SAVEPOINT active_record_1
1032236
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -969465578 LIMIT 1
1032237
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -969465578], ["username", "billy_49"], ["access_token", "ce7880d812b6f8cb91f9c970965012f9"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:55.087451"], ["updated_at", "2015-05-01 18:25:55.087451"]]
1032238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032239
+  (0.0ms) SAVEPOINT active_record_1
1032240
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1032241
+  (1.0ms) rollback transaction
1032242
+  (0.1ms) begin transaction
1032243
+  (0.0ms) SAVEPOINT active_record_1
1032244
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2006765676 LIMIT 1
1032245
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2006765676], ["username", "jstrav"], ["access_token", "a3f2d1d48432b6aeb188241ded44e528"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.094395"], ["updated_at", "2015-05-01 18:25:55.094395"]]
1032246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032247
+  (0.0ms) SAVEPOINT active_record_1
1032248
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -397654004 LIMIT 1
1032249
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -397654004], ["username", "mary"], ["access_token", "7ce67fe4d4439cef063f96b566460be1"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.096388"], ["updated_at", "2015-05-01 18:25:55.096388"]]
1032250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032251
+  (0.0ms) SAVEPOINT active_record_1
1032252
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -241556387 LIMIT 1
1032253
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -241556387], ["username", "jstead"], ["access_token", "bf635f0814ce68a2f8e2279075735ba2"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.098323"], ["updated_at", "2015-05-01 18:25:55.098323"]]
1032254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032255
+  (0.0ms) SAVEPOINT active_record_1
1032256
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1893855417 LIMIT 1
1032257
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1893855417], ["username", "bigbear"], ["access_token", "1421532c94cdd12549e380904f5753c0"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.100242"], ["updated_at", "2015-05-01 18:25:55.100242"]]
1032258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032259
+  (0.0ms) SAVEPOINT active_record_1
1032260
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2080659337 LIMIT 1
1032261
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2080659337], ["username", "billy_00"], ["access_token", "e4afddfcde2966bf27db8527f7be5f21"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-05-01 18:25:55.102054"], ["updated_at", "2015-05-01 18:25:55.102054"]]
1032262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032263
+  (0.0ms) SAVEPOINT active_record_1
1032264
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -236717153 LIMIT 1
1032265
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -236717153], ["username", "billy_01"], ["access_token", "39e7fe0614f983df4edcaf995755f2e1"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-05-01 18:25:55.103885"], ["updated_at", "2015-05-01 18:25:55.103885"]]
1032266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032267
+  (0.0ms) SAVEPOINT active_record_1
1032268
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1413450638 LIMIT 1
1032269
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1413450638], ["username", "billy_02"], ["access_token", "6a52fbd7f34f8d5d560c36991b190991"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-05-01 18:25:55.105716"], ["updated_at", "2015-05-01 18:25:55.105716"]]
1032270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032271
+  (0.0ms) SAVEPOINT active_record_1
1032272
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -29680190 LIMIT 1
1032273
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -29680190], ["username", "billy_03"], ["access_token", "a4c74607ba2a10459858305dce4387d5"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-05-01 18:25:55.107434"], ["updated_at", "2015-05-01 18:25:55.107434"]]
1032274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032275
+  (0.0ms) SAVEPOINT active_record_1
1032276
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2021348880 LIMIT 1
1032277
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2021348880], ["username", "billy_04"], ["access_token", "02a64d2349e6f9c5a9a07f667c7a5a67"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:55.109167"], ["updated_at", "2015-05-01 18:25:55.109167"]]
1032278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032279
+  (0.0ms) SAVEPOINT active_record_1
1032280
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1253928805 LIMIT 1
1032281
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1253928805], ["username", "billy_05"], ["access_token", "0e32d41ff78c40a09fe6f6bb0efe076d"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:55.110964"], ["updated_at", "2015-05-01 18:25:55.110964"]]
1032282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032283
+  (0.0ms) SAVEPOINT active_record_1
1032284
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1173533317 LIMIT 1
1032285
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1173533317], ["username", "billy_06"], ["access_token", "e0e748119a37d0bcc7fc02af2210bcb0"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:55.112893"], ["updated_at", "2015-05-01 18:25:55.112893"]]
1032286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032287
+  (0.0ms) SAVEPOINT active_record_1
1032288
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2119921696 LIMIT 1
1032289
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2119921696], ["username", "billy_07"], ["access_token", "b5026826ed1f7e1b45360756546c565d"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:55.114917"], ["updated_at", "2015-05-01 18:25:55.114917"]]
1032290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032291
+  (0.0ms) SAVEPOINT active_record_1
1032292
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1308840433 LIMIT 1
1032293
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1308840433], ["username", "billy_08"], ["access_token", "52b44796a0f5950b0c7e7fc280227fb8"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:55.116605"], ["updated_at", "2015-05-01 18:25:55.116605"]]
1032294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032295
+  (0.0ms) SAVEPOINT active_record_1
1032296
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1190348467 LIMIT 1
1032297
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1190348467], ["username", "billy_09"], ["access_token", "3c2123b0a5ab060f85d4d695ce502121"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:55.118288"], ["updated_at", "2015-05-01 18:25:55.118288"]]
1032298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032299
+  (0.0ms) SAVEPOINT active_record_1
1032300
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1710073943 LIMIT 1
1032301
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1710073943], ["username", "billy_10"], ["access_token", "97cb6097fc258c7dd21af01b0253c233"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:55.119963"], ["updated_at", "2015-05-01 18:25:55.119963"]]
1032302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032303
+  (0.0ms) SAVEPOINT active_record_1
1032304
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309324788 LIMIT 1
1032305
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -309324788], ["username", "billy_11"], ["access_token", "7430499ca549ecfee9dd9a2df75c4bfe"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:55.121734"], ["updated_at", "2015-05-01 18:25:55.121734"]]
1032306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032307
+  (0.0ms) SAVEPOINT active_record_1
1032308
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1979089686 LIMIT 1
1032309
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1979089686], ["username", "billy_12"], ["access_token", "aed04924997e961d6b605906e3909063"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:55.123503"], ["updated_at", "2015-05-01 18:25:55.123503"]]
1032310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032311
+  (0.0ms) SAVEPOINT active_record_1
1032312
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830672791 LIMIT 1
1032313
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1830672791], ["username", "billy_13"], ["access_token", "b8774ee39f3fcb2adeff3f40dd20ae7f"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:55.125164"], ["updated_at", "2015-05-01 18:25:55.125164"]]
1032314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032315
+  (0.0ms) SAVEPOINT active_record_1
1032316
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2021255670 LIMIT 1
1032317
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2021255670], ["username", "billy_14"], ["access_token", "05a2fb6f855b2af31b6dfe96d7894888"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:55.126870"], ["updated_at", "2015-05-01 18:25:55.126870"]]
1032318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032319
+  (0.0ms) SAVEPOINT active_record_1
1032320
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -139889608 LIMIT 1
1032321
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -139889608], ["username", "billy_15"], ["access_token", "9105a8dcdf39a89911bb9a3cdfdc100e"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:55.128911"], ["updated_at", "2015-05-01 18:25:55.128911"]]
1032322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032323
+  (0.0ms) SAVEPOINT active_record_1
1032324
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -814750245 LIMIT 1
1032325
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -814750245], ["username", "billy_16"], ["access_token", "2e3ac7c19b2c983bb67a87bfcb613a20"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:55.130680"], ["updated_at", "2015-05-01 18:25:55.130680"]]
1032326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032327
+  (0.0ms) SAVEPOINT active_record_1
1032328
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1461104205 LIMIT 1
1032329
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1461104205], ["username", "billy_17"], ["access_token", "40bf4a1f544d4e4de258690d8b5c5a61"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:55.132646"], ["updated_at", "2015-05-01 18:25:55.132646"]]
1032330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032331
+  (0.0ms) SAVEPOINT active_record_1
1032332
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -184456341 LIMIT 1
1032333
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -184456341], ["username", "billy_18"], ["access_token", "449e6b1629c15dc77870e118a32bb450"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:55.135266"], ["updated_at", "2015-05-01 18:25:55.135266"]]
1032334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032335
+  (0.0ms) SAVEPOINT active_record_1
1032336
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -839566227 LIMIT 1
1032337
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -839566227], ["username", "billy_19"], ["access_token", "061699ae7306439fa996c493253784ae"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:55.137087"], ["updated_at", "2015-05-01 18:25:55.137087"]]
1032338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032339
+  (0.0ms) SAVEPOINT active_record_1
1032340
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1744775507 LIMIT 1
1032341
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1744775507], ["username", "billy_20"], ["access_token", "4b6bf9bd3805ad63df726ee864b9b69b"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:55.138912"], ["updated_at", "2015-05-01 18:25:55.138912"]]
1032342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032343
+  (0.0ms) SAVEPOINT active_record_1
1032344
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -111839891 LIMIT 1
1032345
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -111839891], ["username", "billy_21"], ["access_token", "41762e1571422e379551329dd3453862"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:55.140689"], ["updated_at", "2015-05-01 18:25:55.140689"]]
1032346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032347
+  (0.0ms) SAVEPOINT active_record_1
1032348
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1871423537 LIMIT 1
1032349
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1871423537], ["username", "billy_22"], ["access_token", "bccff106aa8bd2c189e0956245b4edfa"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:55.142451"], ["updated_at", "2015-05-01 18:25:55.142451"]]
1032350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032351
+  (0.0ms) SAVEPOINT active_record_1
1032352
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647881424 LIMIT 1
1032353
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -647881424], ["username", "billy_23"], ["access_token", "9827e76d9065b037482e398fdef7c9a5"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:55.144185"], ["updated_at", "2015-05-01 18:25:55.144185"]]
1032354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032355
+  (0.0ms) SAVEPOINT active_record_1
1032356
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -622841344 LIMIT 1
1032357
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -622841344], ["username", "billy_24"], ["access_token", "c556e7c0b4f1ed1d02b6c6c0912f08de"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:55.146040"], ["updated_at", "2015-05-01 18:25:55.146040"]]
1032358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032359
+  (0.0ms) SAVEPOINT active_record_1
1032360
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1136401366 LIMIT 1
1032361
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1136401366], ["username", "billy_25"], ["access_token", "ae7647ed21c060fac224f7ae8dc77c81"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:55.147745"], ["updated_at", "2015-05-01 18:25:55.147745"]]
1032362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032363
+  (0.0ms) SAVEPOINT active_record_1
1032364
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1011024317 LIMIT 1
1032365
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1011024317], ["username", "billy_26"], ["access_token", "313c6f4a5275f177b109d5ebc29bbe2c"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:55.149398"], ["updated_at", "2015-05-01 18:25:55.149398"]]
1032366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032367
+  (0.0ms) SAVEPOINT active_record_1
1032368
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -771302882 LIMIT 1
1032369
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -771302882], ["username", "billy_27"], ["access_token", "45dddf3bf9bee66b9eef0fb716f6d4e9"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:55.151096"], ["updated_at", "2015-05-01 18:25:55.151096"]]
1032370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032371
+  (0.0ms) SAVEPOINT active_record_1
1032372
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -965384031 LIMIT 1
1032373
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -965384031], ["username", "billy_28"], ["access_token", "72c1aac8c359de8772f1c0ab701a008c"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:55.152789"], ["updated_at", "2015-05-01 18:25:55.152789"]]
1032374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032375
+  (0.0ms) SAVEPOINT active_record_1
1032376
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1757088218 LIMIT 1
1032377
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1757088218], ["username", "billy_29"], ["access_token", "0840fcb7d9bc65a7aac618ed61beecea"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:55.154676"], ["updated_at", "2015-05-01 18:25:55.154676"]]
1032378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032379
+  (0.0ms) SAVEPOINT active_record_1
1032380
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1601653023 LIMIT 1
1032381
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1601653023], ["username", "billy_30"], ["access_token", "4cc56224dc87cf3a0e44ae6d9c99ceb4"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:55.156444"], ["updated_at", "2015-05-01 18:25:55.156444"]]
1032382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032383
+  (0.0ms) SAVEPOINT active_record_1
1032384
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -55036964 LIMIT 1
1032385
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -55036964], ["username", "billy_31"], ["access_token", "05eb692eacf278fff34927831c93ea82"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:55.158217"], ["updated_at", "2015-05-01 18:25:55.158217"]]
1032386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032387
+  (0.0ms) SAVEPOINT active_record_1
1032388
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1676757369 LIMIT 1
1032389
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1676757369], ["username", "billy_32"], ["access_token", "fcb34daa295cf38ab64a533db5fbc7f2"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:55.160278"], ["updated_at", "2015-05-01 18:25:55.160278"]]
1032390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032391
+  (0.0ms) SAVEPOINT active_record_1
1032392
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -656306491 LIMIT 1
1032393
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -656306491], ["username", "billy_33"], ["access_token", "0f3559b860be567ac40adb0d71d14305"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:55.161978"], ["updated_at", "2015-05-01 18:25:55.161978"]]
1032394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032395
+  (0.0ms) SAVEPOINT active_record_1
1032396
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -662023078 LIMIT 1
1032397
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -662023078], ["username", "billy_34"], ["access_token", "30d9fed7c82b813bca14a4118f810f12"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:55.163655"], ["updated_at", "2015-05-01 18:25:55.163655"]]
1032398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032399
+  (0.0ms) SAVEPOINT active_record_1
1032400
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1937743295 LIMIT 1
1032401
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1937743295], ["username", "billy_35"], ["access_token", "7704f39948cc85f1ce671f1f4840a3a8"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:55.165322"], ["updated_at", "2015-05-01 18:25:55.165322"]]
1032402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032403
+  (0.0ms) SAVEPOINT active_record_1
1032404
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1169996400 LIMIT 1
1032405
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1169996400], ["username", "billy_36"], ["access_token", "d45c1191845d4f311c25ca6f0c85845a"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:55.166955"], ["updated_at", "2015-05-01 18:25:55.166955"]]
1032406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032407
+  (0.0ms) SAVEPOINT active_record_1
1032408
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1916503773 LIMIT 1
1032409
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1916503773], ["username", "billy_37"], ["access_token", "e790edc246bd0f5e17fb9392ca358aa8"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:55.168633"], ["updated_at", "2015-05-01 18:25:55.168633"]]
1032410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032411
+  (0.0ms) SAVEPOINT active_record_1
1032412
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -879317343 LIMIT 1
1032413
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -879317343], ["username", "billy_38"], ["access_token", "a4bbc1a9f0eae9b3e8d87474671f0e6d"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:55.170311"], ["updated_at", "2015-05-01 18:25:55.170311"]]
1032414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032415
+  (0.0ms) SAVEPOINT active_record_1
1032416
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -132075447 LIMIT 1
1032417
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -132075447], ["username", "billy_39"], ["access_token", "3e2c9b3e9015cb21ba3f4c44fdf72cb1"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:55.172304"], ["updated_at", "2015-05-01 18:25:55.172304"]]
1032418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032419
+  (0.0ms) SAVEPOINT active_record_1
1032420
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -73279433 LIMIT 1
1032421
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -73279433], ["username", "billy_40"], ["access_token", "a659c6478f206759056de018dfaa3366"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:55.173976"], ["updated_at", "2015-05-01 18:25:55.173976"]]
1032422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032423
+  (0.0ms) SAVEPOINT active_record_1
1032424
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1324423075 LIMIT 1
1032425
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1324423075], ["username", "billy_41"], ["access_token", "d2d0da25cc08b500b8dbd369176d1fdc"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:55.175630"], ["updated_at", "2015-05-01 18:25:55.175630"]]
1032426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032427
+  (0.0ms) SAVEPOINT active_record_1
1032428
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -156195834 LIMIT 1
1032429
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -156195834], ["username", "billy_42"], ["access_token", "51b25a81eb0db8d04aa53ce38d27d258"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:55.177301"], ["updated_at", "2015-05-01 18:25:55.177301"]]
1032430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032431
+  (0.0ms) SAVEPOINT active_record_1
1032432
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -73750057 LIMIT 1
1032433
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -73750057], ["username", "billy_43"], ["access_token", "70f5e9b510b0068c833781e350479dd1"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:55.179300"], ["updated_at", "2015-05-01 18:25:55.179300"]]
1032434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032435
+  (0.0ms) SAVEPOINT active_record_1
1032436
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -492344397 LIMIT 1
1032437
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -492344397], ["username", "billy_44"], ["access_token", "559d5edeec6a5f2c586bbded75886803"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:55.181026"], ["updated_at", "2015-05-01 18:25:55.181026"]]
1032438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032439
+  (0.0ms) SAVEPOINT active_record_1
1032440
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1238323070 LIMIT 1
1032441
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1238323070], ["username", "billy_45"], ["access_token", "beb9b1ff3420e59e4a8db234adb85d97"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:55.182997"], ["updated_at", "2015-05-01 18:25:55.182997"]]
1032442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032443
+  (0.0ms) SAVEPOINT active_record_1
1032444
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1111293921 LIMIT 1
1032445
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1111293921], ["username", "billy_46"], ["access_token", "c53c1fc84eec4278fd1dc8d09abd08ff"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:55.184834"], ["updated_at", "2015-05-01 18:25:55.184834"]]
1032446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032447
+  (0.0ms) SAVEPOINT active_record_1
1032448
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -258908431 LIMIT 1
1032449
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -258908431], ["username", "billy_47"], ["access_token", "dac4f3ea4a3338c27dc7c088a67a0420"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:55.186521"], ["updated_at", "2015-05-01 18:25:55.186521"]]
1032450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032451
+  (0.0ms) SAVEPOINT active_record_1
1032452
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -683694670 LIMIT 1
1032453
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -683694670], ["username", "billy_48"], ["access_token", "47748a3f118fef80ee977d5af81f4ccd"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:55.188301"], ["updated_at", "2015-05-01 18:25:55.188301"]]
1032454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032455
+  (0.0ms) SAVEPOINT active_record_1
1032456
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -172744331 LIMIT 1
1032457
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -172744331], ["username", "billy_49"], ["access_token", "c7804da7505f0eeee2b7f8f82b2dac78"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:55.190399"], ["updated_at", "2015-05-01 18:25:55.190399"]]
1032458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032459
+  (0.0ms) SAVEPOINT active_record_1
1032460
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1032461
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032463
+  (1.2ms) rollback transaction
1032464
+  (0.1ms) begin transaction
1032465
+  (0.0ms) SAVEPOINT active_record_1
1032466
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -10955509 LIMIT 1
1032467
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -10955509], ["username", "jstrav"], ["access_token", "f26ad63bdb18aff03ad0af2c3ab64dfc"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.201506"], ["updated_at", "2015-05-01 18:25:55.201506"]]
1032468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032469
+  (0.0ms) SAVEPOINT active_record_1
1032470
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1632412230 LIMIT 1
1032471
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1632412230], ["username", "mary"], ["access_token", "38f6e20b3e1619a4c4c0e21b99715111"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.204379"], ["updated_at", "2015-05-01 18:25:55.204379"]]
1032472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032473
+  (0.0ms) SAVEPOINT active_record_1
1032474
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1812952442 LIMIT 1
1032475
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1812952442], ["username", "jstead"], ["access_token", "6c88704956c34556e418637c9e324fab"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.206879"], ["updated_at", "2015-05-01 18:25:55.206879"]]
1032476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032477
+  (0.0ms) SAVEPOINT active_record_1
1032478
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -812771482 LIMIT 1
1032479
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -812771482], ["username", "bigbear"], ["access_token", "b22cdff1efb6a5c0cb4dfa6044cea87a"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.208840"], ["updated_at", "2015-05-01 18:25:55.208840"]]
1032480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032481
+  (0.0ms) SAVEPOINT active_record_1
1032482
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" LIKE 'jst%')
1032483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032484
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" LIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032485
+  (0.4ms) rollback transaction
1032486
+  (0.0ms) begin transaction
1032487
+  (0.0ms) SAVEPOINT active_record_1
1032488
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -872803629 LIMIT 1
1032489
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -872803629], ["username", "jstrav"], ["access_token", "7cfad1688ee5ff891a13bb87ee31cfd6"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.214339"], ["updated_at", "2015-05-01 18:25:55.214339"]]
1032490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032491
+  (0.0ms) SAVEPOINT active_record_1
1032492
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1323048693 LIMIT 1
1032493
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1323048693], ["username", "mary"], ["access_token", "a00de651376b557c402560ada38f3373"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.216352"], ["updated_at", "2015-05-01 18:25:55.216352"]]
1032494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032495
+  (0.0ms) SAVEPOINT active_record_1
1032496
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1693911434 LIMIT 1
1032497
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1693911434], ["username", "jstead"], ["access_token", "223f4ffc42d1d4e42394c3c618852120"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.218275"], ["updated_at", "2015-05-01 18:25:55.218275"]]
1032498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032499
+  (0.0ms) SAVEPOINT active_record_1
1032500
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1744083541 LIMIT 1
1032501
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1744083541], ["username", "bigbear"], ["access_token", "45baa66d0095a80058fb168607c3f7a8"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.220044"], ["updated_at", "2015-05-01 18:25:55.220044"]]
1032502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032503
+  (0.0ms) SAVEPOINT active_record_1
1032504
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0))
1032505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032506
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
1032507
+  (0.4ms) rollback transaction
1032508
+  (0.0ms) begin transaction
1032509
+  (0.0ms) SAVEPOINT active_record_1
1032510
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1385751685 LIMIT 1
1032511
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1385751685], ["username", "jstrav"], ["access_token", "d14ebc2d0ec009857e004906af2ebdcf"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.225463"], ["updated_at", "2015-05-01 18:25:55.225463"]]
1032512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032513
+  (0.0ms) SAVEPOINT active_record_1
1032514
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2083285434 LIMIT 1
1032515
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2083285434], ["username", "mary"], ["access_token", "4f5d4bb7886ee5f82eca558552f83575"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.227311"], ["updated_at", "2015-05-01 18:25:55.227311"]]
1032516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032517
+  (0.0ms) SAVEPOINT active_record_1
1032518
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1147464898 LIMIT 1
1032519
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1147464898], ["username", "jstead"], ["access_token", "410d76ce53d31d7b8f1a524a7aa7930d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.229150"], ["updated_at", "2015-05-01 18:25:55.229150"]]
1032520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032521
+  (0.0ms) SAVEPOINT active_record_1
1032522
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1537670866 LIMIT 1
1032523
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1537670866], ["username", "bigbear"], ["access_token", "66c1ccc55a440cf33a63882d2ce53e6f"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.230814"], ["updated_at", "2015-05-01 18:25:55.230814"]]
1032524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032525
+  (0.0ms) SAVEPOINT active_record_1
1032526
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1032527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032528
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
1032529
+  (0.4ms) rollback transaction
1032530
+  (0.0ms) begin transaction
1032531
+  (0.0ms) SAVEPOINT active_record_1
1032532
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -819545859 LIMIT 1
1032533
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -819545859], ["username", "jstrav"], ["access_token", "496742a60ae73de202fc51eeb4421d67"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.235171"], ["updated_at", "2015-05-01 18:25:55.235171"]]
1032534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032535
+  (0.0ms) SAVEPOINT active_record_1
1032536
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1651122386 LIMIT 1
1032537
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1651122386], ["username", "mary"], ["access_token", "635bc62472d68a0fe7bcc0111015984e"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.237127"], ["updated_at", "2015-05-01 18:25:55.237127"]]
1032538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032539
+  (0.0ms) SAVEPOINT active_record_1
1032540
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1125304805 LIMIT 1
1032541
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1125304805], ["username", "jstead"], ["access_token", "f13ca6396fcf6936518a68e6986ea597"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.238898"], ["updated_at", "2015-05-01 18:25:55.238898"]]
1032542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032543
+  (0.0ms) SAVEPOINT active_record_1
1032544
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -461732016 LIMIT 1
1032545
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -461732016], ["username", "bigbear"], ["access_token", "ea53dd97918721f91d9c4537f49c28ed"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.240493"], ["updated_at", "2015-05-01 18:25:55.240493"]]
1032546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032547
+  (0.0ms) SAVEPOINT active_record_1
1032548
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%')
1032549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032550
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032551
+  (0.5ms) rollback transaction
1032552
+  (0.0ms) begin transaction
1032553
+  (0.0ms) SAVEPOINT active_record_1
1032554
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1362992603 LIMIT 1
1032555
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1362992603], ["username", "jstrav"], ["access_token", "b461104708fbc3e3214d36c4c9f46b73"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.245024"], ["updated_at", "2015-05-01 18:25:55.245024"]]
1032556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032557
+  (0.0ms) SAVEPOINT active_record_1
1032558
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1018168228 LIMIT 1
1032559
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1018168228], ["username", "mary"], ["access_token", "be50105885e82a61a13c7ebdea81d512"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.247253"], ["updated_at", "2015-05-01 18:25:55.247253"]]
1032560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032561
+  (0.0ms) SAVEPOINT active_record_1
1032562
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -30233658 LIMIT 1
1032563
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -30233658], ["username", "jstead"], ["access_token", "40556c944025e137d051931909bb0339"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.249055"], ["updated_at", "2015-05-01 18:25:55.249055"]]
1032564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032565
+  (0.0ms) SAVEPOINT active_record_1
1032566
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2060337118 LIMIT 1
1032567
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2060337118], ["username", "bigbear"], ["access_token", "8f3bf840e89bccdcfa9b94afd5aee2e9"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.250618"], ["updated_at", "2015-05-01 18:25:55.250618"]]
1032568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032569
+  (0.0ms) SAVEPOINT active_record_1
1032570
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1032571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032572
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032573
+  (0.6ms) rollback transaction
1032574
+  (0.1ms) begin transaction
1032575
+  (0.1ms) SAVEPOINT active_record_1
1032576
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1027853152 LIMIT 1
1032577
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1027853152], ["username", "jstrav"], ["access_token", "d29da552e1f9f13d8004c772a71a1a21"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.256352"], ["updated_at", "2015-05-01 18:25:55.256352"]]
1032578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032579
+  (0.0ms) SAVEPOINT active_record_1
1032580
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -813151644 LIMIT 1
1032581
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -813151644], ["username", "mary"], ["access_token", "4c2a5454319d5f724fab76336ac62972"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.259366"], ["updated_at", "2015-05-01 18:25:55.259366"]]
1032582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032583
+  (0.0ms) SAVEPOINT active_record_1
1032584
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -301544547 LIMIT 1
1032585
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -301544547], ["username", "jstead"], ["access_token", "14b50431c282ac41681acdc6f53956b9"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.262010"], ["updated_at", "2015-05-01 18:25:55.262010"]]
1032586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032587
+  (0.0ms) SAVEPOINT active_record_1
1032588
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1667270273 LIMIT 1
1032589
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1667270273], ["username", "bigbear"], ["access_token", "47571e3ebe37b26fc47fbc8e143bc46b"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.264216"], ["updated_at", "2015-05-01 18:25:55.264216"]]
1032590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032591
+  (0.0ms) SAVEPOINT active_record_1
1032592
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%')
1032593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032594
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032595
+  (0.4ms) rollback transaction
1032596
+  (0.0ms) begin transaction
1032597
+  (0.0ms) SAVEPOINT active_record_1
1032598
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -82936628 LIMIT 1
1032599
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -82936628], ["username", "jstrav"], ["access_token", "3dc93995e022136191864a82c281d1b6"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.269227"], ["updated_at", "2015-05-01 18:25:55.269227"]]
1032600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032601
+  (0.0ms) SAVEPOINT active_record_1
1032602
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -630979579 LIMIT 1
1032603
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -630979579], ["username", "mary"], ["access_token", "09c3db20fce82473e7bb76199e08a855"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.271068"], ["updated_at", "2015-05-01 18:25:55.271068"]]
1032604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032605
+  (0.0ms) SAVEPOINT active_record_1
1032606
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2050360875 LIMIT 1
1032607
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2050360875], ["username", "jstead"], ["access_token", "b8ab54e6a4e64cc46f1e4e9b1ab0db2d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.272861"], ["updated_at", "2015-05-01 18:25:55.272861"]]
1032608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032609
+  (0.0ms) SAVEPOINT active_record_1
1032610
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1866214964 LIMIT 1
1032611
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1866214964], ["username", "bigbear"], ["access_token", "2c7ff8447ff4062dfecf4ce6ae3a20b0"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.274450"], ["updated_at", "2015-05-01 18:25:55.274450"]]
1032612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032613
+  (0.0ms) SAVEPOINT active_record_1
1032614
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0))
1032615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032616
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
1032617
+  (0.4ms) rollback transaction
1032618
+  (0.1ms) begin transaction
1032619
+  (0.0ms) SAVEPOINT active_record_1
1032620
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -532169803 LIMIT 1
1032621
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -532169803], ["username", "jstrav"], ["access_token", "4c1a2357e37abd0b5cc9f1a30bf7ed31"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.279986"], ["updated_at", "2015-05-01 18:25:55.279986"]]
1032622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032623
+  (0.0ms) SAVEPOINT active_record_1
1032624
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -357100119 LIMIT 1
1032625
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -357100119], ["username", "mary"], ["access_token", "6cabd9fe8810fc72cacf4a274d8a2154"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.282273"], ["updated_at", "2015-05-01 18:25:55.282273"]]
1032626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032627
+  (0.0ms) SAVEPOINT active_record_1
1032628
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -880502628 LIMIT 1
1032629
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -880502628], ["username", "jstead"], ["access_token", "3f95e9ccd240e7f3c24c80edebaf5950"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.285084"], ["updated_at", "2015-05-01 18:25:55.285084"]]
1032630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032631
+  (0.0ms) SAVEPOINT active_record_1
1032632
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -935308345 LIMIT 1
1032633
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -935308345], ["username", "bigbear"], ["access_token", "4d34c72b822fc61ab94a3755b2c2591c"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.287331"], ["updated_at", "2015-05-01 18:25:55.287331"]]
1032634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032635
+  (0.0ms) SAVEPOINT active_record_1
1032636
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%' OR "openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%' OR "openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%' OR "openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%' OR "openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0))
1032637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032638
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%' OR "openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%' OR "openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%' OR "openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%' OR "openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
1032639
+  (0.6ms) rollback transaction
1032640
+  (0.1ms) begin transaction
1032641
+  (0.1ms) SAVEPOINT active_record_1
1032642
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -699926938 LIMIT 1
1032643
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -699926938], ["username", "jstrav"], ["access_token", "91340346d68d819803cbbc10d8553a19"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.294515"], ["updated_at", "2015-05-01 18:25:55.294515"]]
1032644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032645
+  (0.0ms) SAVEPOINT active_record_1
1032646
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -287914434 LIMIT 1
1032647
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -287914434], ["username", "mary"], ["access_token", "18da50c174e6fa4013a1d8b0a0cf91e6"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.297481"], ["updated_at", "2015-05-01 18:25:55.297481"]]
1032648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032649
+  (0.0ms) SAVEPOINT active_record_1
1032650
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2074039535 LIMIT 1
1032651
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2074039535], ["username", "jstead"], ["access_token", "0ae8ab25e88744cd5fa4e85b5fcf864d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.300136"], ["updated_at", "2015-05-01 18:25:55.300136"]]
1032652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032653
+  (0.0ms) SAVEPOINT active_record_1
1032654
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -22358850 LIMIT 1
1032655
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -22358850], ["username", "bigbear"], ["access_token", "89cb8e8377c72046c9f224830125f3ef"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.302465"], ["updated_at", "2015-05-01 18:25:55.302465"]]
1032656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032657
+  (0.0ms) SAVEPOINT active_record_1
1032658
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%')
1032659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032660
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032661
+  (0.4ms) rollback transaction
1032662
+  (0.0ms) begin transaction
1032663
+  (0.0ms) SAVEPOINT active_record_1
1032664
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1250652337 LIMIT 1
1032665
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1250652337], ["username", "jstrav"], ["access_token", "c16feccf1f0ee5bc3db8c1b9d5b0b5ee"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.307464"], ["updated_at", "2015-05-01 18:25:55.307464"]]
1032666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032667
+  (0.0ms) SAVEPOINT active_record_1
1032668
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1433590043 LIMIT 1
1032669
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1433590043], ["username", "mary"], ["access_token", "fa25faed911dcdcb3df7644dc58b5e4c"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.309415"], ["updated_at", "2015-05-01 18:25:55.309415"]]
1032670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032671
+  (0.0ms) SAVEPOINT active_record_1
1032672
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -942383470 LIMIT 1
1032673
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -942383470], ["username", "jstead"], ["access_token", "083e1b8ed3565ade69f819713a624929"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.311475"], ["updated_at", "2015-05-01 18:25:55.311475"]]
1032674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032675
+  (0.0ms) SAVEPOINT active_record_1
1032676
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1010016864 LIMIT 1
1032677
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1010016864], ["username", "bigbear"], ["access_token", "662cdf10df384ee111f1203ed17d4461"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.313469"], ["updated_at", "2015-05-01 18:25:55.313469"]]
1032678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032679
+  (0.0ms) SAVEPOINT active_record_1
1032680
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%')
1032681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032682
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC
1032683
+  (0.5ms) rollback transaction
1032684
+  (0.0ms) begin transaction
1032685
+  (0.0ms) SAVEPOINT active_record_1
1032686
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -15021333 LIMIT 1
1032687
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -15021333], ["username", "jstrav"], ["access_token", "3c5c22ba7c1ca53bc93868e4554a8aeb"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.318395"], ["updated_at", "2015-05-01 18:25:55.318395"]]
1032688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032689
+  (0.0ms) SAVEPOINT active_record_1
1032690
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1950413990 LIMIT 1
1032691
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1950413990], ["username", "mary"], ["access_token", "536133899e4491887d784cc4e2c89e68"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.320288"], ["updated_at", "2015-05-01 18:25:55.320288"]]
1032692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032693
+  (0.0ms) SAVEPOINT active_record_1
1032694
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1378120376 LIMIT 1
1032695
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1378120376], ["username", "jstead"], ["access_token", "6ae0720d4150def9152fd6da74370fbc"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.322423"], ["updated_at", "2015-05-01 18:25:55.322423"]]
1032696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032697
+  (0.0ms) SAVEPOINT active_record_1
1032698
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1788413587 LIMIT 1
1032699
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1788413587], ["username", "bigbear"], ["access_token", "46083e25ab5e793894ed325ea685d7c5"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.324082"], ["updated_at", "2015-05-01 18:25:55.324082"]]
1032700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032701
+  (0.0ms) SAVEPOINT active_record_1
1032702
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -965803252 LIMIT 1
1032703
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -965803252], ["username", "foo_bb"], ["access_token", "00af58f47ca0d545d50fc296830fc40e"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2015-05-01 18:25:55.325803"], ["updated_at", "2015-05-01 18:25:55.325803"]]
1032704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032705
+  (0.0ms) SAVEPOINT active_record_1
1032706
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -147476644 LIMIT 1
1032707
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -147476644], ["username", "foo_bj"], ["access_token", "939bec513135a2e36b7867a52b8dd71f"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2015-05-01 18:25:55.327468"], ["updated_at", "2015-05-01 18:25:55.327468"]]
1032708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032709
+  (0.0ms) SAVEPOINT active_record_1
1032710
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -635686128 LIMIT 1
1032711
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -635686128], ["username", "foo_tj"], ["access_token", "3713bac17c1b37b589ee2a59b9417df2"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2015-05-01 18:25:55.329188"], ["updated_at", "2015-05-01 18:25:55.329188"]]
1032712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032713
+  (0.0ms) SAVEPOINT active_record_1
1032714
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
1032715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032716
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" DESC
1032717
+  (0.0ms) SAVEPOINT active_record_1
1032718
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
1032719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032720
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%') ORDER BY "openstax_accounts_accounts"."first_name" ASC, "openstax_accounts_accounts"."last_name" ASC
1032721
+  (0.5ms) rollback transaction
1032722
+  (0.1ms) begin transaction
1032723
+  (0.1ms) SAVEPOINT active_record_1
1032724
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2053616669 LIMIT 1
1032725
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2053616669], ["username", "jstrav"], ["access_token", "56ff84048ec4651462fb89f47768666e"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.337019"], ["updated_at", "2015-05-01 18:25:55.337019"]]
1032726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032727
+  (0.0ms) SAVEPOINT active_record_1
1032728
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1367449322 LIMIT 1
1032729
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1367449322], ["username", "mary"], ["access_token", "05f6a0708f4934f311d28c08a2f10f41"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.339926"], ["updated_at", "2015-05-01 18:25:55.339926"]]
1032730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032731
+  (0.0ms) SAVEPOINT active_record_1
1032732
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1632544272 LIMIT 1
1032733
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1632544272], ["username", "jstead"], ["access_token", "945e395a8c72f8fad83bfd397b058058"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.342603"], ["updated_at", "2015-05-01 18:25:55.342603"]]
1032734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032735
+  (0.0ms) SAVEPOINT active_record_1
1032736
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1937629801 LIMIT 1
1032737
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1937629801], ["username", "bigbear"], ["access_token", "737bbf5f6d31c593c9202f433a3af899"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.344803"], ["updated_at", "2015-05-01 18:25:55.344803"]]
1032738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032739
+  (0.0ms) SAVEPOINT active_record_1
1032740
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1590446522 LIMIT 1
1032741
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1590446522], ["username", "billy_00"], ["access_token", "4e4c1e862120c638673b2d1a04569d00"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:55.358810"], ["updated_at", "2015-05-01 18:25:55.358810"]]
1032742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032743
+  (0.0ms) SAVEPOINT active_record_1
1032744
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1429368340 LIMIT 1
1032745
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1429368340], ["username", "billy_01"], ["access_token", "b1f043526580b83d7105e1129a3e557e"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:55.360677"], ["updated_at", "2015-05-01 18:25:55.360677"]]
1032746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032747
+  (0.0ms) SAVEPOINT active_record_1
1032748
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -471236865 LIMIT 1
1032749
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -471236865], ["username", "billy_02"], ["access_token", "9be377b52675aeb331ff24083e6c7f22"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:55.362472"], ["updated_at", "2015-05-01 18:25:55.362472"]]
1032750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032751
+  (0.0ms) SAVEPOINT active_record_1
1032752
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1762654456 LIMIT 1
1032753
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1762654456], ["username", "billy_03"], ["access_token", "f2423741af6786283d079a03f9c163d3"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:55.364295"], ["updated_at", "2015-05-01 18:25:55.364295"]]
1032754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032755
+  (0.1ms) SAVEPOINT active_record_1
1032756
+ OpenStax::Accounts::Account Exists (1.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1202595527 LIMIT 1
1032757
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1202595527], ["username", "billy_04"], ["access_token", "298fd6b6cbabc9150df3d98cecd4336e"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:55.367014"], ["updated_at", "2015-05-01 18:25:55.367014"]]
1032758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032759
+  (0.0ms) SAVEPOINT active_record_1
1032760
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -712990214 LIMIT 1
1032761
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -712990214], ["username", "billy_05"], ["access_token", "fde7c0eff083ddd82b6b8a2429940150"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:55.370735"], ["updated_at", "2015-05-01 18:25:55.370735"]]
1032762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032763
+  (0.0ms) SAVEPOINT active_record_1
1032764
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1377376637 LIMIT 1
1032765
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1377376637], ["username", "billy_06"], ["access_token", "d31936fe0e4c3304c533d4d752f747e2"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:55.375238"], ["updated_at", "2015-05-01 18:25:55.375238"]]
1032766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032767
+  (0.0ms) SAVEPOINT active_record_1
1032768
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1284388618 LIMIT 1
1032769
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1284388618], ["username", "billy_07"], ["access_token", "b46b3e31d6df6b6b1a27b0088d6e00e7"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:55.377811"], ["updated_at", "2015-05-01 18:25:55.377811"]]
1032770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032771
+  (0.0ms) SAVEPOINT active_record_1
1032772
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1375334391 LIMIT 1
1032773
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1375334391], ["username", "billy_08"], ["access_token", "36f2dc5e59fa960102196096e5fb6e9c"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:55.379534"], ["updated_at", "2015-05-01 18:25:55.379534"]]
1032774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032775
+  (0.0ms) SAVEPOINT active_record_1
1032776
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -815236966 LIMIT 1
1032777
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -815236966], ["username", "billy_09"], ["access_token", "4d5514e41da9b34d4b97462adaa425b2"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:55.381245"], ["updated_at", "2015-05-01 18:25:55.381245"]]
1032778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032779
+  (0.0ms) SAVEPOINT active_record_1
1032780
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -930160686 LIMIT 1
1032781
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -930160686], ["username", "billy_10"], ["access_token", "215b6ced62c04e62f1733ccb86dc4aa4"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:55.383020"], ["updated_at", "2015-05-01 18:25:55.383020"]]
1032782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032783
+  (0.0ms) SAVEPOINT active_record_1
1032784
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -898716040 LIMIT 1
1032785
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -898716040], ["username", "billy_11"], ["access_token", "8d2508aa1663a5e2766f35cbcf8a2360"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:55.384715"], ["updated_at", "2015-05-01 18:25:55.384715"]]
1032786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032787
+  (0.0ms) SAVEPOINT active_record_1
1032788
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1299625983 LIMIT 1
1032789
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1299625983], ["username", "billy_12"], ["access_token", "15941fc551acea375ba3f1b9d0df1574"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:55.386417"], ["updated_at", "2015-05-01 18:25:55.386417"]]
1032790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032791
+  (0.1ms) SAVEPOINT active_record_1
1032792
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1819658532 LIMIT 1
1032793
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1819658532], ["username", "billy_13"], ["access_token", "757546efe508714e3a1883642410d8e7"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:55.388089"], ["updated_at", "2015-05-01 18:25:55.388089"]]
1032794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032795
+  (0.0ms) SAVEPOINT active_record_1
1032796
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -283656435 LIMIT 1
1032797
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -283656435], ["username", "billy_14"], ["access_token", "ff94a600da8ed7f66a30d064e5d1dcb4"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:55.389797"], ["updated_at", "2015-05-01 18:25:55.389797"]]
1032798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032799
+  (0.0ms) SAVEPOINT active_record_1
1032800
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -579734113 LIMIT 1
1032801
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -579734113], ["username", "billy_15"], ["access_token", "f0315f129018c0f26e91b8eef6e2e26b"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:55.391502"], ["updated_at", "2015-05-01 18:25:55.391502"]]
1032802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032803
+  (0.0ms) SAVEPOINT active_record_1
1032804
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2128058314 LIMIT 1
1032805
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2128058314], ["username", "billy_16"], ["access_token", "81923593f156fa3e31e9e6fbb90e14dd"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:55.393225"], ["updated_at", "2015-05-01 18:25:55.393225"]]
1032806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032807
+  (0.0ms) SAVEPOINT active_record_1
1032808
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -699690378 LIMIT 1
1032809
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -699690378], ["username", "billy_17"], ["access_token", "71f6d1c3e8fa6ed774ce5582ba09844e"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:55.394939"], ["updated_at", "2015-05-01 18:25:55.394939"]]
1032810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032811
+  (0.0ms) SAVEPOINT active_record_1
1032812
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369795049 LIMIT 1
1032813
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -369795049], ["username", "billy_18"], ["access_token", "d9f5d0cfbceb1dd8391010030e7df97f"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:55.396636"], ["updated_at", "2015-05-01 18:25:55.396636"]]
1032814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032815
+  (0.0ms) SAVEPOINT active_record_1
1032816
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1260734904 LIMIT 1
1032817
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1260734904], ["username", "billy_19"], ["access_token", "5e01f58742cc2bd050cec56f801f04fe"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:55.398397"], ["updated_at", "2015-05-01 18:25:55.398397"]]
1032818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032819
+  (0.1ms) SAVEPOINT active_record_1
1032820
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -118693184 LIMIT 1
1032821
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -118693184], ["username", "billy_20"], ["access_token", "c1028e8a587683dd738e6d2632ebb89c"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:55.400084"], ["updated_at", "2015-05-01 18:25:55.400084"]]
1032822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032823
+  (0.0ms) SAVEPOINT active_record_1
1032824
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1039477866 LIMIT 1
1032825
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1039477866], ["username", "billy_21"], ["access_token", "49effcd83f1be7b20f42f47bc3f908e4"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:55.401865"], ["updated_at", "2015-05-01 18:25:55.401865"]]
1032826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032827
+  (0.0ms) SAVEPOINT active_record_1
1032828
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1621260190 LIMIT 1
1032829
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1621260190], ["username", "billy_22"], ["access_token", "1bd38360d8a2972e2ec7071f9ad87f12"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:55.403602"], ["updated_at", "2015-05-01 18:25:55.403602"]]
1032830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032831
+  (0.0ms) SAVEPOINT active_record_1
1032832
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1293915595 LIMIT 1
1032833
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1293915595], ["username", "billy_23"], ["access_token", "782da892996fbe81a6728ee50b58845f"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:55.405310"], ["updated_at", "2015-05-01 18:25:55.405310"]]
1032834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032835
+  (0.0ms) SAVEPOINT active_record_1
1032836
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1357309624 LIMIT 1
1032837
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1357309624], ["username", "billy_24"], ["access_token", "b9f69e0865cdb5f78ed23b3d4b325903"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:55.406978"], ["updated_at", "2015-05-01 18:25:55.406978"]]
1032838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032839
+  (0.1ms) SAVEPOINT active_record_1
1032840
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1578101373 LIMIT 1
1032841
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1578101373], ["username", "billy_25"], ["access_token", "21be43a2988b209b20e51a65a403b778"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:55.408907"], ["updated_at", "2015-05-01 18:25:55.408907"]]
1032842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032843
+  (0.0ms) SAVEPOINT active_record_1
1032844
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1369082537 LIMIT 1
1032845
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1369082537], ["username", "billy_26"], ["access_token", "1a33013ff739a29f9cda5eb6a5b9e88e"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:55.410603"], ["updated_at", "2015-05-01 18:25:55.410603"]]
1032846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032847
+  (0.0ms) SAVEPOINT active_record_1
1032848
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -578145975 LIMIT 1
1032849
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -578145975], ["username", "billy_27"], ["access_token", "a333d5da36377d08f5c31c4d764303bd"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:55.412260"], ["updated_at", "2015-05-01 18:25:55.412260"]]
1032850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032851
+  (0.0ms) SAVEPOINT active_record_1
1032852
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1010726356 LIMIT 1
1032853
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1010726356], ["username", "billy_28"], ["access_token", "dfa8440f16bd10c95980ad7299e37dd6"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:55.413943"], ["updated_at", "2015-05-01 18:25:55.413943"]]
1032854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032855
+  (0.0ms) SAVEPOINT active_record_1
1032856
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -990365545 LIMIT 1
1032857
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -990365545], ["username", "billy_29"], ["access_token", "2b3416115527b2f8b970e652981199f1"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:55.415620"], ["updated_at", "2015-05-01 18:25:55.415620"]]
1032858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032859
+  (0.0ms) SAVEPOINT active_record_1
1032860
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -515624111 LIMIT 1
1032861
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -515624111], ["username", "billy_30"], ["access_token", "b8ecdda08e9b83797b8711ecb4f6c23e"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:55.417327"], ["updated_at", "2015-05-01 18:25:55.417327"]]
1032862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032863
+  (0.0ms) SAVEPOINT active_record_1
1032864
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -524191648 LIMIT 1
1032865
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -524191648], ["username", "billy_31"], ["access_token", "fda7651d2d593c9e09c760ae71754828"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:55.419007"], ["updated_at", "2015-05-01 18:25:55.419007"]]
1032866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032867
+  (0.0ms) SAVEPOINT active_record_1
1032868
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -783593186 LIMIT 1
1032869
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -783593186], ["username", "billy_32"], ["access_token", "71b1e542d4c9baed87541f4e9c93cfbe"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:55.420686"], ["updated_at", "2015-05-01 18:25:55.420686"]]
1032870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032871
+  (0.0ms) SAVEPOINT active_record_1
1032872
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1279732181 LIMIT 1
1032873
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1279732181], ["username", "billy_33"], ["access_token", "bdfe8516087d76a8e85136456edab574"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:55.422611"], ["updated_at", "2015-05-01 18:25:55.422611"]]
1032874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032875
+  (0.0ms) SAVEPOINT active_record_1
1032876
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1688918607 LIMIT 1
1032877
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1688918607], ["username", "billy_34"], ["access_token", "1313eb1427e7a7b54572476166cc5e2f"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:55.424291"], ["updated_at", "2015-05-01 18:25:55.424291"]]
1032878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032879
+  (0.0ms) SAVEPOINT active_record_1
1032880
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -342861605 LIMIT 1
1032881
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -342861605], ["username", "billy_35"], ["access_token", "0ed2dc8775ae8f10a3b10d04aa80e177"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:55.426004"], ["updated_at", "2015-05-01 18:25:55.426004"]]
1032882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032883
+  (0.0ms) SAVEPOINT active_record_1
1032884
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -589344805 LIMIT 1
1032885
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -589344805], ["username", "billy_36"], ["access_token", "09a57b66def071a1771e89bd333c67bd"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:55.427671"], ["updated_at", "2015-05-01 18:25:55.427671"]]
1032886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032887
+  (0.0ms) SAVEPOINT active_record_1
1032888
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -818853249 LIMIT 1
1032889
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -818853249], ["username", "billy_37"], ["access_token", "9424b2221bdc04f86a444f28517e0d2a"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:55.429353"], ["updated_at", "2015-05-01 18:25:55.429353"]]
1032890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032891
+  (0.0ms) SAVEPOINT active_record_1
1032892
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -430184105 LIMIT 1
1032893
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -430184105], ["username", "billy_38"], ["access_token", "9ac8ef18e7c75bf7c4941ed07b3c2d79"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:55.431069"], ["updated_at", "2015-05-01 18:25:55.431069"]]
1032894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032895
+  (0.0ms) SAVEPOINT active_record_1
1032896
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -623998756 LIMIT 1
1032897
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -623998756], ["username", "billy_39"], ["access_token", "74a3fe0efce0972feddadefeef5f687c"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:55.432737"], ["updated_at", "2015-05-01 18:25:55.432737"]]
1032898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032899
+  (0.0ms) SAVEPOINT active_record_1
1032900
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1736874032 LIMIT 1
1032901
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1736874032], ["username", "billy_40"], ["access_token", "7618098c13e88c7f2613146edaa8b8d3"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:55.434412"], ["updated_at", "2015-05-01 18:25:55.434412"]]
1032902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032903
+  (0.0ms) SAVEPOINT active_record_1
1032904
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1884093076 LIMIT 1
1032905
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1884093076], ["username", "billy_41"], ["access_token", "2999374314de7702dcdccb4c4e03cd19"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:55.436089"], ["updated_at", "2015-05-01 18:25:55.436089"]]
1032906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032907
+  (0.0ms) SAVEPOINT active_record_1
1032908
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1282398365 LIMIT 1
1032909
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1282398365], ["username", "billy_42"], ["access_token", "81eb68dcd10b4b2bb00d15e6d48fefb6"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:55.437775"], ["updated_at", "2015-05-01 18:25:55.437775"]]
1032910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032911
+  (0.0ms) SAVEPOINT active_record_1
1032912
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -706147767 LIMIT 1
1032913
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -706147767], ["username", "billy_43"], ["access_token", "2e1d9395da4c056a0ae3f3af67d9d1f3"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:55.439461"], ["updated_at", "2015-05-01 18:25:55.439461"]]
1032914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032915
+  (0.0ms) SAVEPOINT active_record_1
1032916
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1277870506 LIMIT 1
1032917
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1277870506], ["username", "billy_44"], ["access_token", "8cb1ecd694784dfeb7199ad5af901287"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:55.441192"], ["updated_at", "2015-05-01 18:25:55.441192"]]
1032918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032919
+  (0.0ms) SAVEPOINT active_record_1
1032920
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1637150257 LIMIT 1
1032921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1637150257], ["username", "billy_45"], ["access_token", "03bed63c674a7c4e794047129f0ea82e"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:55.442890"], ["updated_at", "2015-05-01 18:25:55.442890"]]
1032922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032923
+  (0.0ms) SAVEPOINT active_record_1
1032924
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1032925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032926
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40
1032927
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1032928
+  (1.1ms) rollback transaction
1032929
+  (0.1ms) begin transaction
1032930
+  (0.0ms) SAVEPOINT active_record_1
1032931
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1523761796 LIMIT 1
1032932
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1523761796], ["username", "jstrav"], ["access_token", "12fcc119ff08f459decb24cd8ceabdef"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.452363"], ["updated_at", "2015-05-01 18:25:55.452363"]]
1032933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032934
+  (0.0ms) SAVEPOINT active_record_1
1032935
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -831981459 LIMIT 1
1032936
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -831981459], ["username", "mary"], ["access_token", "6fa82947be63cae53ab60ad0840f0e6b"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.454462"], ["updated_at", "2015-05-01 18:25:55.454462"]]
1032937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032938
+  (0.1ms) SAVEPOINT active_record_1
1032939
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2070680142 LIMIT 1
1032940
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2070680142], ["username", "jstead"], ["access_token", "241b5e6fb51461b4e545fb94878f11b9"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.456470"], ["updated_at", "2015-05-01 18:25:55.456470"]]
1032941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032942
+  (0.1ms) SAVEPOINT active_record_1
1032943
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -973070335 LIMIT 1
1032944
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -973070335], ["username", "bigbear"], ["access_token", "3419fe54589888bcfaa11ee1a31cd1c5"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.458990"], ["updated_at", "2015-05-01 18:25:55.458990"]]
1032945
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032946
+  (0.1ms) SAVEPOINT active_record_1
1032947
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1314335872 LIMIT 1
1032948
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1314335872], ["username", "billy_00"], ["access_token", "d73a7d8589e4f358509228b19edf0b78"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:55.462127"], ["updated_at", "2015-05-01 18:25:55.462127"]]
1032949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032950
+  (0.0ms) SAVEPOINT active_record_1
1032951
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1037489158 LIMIT 1
1032952
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1037489158], ["username", "billy_01"], ["access_token", "fcc558523b1d31d6498fdb7b2ab6ea99"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:55.464809"], ["updated_at", "2015-05-01 18:25:55.464809"]]
1032953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032954
+  (0.0ms) SAVEPOINT active_record_1
1032955
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1522461391 LIMIT 1
1032956
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1522461391], ["username", "billy_02"], ["access_token", "55b10961fe658dbf4f0ba5fa2d2c422b"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:55.467257"], ["updated_at", "2015-05-01 18:25:55.467257"]]
1032957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032958
+  (0.0ms) SAVEPOINT active_record_1
1032959
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2110837288 LIMIT 1
1032960
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2110837288], ["username", "billy_03"], ["access_token", "9954eccbb985c43c059295f5e66ebfa4"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:55.469503"], ["updated_at", "2015-05-01 18:25:55.469503"]]
1032961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032962
+  (0.0ms) SAVEPOINT active_record_1
1032963
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1438444255 LIMIT 1
1032964
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1438444255], ["username", "billy_04"], ["access_token", "a8c8aaf2166b365b1ac41481d6392ad1"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:55.471505"], ["updated_at", "2015-05-01 18:25:55.471505"]]
1032965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032966
+  (0.0ms) SAVEPOINT active_record_1
1032967
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1595315665 LIMIT 1
1032968
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1595315665], ["username", "billy_05"], ["access_token", "fa9d9b7b503904a9160db8d9f99cbef6"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:55.473293"], ["updated_at", "2015-05-01 18:25:55.473293"]]
1032969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032970
+  (0.0ms) SAVEPOINT active_record_1
1032971
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -427249074 LIMIT 1
1032972
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -427249074], ["username", "billy_06"], ["access_token", "ff0fc6b2022a49723fdd4759d2d3dcf3"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:55.475196"], ["updated_at", "2015-05-01 18:25:55.475196"]]
1032973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032974
+  (0.1ms) SAVEPOINT active_record_1
1032975
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1745912911 LIMIT 1
1032976
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1745912911], ["username", "billy_07"], ["access_token", "48161c0dbae7cbc6a97459f0b117c527"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:55.476904"], ["updated_at", "2015-05-01 18:25:55.476904"]]
1032977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032978
+  (0.0ms) SAVEPOINT active_record_1
1032979
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -681576331 LIMIT 1
1032980
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -681576331], ["username", "billy_08"], ["access_token", "d3787ff8ceed301a2316a5e2c10e0322"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:55.478609"], ["updated_at", "2015-05-01 18:25:55.478609"]]
1032981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032982
+  (0.0ms) SAVEPOINT active_record_1
1032983
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1540894861 LIMIT 1
1032984
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1540894861], ["username", "billy_09"], ["access_token", "65d75f2f1e4b54e9dba831d7c47c2aca"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:55.480305"], ["updated_at", "2015-05-01 18:25:55.480305"]]
1032985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032986
+  (0.0ms) SAVEPOINT active_record_1
1032987
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2070614971 LIMIT 1
1032988
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2070614971], ["username", "billy_10"], ["access_token", "0c5aaccba63ab0ea48099c1b84c2389d"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:55.481992"], ["updated_at", "2015-05-01 18:25:55.481992"]]
1032989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032990
+  (0.0ms) SAVEPOINT active_record_1
1032991
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -949184230 LIMIT 1
1032992
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -949184230], ["username", "billy_11"], ["access_token", "efb9a4c52110c8fcead1b0605a2536d1"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:55.483713"], ["updated_at", "2015-05-01 18:25:55.483713"]]
1032993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032994
+  (0.1ms) SAVEPOINT active_record_1
1032995
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -273835592 LIMIT 1
1032996
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -273835592], ["username", "billy_12"], ["access_token", "7c27279248953a0601333b79ecd83f13"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:55.485534"], ["updated_at", "2015-05-01 18:25:55.485534"]]
1032997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032998
+  (0.0ms) SAVEPOINT active_record_1
1032999
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -856756818 LIMIT 1
1033000
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -856756818], ["username", "billy_13"], ["access_token", "a000283ce43ffc80346f66c12f27c553"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:55.487426"], ["updated_at", "2015-05-01 18:25:55.487426"]]
1033001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033002
+  (0.0ms) SAVEPOINT active_record_1
1033003
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -413590497 LIMIT 1
1033004
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -413590497], ["username", "billy_14"], ["access_token", "047585181bf0df43f52ad4befe03b190"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:55.489146"], ["updated_at", "2015-05-01 18:25:55.489146"]]
1033005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033006
+  (0.0ms) SAVEPOINT active_record_1
1033007
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -587149567 LIMIT 1
1033008
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -587149567], ["username", "billy_15"], ["access_token", "d768b7f1fec35b8b566a87a4fc441c57"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:55.490897"], ["updated_at", "2015-05-01 18:25:55.490897"]]
1033009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033010
+  (0.0ms) SAVEPOINT active_record_1
1033011
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1097809673 LIMIT 1
1033012
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1097809673], ["username", "billy_16"], ["access_token", "d488d71d04fa87788d75f9afcd5e0561"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:55.492694"], ["updated_at", "2015-05-01 18:25:55.492694"]]
1033013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033014
+  (0.0ms) SAVEPOINT active_record_1
1033015
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1238589297 LIMIT 1
1033016
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1238589297], ["username", "billy_17"], ["access_token", "a1934f6633ff6e9ea54af261fd525740"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:55.494500"], ["updated_at", "2015-05-01 18:25:55.494500"]]
1033017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033018
+  (0.0ms) SAVEPOINT active_record_1
1033019
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1898579562 LIMIT 1
1033020
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1898579562], ["username", "billy_18"], ["access_token", "6cd5309a15851a2fc6e2698e5d8e0bf6"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:55.496711"], ["updated_at", "2015-05-01 18:25:55.496711"]]
1033021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033022
+  (0.0ms) SAVEPOINT active_record_1
1033023
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1045453005 LIMIT 1
1033024
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1045453005], ["username", "billy_19"], ["access_token", "34b274fb7304b9594d94237708136c14"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:55.498648"], ["updated_at", "2015-05-01 18:25:55.498648"]]
1033025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033026
+  (0.0ms) SAVEPOINT active_record_1
1033027
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -673758595 LIMIT 1
1033028
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -673758595], ["username", "billy_20"], ["access_token", "54287f2ac59b85acb6243c9ec0fe619a"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:55.500448"], ["updated_at", "2015-05-01 18:25:55.500448"]]
1033029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033030
+  (0.0ms) SAVEPOINT active_record_1
1033031
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1291729675 LIMIT 1
1033032
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1291729675], ["username", "billy_21"], ["access_token", "f23affdc7544319a5a6a733c79fbffb4"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:55.502264"], ["updated_at", "2015-05-01 18:25:55.502264"]]
1033033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033034
+  (0.0ms) SAVEPOINT active_record_1
1033035
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -749337321 LIMIT 1
1033036
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -749337321], ["username", "billy_22"], ["access_token", "57aca112c618d47c150572a8a6583934"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:55.504134"], ["updated_at", "2015-05-01 18:25:55.504134"]]
1033037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033038
+  (0.0ms) SAVEPOINT active_record_1
1033039
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1619041084 LIMIT 1
1033040
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1619041084], ["username", "billy_23"], ["access_token", "5f41bc27d62d6b305e5eab84cbf92d8c"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:55.505958"], ["updated_at", "2015-05-01 18:25:55.505958"]]
1033041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033042
+  (0.0ms) SAVEPOINT active_record_1
1033043
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -348132766 LIMIT 1
1033044
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -348132766], ["username", "billy_24"], ["access_token", "a7fa10caeefb6c05fad867b88da13912"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:55.507932"], ["updated_at", "2015-05-01 18:25:55.507932"]]
1033045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033046
+  (0.0ms) SAVEPOINT active_record_1
1033047
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -513823890 LIMIT 1
1033048
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -513823890], ["username", "billy_25"], ["access_token", "3f5dd647c1cfaf9a20840db40cea1be3"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:55.509706"], ["updated_at", "2015-05-01 18:25:55.509706"]]
1033049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033050
+  (0.0ms) SAVEPOINT active_record_1
1033051
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1647679175 LIMIT 1
1033052
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1647679175], ["username", "billy_26"], ["access_token", "31156e9a62ea31719076948eeeafe358"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:55.511537"], ["updated_at", "2015-05-01 18:25:55.511537"]]
1033053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033054
+  (0.0ms) SAVEPOINT active_record_1
1033055
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -815575397 LIMIT 1
1033056
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -815575397], ["username", "billy_27"], ["access_token", "7898f60b553d38009a5f14e47d3901b5"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:55.513320"], ["updated_at", "2015-05-01 18:25:55.513320"]]
1033057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033058
+  (0.0ms) SAVEPOINT active_record_1
1033059
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1778090094 LIMIT 1
1033060
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1778090094], ["username", "billy_28"], ["access_token", "a27dbd43dac6d80a20cf651c9fdfd9be"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:55.515053"], ["updated_at", "2015-05-01 18:25:55.515053"]]
1033061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033062
+  (0.0ms) SAVEPOINT active_record_1
1033063
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1220308503 LIMIT 1
1033064
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1220308503], ["username", "billy_29"], ["access_token", "1c563d70c606f9dfc3a7c97fd8a60735"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:55.516786"], ["updated_at", "2015-05-01 18:25:55.516786"]]
1033065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033066
+  (0.0ms) SAVEPOINT active_record_1
1033067
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -173773043 LIMIT 1
1033068
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -173773043], ["username", "billy_30"], ["access_token", "2edd32e503bd17954c57cf00ece54c4d"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:55.518791"], ["updated_at", "2015-05-01 18:25:55.518791"]]
1033069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033070
+  (0.0ms) SAVEPOINT active_record_1
1033071
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1697187650 LIMIT 1
1033072
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1697187650], ["username", "billy_31"], ["access_token", "e5d61f2e9415e6a44b5fa140b0589f16"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:55.520509"], ["updated_at", "2015-05-01 18:25:55.520509"]]
1033073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033074
+  (0.0ms) SAVEPOINT active_record_1
1033075
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1004203177 LIMIT 1
1033076
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1004203177], ["username", "billy_32"], ["access_token", "0560bdfa53b9ac374aa71b2b2d08a014"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:55.522232"], ["updated_at", "2015-05-01 18:25:55.522232"]]
1033077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033078
+  (0.1ms) SAVEPOINT active_record_1
1033079
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1437358532 LIMIT 1
1033080
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1437358532], ["username", "billy_33"], ["access_token", "2e3e18afc902be31746cb33acbbd7616"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:55.523999"], ["updated_at", "2015-05-01 18:25:55.523999"]]
1033081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033082
+  (0.0ms) SAVEPOINT active_record_1
1033083
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408858153 LIMIT 1
1033084
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -408858153], ["username", "billy_34"], ["access_token", "a7edcade786baa93bedcf3ce1c752560"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:55.525733"], ["updated_at", "2015-05-01 18:25:55.525733"]]
1033085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033086
+  (0.0ms) SAVEPOINT active_record_1
1033087
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -301627148 LIMIT 1
1033088
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -301627148], ["username", "billy_35"], ["access_token", "ecb8e69e76e7400d6d8fd1e2437fd056"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:55.527449"], ["updated_at", "2015-05-01 18:25:55.527449"]]
1033089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033090
+  (0.0ms) SAVEPOINT active_record_1
1033091
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -437470670 LIMIT 1
1033092
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -437470670], ["username", "billy_36"], ["access_token", "a0eb6f2704d6202409d15eef88e5aee2"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:55.529163"], ["updated_at", "2015-05-01 18:25:55.529163"]]
1033093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033094
+  (0.0ms) SAVEPOINT active_record_1
1033095
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1224327412 LIMIT 1
1033096
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1224327412], ["username", "billy_37"], ["access_token", "c59e1d6df0573620ebf19a6aeb757467"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:55.530984"], ["updated_at", "2015-05-01 18:25:55.530984"]]
1033097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033098
+  (0.0ms) SAVEPOINT active_record_1
1033099
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -709084930 LIMIT 1
1033100
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -709084930], ["username", "billy_38"], ["access_token", "fede1b4e9d973e00becd1ba64b0099fc"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:55.532721"], ["updated_at", "2015-05-01 18:25:55.532721"]]
1033101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033102
+  (0.0ms) SAVEPOINT active_record_1
1033103
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -989494504 LIMIT 1
1033104
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -989494504], ["username", "billy_39"], ["access_token", "b7fb8f0d4698865d95881bec25894e8e"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:55.534443"], ["updated_at", "2015-05-01 18:25:55.534443"]]
1033105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033106
+  (0.0ms) SAVEPOINT active_record_1
1033107
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1690893959 LIMIT 1
1033108
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1690893959], ["username", "billy_40"], ["access_token", "7951b4972cc289ee82e9b15b4d9fb90b"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:55.536209"], ["updated_at", "2015-05-01 18:25:55.536209"]]
1033109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033110
+  (0.1ms) SAVEPOINT active_record_1
1033111
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1680241428 LIMIT 1
1033112
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1680241428], ["username", "billy_41"], ["access_token", "ba50073b915b7d4c446029f8226649b6"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:55.537935"], ["updated_at", "2015-05-01 18:25:55.537935"]]
1033113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033114
+  (0.0ms) SAVEPOINT active_record_1
1033115
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1780523516 LIMIT 1
1033116
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1780523516], ["username", "billy_42"], ["access_token", "744f7bb10b7cdde66b0e6e7cae25fa9f"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:55.539699"], ["updated_at", "2015-05-01 18:25:55.539699"]]
1033117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033118
+  (0.0ms) SAVEPOINT active_record_1
1033119
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1945631042 LIMIT 1
1033120
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1945631042], ["username", "billy_43"], ["access_token", "4bc11af14a4a245688dd7d88272de1e2"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:55.541462"], ["updated_at", "2015-05-01 18:25:55.541462"]]
1033121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033122
+  (0.0ms) SAVEPOINT active_record_1
1033123
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1160405864 LIMIT 1
1033124
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1160405864], ["username", "billy_44"], ["access_token", "d7cb645c5d509573432935eb4a47a3cc"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:55.543260"], ["updated_at", "2015-05-01 18:25:55.543260"]]
1033125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033126
+  (0.0ms) SAVEPOINT active_record_1
1033127
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -815453844 LIMIT 1
1033128
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -815453844], ["username", "billy_45"], ["access_token", "9182d7c218c8dc0e97bd617f9efa532b"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:55.545007"], ["updated_at", "2015-05-01 18:25:55.545007"]]
1033129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033130
+  (0.0ms) SAVEPOINT active_record_1
1033131
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1033132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033133
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 20
1033134
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1033135
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1033136
+  (1.1ms) rollback transaction
1033137
+  (0.1ms) begin transaction
1033138
+  (0.1ms) SAVEPOINT active_record_1
1033139
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1710619663 LIMIT 1
1033140
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1710619663], ["username", "jstrav"], ["access_token", "a0fb4b0b01efcf11348fed31aa2c1bcb"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:55.554771"], ["updated_at", "2015-05-01 18:25:55.554771"]]
1033141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033142
+  (0.1ms) SAVEPOINT active_record_1
1033143
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -874935985 LIMIT 1
1033144
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -874935985], ["username", "mary"], ["access_token", "7f50e19f48299dbc3fe7064446a0e5d0"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:55.556980"], ["updated_at", "2015-05-01 18:25:55.556980"]]
1033145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033146
+  (0.1ms) SAVEPOINT active_record_1
1033147
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1121384086 LIMIT 1
1033148
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1121384086], ["username", "jstead"], ["access_token", "061c4d97dae81e87cac2f0ab3fecba02"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:55.558992"], ["updated_at", "2015-05-01 18:25:55.558992"]]
1033149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033150
+  (0.0ms) SAVEPOINT active_record_1
1033151
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -959490977 LIMIT 1
1033152
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -959490977], ["username", "bigbear"], ["access_token", "f1e959d98df8f4f2a998a3bd90a88fda"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:55.560820"], ["updated_at", "2015-05-01 18:25:55.560820"]]
1033153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033154
+  (0.0ms) SAVEPOINT active_record_1
1033155
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -349712149 LIMIT 1
1033156
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -349712149], ["username", "billy_00"], ["access_token", "41e04df450bc69e1af42a6ab76a53ab1"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:55.562580"], ["updated_at", "2015-05-01 18:25:55.562580"]]
1033157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033158
+  (0.0ms) SAVEPOINT active_record_1
1033159
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1628585783 LIMIT 1
1033160
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1628585783], ["username", "billy_01"], ["access_token", "20c9fcea2176793dffb3aa8dd5a4fe66"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:55.564426"], ["updated_at", "2015-05-01 18:25:55.564426"]]
1033161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033162
+  (0.0ms) SAVEPOINT active_record_1
1033163
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1154160101 LIMIT 1
1033164
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1154160101], ["username", "billy_02"], ["access_token", "f699da8179ec14cd6779b553889c3e40"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:55.566371"], ["updated_at", "2015-05-01 18:25:55.566371"]]
1033165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033166
+  (0.0ms) SAVEPOINT active_record_1
1033167
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -388207017 LIMIT 1
1033168
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -388207017], ["username", "billy_03"], ["access_token", "825b1469c63a15e3e5397012ce980964"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:55.568242"], ["updated_at", "2015-05-01 18:25:55.568242"]]
1033169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033170
+  (0.0ms) SAVEPOINT active_record_1
1033171
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1606596264 LIMIT 1
1033172
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1606596264], ["username", "billy_04"], ["access_token", "3095804aa66893d489f3b72644bed3bb"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:55.569990"], ["updated_at", "2015-05-01 18:25:55.569990"]]
1033173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1033174
+  (0.0ms) SAVEPOINT active_record_1
1033175
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -274365417 LIMIT 1
1033176
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -274365417], ["username", "billy_05"], ["access_token", "f601b092e639b19c7eee99325bfa8a91"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:55.571718"], ["updated_at", "2015-05-01 18:25:55.571718"]]
1033177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033178
+  (0.0ms) SAVEPOINT active_record_1
1033179
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1296361962 LIMIT 1
1033180
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1296361962], ["username", "billy_06"], ["access_token", "ce45965aece461e84f96f0decf1da901"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:55.573477"], ["updated_at", "2015-05-01 18:25:55.573477"]]
1033181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033182
+  (0.0ms) SAVEPOINT active_record_1
1033183
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2065406728 LIMIT 1
1033184
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2065406728], ["username", "billy_07"], ["access_token", "54bbe355cce2144f19ce98a7a12f23d4"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:55.575201"], ["updated_at", "2015-05-01 18:25:55.575201"]]
1033185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033186
+  (0.0ms) SAVEPOINT active_record_1
1033187
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1335407729 LIMIT 1
1033188
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1335407729], ["username", "billy_08"], ["access_token", "64503602288ecb2ec10457cd6534028c"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:55.576913"], ["updated_at", "2015-05-01 18:25:55.576913"]]
1033189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033190
+  (0.0ms) SAVEPOINT active_record_1
1033191
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1560512767 LIMIT 1
1033192
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1560512767], ["username", "billy_09"], ["access_token", "545844300f1f12ea68da4abd02db5b92"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:55.578633"], ["updated_at", "2015-05-01 18:25:55.578633"]]
1033193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033194
+  (0.0ms) SAVEPOINT active_record_1
1033195
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1171127437 LIMIT 1
1033196
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1171127437], ["username", "billy_10"], ["access_token", "f50a1574bc6de443067d53d77e79ecb3"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:55.580357"], ["updated_at", "2015-05-01 18:25:55.580357"]]
1033197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033198
+  (0.0ms) SAVEPOINT active_record_1
1033199
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830966186 LIMIT 1
1033200
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1830966186], ["username", "billy_11"], ["access_token", "43d6296d6595e6bca235d4ab27f078e3"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:55.582059"], ["updated_at", "2015-05-01 18:25:55.582059"]]
1033201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033202
+  (0.0ms) SAVEPOINT active_record_1
1033203
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1321852925 LIMIT 1
1033204
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1321852925], ["username", "billy_12"], ["access_token", "bf4022454d3314c67d2d0ef901215eaa"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:55.583762"], ["updated_at", "2015-05-01 18:25:55.583762"]]
1033205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033206
+  (0.0ms) SAVEPOINT active_record_1
1033207
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -302987932 LIMIT 1
1033208
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -302987932], ["username", "billy_13"], ["access_token", "bcb20f75237a803f329f28871b5a13b2"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:55.585454"], ["updated_at", "2015-05-01 18:25:55.585454"]]
1033209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033210
+  (0.0ms) SAVEPOINT active_record_1
1033211
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2067587024 LIMIT 1
1033212
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2067587024], ["username", "billy_14"], ["access_token", "2e52d8a91bb8369c98ae2ba9eb791b4e"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:55.587130"], ["updated_at", "2015-05-01 18:25:55.587130"]]
1033213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033214
+  (0.0ms) SAVEPOINT active_record_1
1033215
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2102404693 LIMIT 1
1033216
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2102404693], ["username", "billy_15"], ["access_token", "4433b418902811baf29adca33cb3b2b6"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:55.589136"], ["updated_at", "2015-05-01 18:25:55.589136"]]
1033217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033218
+  (0.0ms) SAVEPOINT active_record_1
1033219
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141233099 LIMIT 1
1033220
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1141233099], ["username", "billy_16"], ["access_token", "67546b34ebdb8c5cfbb1cbe1b773d4aa"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:55.590908"], ["updated_at", "2015-05-01 18:25:55.590908"]]
1033221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033222
+  (0.0ms) SAVEPOINT active_record_1
1033223
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1030862358 LIMIT 1
1033224
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1030862358], ["username", "billy_17"], ["access_token", "1fc445198d7d5730e10ba1838c287e38"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:55.592665"], ["updated_at", "2015-05-01 18:25:55.592665"]]
1033225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033226
+  (0.0ms) SAVEPOINT active_record_1
1033227
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -676926603 LIMIT 1
1033228
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -676926603], ["username", "billy_18"], ["access_token", "4e23d925091d4833a996c54ae4ace036"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:55.594645"], ["updated_at", "2015-05-01 18:25:55.594645"]]
1033229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033230
+  (0.0ms) SAVEPOINT active_record_1
1033231
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1696961162 LIMIT 1
1033232
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1696961162], ["username", "billy_19"], ["access_token", "eb9e56e08ef38daf0bfa9d6b0fb39a0f"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:55.596871"], ["updated_at", "2015-05-01 18:25:55.596871"]]
1033233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033234
+  (0.0ms) SAVEPOINT active_record_1
1033235
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1358647106 LIMIT 1
1033236
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1358647106], ["username", "billy_20"], ["access_token", "9992608dc9a8d7d5bd3d1e4a99f51c5f"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:55.598750"], ["updated_at", "2015-05-01 18:25:55.598750"]]
1033237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033238
+  (0.0ms) SAVEPOINT active_record_1
1033239
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1736164480 LIMIT 1
1033240
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1736164480], ["username", "billy_21"], ["access_token", "8264c279789f95dda7af3726b88e38cd"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:55.600604"], ["updated_at", "2015-05-01 18:25:55.600604"]]
1033241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033242
+  (0.0ms) SAVEPOINT active_record_1
1033243
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137417184 LIMIT 1
1033244
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2137417184], ["username", "billy_22"], ["access_token", "2204322afec40296000a8d2cbb44b0df"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:55.602424"], ["updated_at", "2015-05-01 18:25:55.602424"]]
1033245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033246
+  (0.0ms) SAVEPOINT active_record_1
1033247
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -817873205 LIMIT 1
1033248
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -817873205], ["username", "billy_23"], ["access_token", "3bbbef2326019e2fa9f0197d0eb6e12b"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:55.604232"], ["updated_at", "2015-05-01 18:25:55.604232"]]
1033249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033250
+  (0.0ms) SAVEPOINT active_record_1
1033251
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1833300325 LIMIT 1
1033252
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1833300325], ["username", "billy_24"], ["access_token", "e5b16732176ad4e4a3756a781fa18c9e"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:55.606188"], ["updated_at", "2015-05-01 18:25:55.606188"]]
1033253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033254
+  (0.0ms) SAVEPOINT active_record_1
1033255
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1784305592 LIMIT 1
1033256
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1784305592], ["username", "billy_25"], ["access_token", "0263c53eab4b114fea9ff4ad1a290121"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:55.608197"], ["updated_at", "2015-05-01 18:25:55.608197"]]
1033257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033258
+  (0.0ms) SAVEPOINT active_record_1
1033259
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -469138391 LIMIT 1
1033260
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -469138391], ["username", "billy_26"], ["access_token", "46cf02139ec24c8a3278b8c1ce6b3525"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:55.609977"], ["updated_at", "2015-05-01 18:25:55.609977"]]
1033261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033262
+  (0.0ms) SAVEPOINT active_record_1
1033263
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -217281224 LIMIT 1
1033264
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -217281224], ["username", "billy_27"], ["access_token", "a873d0d2dfdc8e4fd9ebcfa14c2ce5b0"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:55.611891"], ["updated_at", "2015-05-01 18:25:55.611891"]]
1033265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033266
+  (0.0ms) SAVEPOINT active_record_1
1033267
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -943027646 LIMIT 1
1033268
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -943027646], ["username", "billy_28"], ["access_token", "0f37b51d996056dd90bd9f478baa319b"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:55.613884"], ["updated_at", "2015-05-01 18:25:55.613884"]]
1033269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033270
+  (0.0ms) SAVEPOINT active_record_1
1033271
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013939009 LIMIT 1
1033272
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2013939009], ["username", "billy_29"], ["access_token", "7a29e11ba0282afb04d10501dc4b2343"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:55.615807"], ["updated_at", "2015-05-01 18:25:55.615807"]]
1033273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033274
+  (0.0ms) SAVEPOINT active_record_1
1033275
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1339894589 LIMIT 1
1033276
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1339894589], ["username", "billy_30"], ["access_token", "bbd9a67b0679c2f07e6ad2d1df156717"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:55.617571"], ["updated_at", "2015-05-01 18:25:55.617571"]]
1033277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033278
+  (0.0ms) SAVEPOINT active_record_1
1033279
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1910873511 LIMIT 1
1033280
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1910873511], ["username", "billy_31"], ["access_token", "55c4ee3e5512dedef1a1b9b2ea501d12"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:55.619326"], ["updated_at", "2015-05-01 18:25:55.619326"]]
1033281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033282
+  (0.0ms) SAVEPOINT active_record_1
1033283
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1196944285 LIMIT 1
1033284
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1196944285], ["username", "billy_32"], ["access_token", "a855d896647d6c0513884c0dcf239ace"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:55.621066"], ["updated_at", "2015-05-01 18:25:55.621066"]]
1033285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033286
+  (0.0ms) SAVEPOINT active_record_1
1033287
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1250927390 LIMIT 1
1033288
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1250927390], ["username", "billy_33"], ["access_token", "a07b9cb3c416a01507a85262f41ad83d"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:55.622800"], ["updated_at", "2015-05-01 18:25:55.622800"]]
1033289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033290
+  (0.0ms) SAVEPOINT active_record_1
1033291
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1191836309 LIMIT 1
1033292
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1191836309], ["username", "billy_34"], ["access_token", "a7cc79045c0f6c24a89b118dedb46390"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:55.624558"], ["updated_at", "2015-05-01 18:25:55.624558"]]
1033293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033294
+  (0.0ms) SAVEPOINT active_record_1
1033295
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1304253507 LIMIT 1
1033296
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1304253507], ["username", "billy_35"], ["access_token", "7cf8aaa588c9f87d621203a3ccfb4877"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:55.626295"], ["updated_at", "2015-05-01 18:25:55.626295"]]
1033297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033298
+  (0.0ms) SAVEPOINT active_record_1
1033299
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1971065224 LIMIT 1
1033300
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1971065224], ["username", "billy_36"], ["access_token", "79e5aa199074989c08605de7ad7682e7"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:55.628038"], ["updated_at", "2015-05-01 18:25:55.628038"]]
1033301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033302
+  (0.0ms) SAVEPOINT active_record_1
1033303
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1894540819 LIMIT 1
1033304
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1894540819], ["username", "billy_37"], ["access_token", "7542fb6710edeb99ffdf4bd3b2537643"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:55.629759"], ["updated_at", "2015-05-01 18:25:55.629759"]]
1033305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033306
+  (0.0ms) SAVEPOINT active_record_1
1033307
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1630124530 LIMIT 1
1033308
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1630124530], ["username", "billy_38"], ["access_token", "7f838e4dc07f527c446a72f018f59d2b"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:55.631485"], ["updated_at", "2015-05-01 18:25:55.631485"]]
1033309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033310
+  (0.0ms) SAVEPOINT active_record_1
1033311
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1745363915 LIMIT 1
1033312
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1745363915], ["username", "billy_39"], ["access_token", "f1b56cf4c2459ae3c3ee0715a345b80a"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:55.633187"], ["updated_at", "2015-05-01 18:25:55.633187"]]
1033313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033314
+  (0.0ms) SAVEPOINT active_record_1
1033315
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -87828349 LIMIT 1
1033316
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -87828349], ["username", "billy_40"], ["access_token", "fe4c318140191b6f1de08ed58ba46146"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:55.634895"], ["updated_at", "2015-05-01 18:25:55.634895"]]
1033317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033318
+  (0.0ms) SAVEPOINT active_record_1
1033319
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108108399 LIMIT 1
1033320
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2108108399], ["username", "billy_41"], ["access_token", "6ea9baee7abb31b864aaf07c0ee36585"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:55.636626"], ["updated_at", "2015-05-01 18:25:55.636626"]]
1033321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033322
+  (0.0ms) SAVEPOINT active_record_1
1033323
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2043593498 LIMIT 1
1033324
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2043593498], ["username", "billy_42"], ["access_token", "0e54079dfcd3dc9e0e4e4735d39a06ca"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:55.638588"], ["updated_at", "2015-05-01 18:25:55.638588"]]
1033325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033326
+  (0.0ms) SAVEPOINT active_record_1
1033327
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -378218190 LIMIT 1
1033328
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -378218190], ["username", "billy_43"], ["access_token", "51dd5e2ebeec430fd5c8379176716a18"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:55.640538"], ["updated_at", "2015-05-01 18:25:55.640538"]]
1033329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033330
+  (0.0ms) SAVEPOINT active_record_1
1033331
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -130268029 LIMIT 1
1033332
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -130268029], ["username", "billy_44"], ["access_token", "cb4af62e0d2dccf65ca0e66332401a6c"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:55.642233"], ["updated_at", "2015-05-01 18:25:55.642233"]]
1033333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033334
+  (0.0ms) SAVEPOINT active_record_1
1033335
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1264843013 LIMIT 1
1033336
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1264843013], ["username", "billy_45"], ["access_token", "873ed0eeafd49c9b6e3ff57822ce574e"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:55.643966"], ["updated_at", "2015-05-01 18:25:55.643966"]]
1033337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033338
+  (0.0ms) SAVEPOINT active_record_1
1033339
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1033340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033341
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 0
1033342
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1033343
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1033344
+  (1.1ms) rollback transaction
1033345
+  (0.1ms) begin transaction
1033346
+  (0.1ms) SAVEPOINT active_record_1
1033347
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 2]]
1033348
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "a892b6"]]
1033349
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1033350
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'a892b6' LIMIT 1
1033351
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "a892b6"], ["created_at", "2015-05-01 18:25:55.670462"], ["updated_at", "2015-05-01 18:25:55.670462"]]
1033352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033353
+  (0.0ms) SAVEPOINT active_record_1
1033354
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1033355
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "alice"]]
1033356
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1
1033357
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice' LIMIT 1
1033358
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "alice"], ["created_at", "2015-05-01 18:25:55.678500"], ["updated_at", "2015-05-01 18:25:55.678500"]]
1033359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033360
+  (0.0ms) SAVEPOINT active_record_1
1033361
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 4]]
1033362
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "alice2"]]
1033363
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1
1033364
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice2' LIMIT 1
1033365
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "alice2"], ["created_at", "2015-05-01 18:25:55.685543"], ["updated_at", "2015-05-01 18:25:55.685543"]]
1033366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033367
+  (0.4ms) rollback transaction
1033368
+  (0.1ms) begin transaction
1033369
+  (0.1ms) SAVEPOINT active_record_1
1033370
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033371
+ SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "7e4cccab5eae3acec599aeeb3c40bb20"], ["created_at", "2015-05-01 18:25:55.690234"], ["updated_at", "2015-05-01 18:25:55.690234"]]
1033372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033373
+  (0.0ms) SAVEPOINT active_record_1
1033374
+ SQL (0.3ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:55.695670"], ["updated_at", "2015-05-01 18:25:55.695670"]]
1033375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033376
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033377
+  (1.1ms) rollback transaction
1033378
+  (0.1ms) begin transaction
1033379
+  (0.1ms) SAVEPOINT active_record_1
1033380
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033381
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "de9601189e67afc7406428ff9e927401"], ["created_at", "2015-05-01 18:25:56.064369"], ["updated_at", "2015-05-01 18:25:56.064369"]]
1033382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033383
+  (0.0ms) SAVEPOINT active_record_1
1033384
+ SQL (0.3ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:56.066592"], ["updated_at", "2015-05-01 18:25:56.066592"]]
1033385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033386
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033387
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 1]]
1033388
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033389
+  (1.0ms) rollback transaction
1033390
+  (0.1ms) begin transaction
1033391
+  (0.0ms) SAVEPOINT active_record_1
1033392
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033393
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "ce56d17d21b172067c4f96495b7c1fea"], ["created_at", "2015-05-01 18:25:56.442139"], ["updated_at", "2015-05-01 18:25:56.442139"]]
1033394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033395
+  (0.0ms) SAVEPOINT active_record_1
1033396
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:56.443694"], ["updated_at", "2015-05-01 18:25:56.443694"]]
1033397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033398
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033399
+ OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 1]]
1033400
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033401
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["id", 1]]
1033402
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033403
+  (1.2ms) rollback transaction
1033404
+  (0.1ms) begin transaction
1033405
+  (0.0ms) SAVEPOINT active_record_1
1033406
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033407
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "a2f471ca81879f0814eaa52237a05be0"], ["created_at", "2015-05-01 18:25:56.803663"], ["updated_at", "2015-05-01 18:25:56.803663"]]
1033408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033409
+  (0.0ms) SAVEPOINT active_record_1
1033410
+ SQL (0.3ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:56.806018"], ["updated_at", "2015-05-01 18:25:56.806018"]]
1033411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1033412
+  (1.1ms) rollback transaction
1033413
+  (0.1ms) begin transaction
1033414
+  (0.0ms) SAVEPOINT active_record_1
1033415
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033416
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "aa1c84dbcf42d5caa491dc7db8b1bb2a"], ["created_at", "2015-05-01 18:25:57.179410"], ["updated_at", "2015-05-01 18:25:57.179410"]]
1033417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033418
+  (0.0ms) SAVEPOINT active_record_1
1033419
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:57.180948"], ["updated_at", "2015-05-01 18:25:57.180948"]]
1033420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033421
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033422
+  (1.0ms) rollback transaction
1033423
+  (0.1ms) begin transaction
1033424
+  (0.0ms) SAVEPOINT active_record_1
1033425
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033426
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.539517"], ["updated_at", "2015-05-01 18:25:57.539517"]]
1033427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033428
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033429
+ Processing by OauthController#token as */*
1033430
+ Parameters: {"grant_type"=>"client_credentials"}
1033431
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033432
+ Started POST "/api/dummy?test=true" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033433
+ Processing by Api::DummyController#dummy as application/vnd.accounts.openstax.v1
1033434
+ Parameters: {"test"=>"true"}
1033435
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033436
+  (0.4ms) rollback transaction
1033437
+  (0.0ms) begin transaction
1033438
+  (0.0ms) SAVEPOINT active_record_1
1033439
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033440
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.558987"], ["updated_at", "2015-05-01 18:25:57.558987"]]
1033441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033442
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033443
+ Processing by OauthController#token as */*
1033444
+ Parameters: {"grant_type"=>"client_credentials"}
1033445
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033446
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033447
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1033448
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
1033449
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033450
+  (0.4ms) rollback transaction
1033451
+  (0.0ms) begin transaction
1033452
+  (0.0ms) SAVEPOINT active_record_1
1033453
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033454
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.575442"], ["updated_at", "2015-05-01 18:25:57.575442"]]
1033455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033456
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033457
+ Processing by OauthController#token as */*
1033458
+ Parameters: {"grant_type"=>"client_credentials"}
1033459
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033460
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033461
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1033462
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033463
+  (0.5ms) rollback transaction
1033464
+  (0.0ms) begin transaction
1033465
+  (0.0ms) SAVEPOINT active_record_1
1033466
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -572343270 LIMIT 1
1033467
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -572343270], ["username", "bbf51584061668170836188c8b46c121"], ["access_token", "d9cad62a7b06b67eb2dbf670b0385a9d"], ["created_at", "2015-05-01 18:25:57.592545"], ["updated_at", "2015-05-01 18:25:57.592545"]]
1033468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033469
+  (0.0ms) SAVEPOINT active_record_1
1033470
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2086981001 LIMIT 1
1033471
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -2086981001], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.595181"], ["updated_at", "2015-05-01 18:25:57.595181"]]
1033472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033473
+  (0.0ms) SAVEPOINT active_record_1
1033474
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1375694993 LIMIT 1
1033475
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1375694993], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.597001"], ["updated_at", "2015-05-01 18:25:57.597001"]]
1033476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033477
+  (0.0ms) SAVEPOINT active_record_1
1033478
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1375694993 LIMIT 1
1033479
+ OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1033480
+ SQL (0.1ms) SELECT "openstax_accounts_groups"."id" AS t0_r0, "openstax_accounts_groups"."openstax_uid" AS t0_r1, "openstax_accounts_groups"."is_public" AS t0_r2, "openstax_accounts_groups"."name" AS t0_r3, "openstax_accounts_groups"."cached_subtree_group_ids" AS t0_r4, "openstax_accounts_groups"."cached_supertree_group_ids" AS t0_r5, "openstax_accounts_groups"."created_at" AS t0_r6, "openstax_accounts_groups"."updated_at" AS t0_r7, "openstax_accounts_group_nestings"."id" AS t1_r0, "openstax_accounts_group_nestings"."member_group_id" AS t1_r1, "openstax_accounts_group_nestings"."container_group_id" AS t1_r2, "openstax_accounts_group_nestings"."created_at" AS t1_r3, "openstax_accounts_group_nestings"."updated_at" AS t1_r4 FROM "openstax_accounts_groups" LEFT OUTER 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" = ? [["container_group_id", -1375694993]]
1033481
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
1033482
+ - -1375694993
1033483
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1033484
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
1033485
+ SQL (0.1ms) SELECT DISTINCT "openstax_accounts_groups"."id" FROM "openstax_accounts_groups" LEFT OUTER 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" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["member_group_id", -2086981001]]
1033486
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1033487
+ - -2086981001
1033488
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
1033489
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1375694993
1033490
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -2086981001
1033491
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -2086981001], ["member_group_id", -1375694993], ["created_at", "2015-05-01 18:25:57.598715"], ["updated_at", "2015-05-01 18:25:57.598715"]]
1033492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033493
+ Started DELETE "/api/groups/-2086981001/nestings/-1375694993" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033494
+ Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1
1033495
+ Parameters: {"group_id"=>"-2086981001", "member_group_id"=>"-1375694993"}
1033496
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1033497
+  (0.5ms) rollback transaction
1033498
+  (0.0ms) begin transaction
1033499
+  (0.0ms) SAVEPOINT active_record_1
1033500
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1057060139 LIMIT 1
1033501
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1057060139], ["username", "fc8db3694291fa8350bbb8f5fa222dab"], ["access_token", "2f67ef99deb68fced84193bd93f3086e"], ["created_at", "2015-05-01 18:25:57.638790"], ["updated_at", "2015-05-01 18:25:57.638790"]]
1033502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033503
+  (0.0ms) SAVEPOINT active_record_1
1033504
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -122899047 LIMIT 1
1033505
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -122899047], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.641126"], ["updated_at", "2015-05-01 18:25:57.641126"]]
1033506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033507
+  (0.0ms) SAVEPOINT active_record_1
1033508
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1092619605 LIMIT 1
1033509
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1092619605], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.644032"], ["updated_at", "2015-05-01 18:25:57.644032"]]
1033510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033511
+ Started POST "/api/groups/-122899047/nestings/-1092619605" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033512
+ Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1
1033513
+ Parameters: {"group_id"=>"-122899047", "member_group_id"=>"-1092619605"}
1033514
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033515
+  (0.5ms) rollback transaction
1033516
+  (0.0ms) begin transaction
1033517
+  (0.0ms) SAVEPOINT active_record_1
1033518
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033519
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.657319"], ["updated_at", "2015-05-01 18:25:57.657319"]]
1033520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033521
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033522
+ Processing by OauthController#token as */*
1033523
+ Parameters: {"grant_type"=>"client_credentials"}
1033524
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033525
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033526
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1033527
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
1033528
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033529
+  (0.4ms) rollback transaction
1033530
+  (0.0ms) begin transaction
1033531
+  (0.0ms) SAVEPOINT active_record_1
1033532
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033533
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.679899"], ["updated_at", "2015-05-01 18:25:57.679899"]]
1033534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033535
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033536
+ Processing by OauthController#token as */*
1033537
+ Parameters: {"grant_type"=>"client_credentials"}
1033538
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033539
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033540
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1033541
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033542
+  (0.5ms) rollback transaction
1033543
+  (0.0ms) begin transaction
1033544
+  (0.0ms) SAVEPOINT active_record_1
1033545
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033546
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-05-01 18:25:57.697757"], ["updated_at", "2015-05-01 18:25:57.697757"]]
1033547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033548
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033549
+ Processing by OauthController#token as */*
1033550
+ Parameters: {"grant_type"=>"client_credentials"}
1033551
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033552
+ Started GET "/api/application_users?q=something" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033553
+ Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1
1033554
+ Parameters: {"q"=>"something"}
1033555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033556
+  (0.4ms) rollback transaction
1033557
+  (0.1ms) begin transaction
1033558
+  (0.0ms) SAVEPOINT active_record_1
1033559
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -513874663 LIMIT 1
1033560
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -513874663], ["username", "98eb0cbacfcbd822a2058c06ded1fffa"], ["access_token", "43e1d23dc02424167d4e223e5f354997"], ["created_at", "2015-05-01 18:25:57.716207"], ["updated_at", "2015-05-01 18:25:57.716207"]]
1033561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033562
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033563
+ Processing by OauthController#token as */*
1033564
+ Parameters: {"grant_type"=>"client_credentials"}
1033565
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033566
+ Started POST "/api/user/find-or-create" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033567
+ Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1
1033568
+ Parameters: {"{\"email\":\"dummy@dum.my\"}"=>nil}
1033569
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033570
+  (0.5ms) rollback transaction
1033571
+  (0.0ms) begin transaction
1033572
+  (0.0ms) SAVEPOINT active_record_1
1033573
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167391188 LIMIT 1
1033574
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -167391188], ["username", "627e7d5a2015b54691a9636bbe346b2e"], ["access_token", "e388ebe6b68a78734c0c47ae75078e6b"], ["created_at", "2015-05-01 18:25:57.738142"], ["updated_at", "2015-05-01 18:25:57.738142"]]
1033575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033576
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033577
+ Processing by OauthController#token as */*
1033578
+ Parameters: {"grant_type"=>"client_credentials"}
1033579
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033580
+ Started POST "/api/user/find-or-create" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033581
+ Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1
1033582
+ Parameters: {"{\"username\":\"dummy\"}"=>nil}
1033583
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033584
+  (0.5ms) rollback transaction
1033585
+  (0.0ms) begin transaction
1033586
+  (0.0ms) SAVEPOINT active_record_1
1033587
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2137775101 LIMIT 1
1033588
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -2137775101], ["username", "4ae8c064453dc47164b359ab603386a9"], ["access_token", "209881d91ef77c70d6210cb059f80ee1"], ["created_at", "2015-05-01 18:25:57.756460"], ["updated_at", "2015-05-01 18:25:57.756460"]]
1033589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033590
+ Started PUT "/api/user" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033591
+ Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1
1033592
+ Parameters: {"{\"username\":\"4ae8c064453dc47164b359ab603386a9\",\"first_name\":null,\"last_name\":null,\"full_name\":null,\"title\":null}"=>nil}
1033593
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033594
+  (0.4ms) rollback transaction
1033595
+  (0.0ms) begin transaction
1033596
+  (0.0ms) SAVEPOINT active_record_1
1033597
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1664230274 LIMIT 1
1033598
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1664230274], ["username", "86169e918afd8c4d4147673338d0171f"], ["access_token", "0d442092fbf4707dbcce5cbf189012ee"], ["created_at", "2015-05-01 18:25:57.767575"], ["updated_at", "2015-05-01 18:25:57.767575"]]
1033599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033600
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033601
+ Processing by OauthController#token as */*
1033602
+ Parameters: {"grant_type"=>"client_credentials"}
1033603
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033604
+ Started GET "/api/users?q=something" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033605
+ Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1
1033606
+ Parameters: {"q"=>"something"}
1033607
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033608
+  (0.5ms) rollback transaction
1033609
+  (0.1ms) begin transaction
1033610
+  (0.0ms) SAVEPOINT active_record_1
1033611
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1759568564 LIMIT 1
1033612
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1759568564], ["username", "8e158ca5a2b793c31fc75f9832055d76"], ["access_token", "14876494e47ef50bf6439c899e274827"], ["created_at", "2015-05-01 18:25:57.786152"], ["updated_at", "2015-05-01 18:25:57.786152"]]
1033613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033614
+  (0.1ms) SAVEPOINT active_record_1
1033615
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1640263430 LIMIT 1
1033616
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1640263430], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.788745"], ["updated_at", "2015-05-01 18:25:57.788745"]]
1033617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033618
+  (0.0ms) SAVEPOINT active_record_1
1033619
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1640263430 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1033620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033621
+ Started DELETE "/api/groups/-1640263430" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033622
+ Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1
1033623
+ Parameters: {"id"=>"-1640263430"}
1033624
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033625
+  (0.5ms) rollback transaction
1033626
+  (0.0ms) begin transaction
1033627
+  (0.0ms) SAVEPOINT active_record_1
1033628
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1747494596 LIMIT 1
1033629
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1747494596], ["username", "6dcc16b42a48c5facb58405498648d17"], ["access_token", "72d767e3f869c696d202de65034809c2"], ["created_at", "2015-05-01 18:25:57.805199"], ["updated_at", "2015-05-01 18:25:57.805199"]]
1033630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033631
+  (0.0ms) SAVEPOINT active_record_1
1033632
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1845385795 LIMIT 1
1033633
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1845385795], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.807431"], ["updated_at", "2015-05-01 18:25:57.807431"]]
1033634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033635
+  (0.0ms) SAVEPOINT active_record_1
1033636
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -1845385795 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1033637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033638
+ Started PUT "/api/groups/-1845385795" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033639
+ Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1
1033640
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil, "id"=>"-1845385795"}
1033641
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033642
+  (0.5ms) rollback transaction
1033643
+  (0.0ms) begin transaction
1033644
+  (0.0ms) SAVEPOINT active_record_1
1033645
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -483417890 LIMIT 1
1033646
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -483417890], ["username", "19c21ca48fa3e10888f309a31c99cb37"], ["access_token", "fb9247344d677b78b10eeb1556d0caf1"], ["created_at", "2015-05-01 18:25:57.820012"], ["updated_at", "2015-05-01 18:25:57.820012"]]
1033647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033648
+  (0.0ms) SAVEPOINT active_record_1
1033649
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1021572799 LIMIT 1
1033650
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1021572799], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.822599"], ["updated_at", "2015-05-01 18:25:57.822599"]]
1033651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033652
+ Started POST "/api/groups" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033653
+ Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1
1033654
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil}
1033655
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033656
+  (0.5ms) rollback transaction
1033657
+  (0.0ms) begin transaction
1033658
+  (0.0ms) SAVEPOINT active_record_1
1033659
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -138675357 LIMIT 1
1033660
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -138675357], ["username", "82dfccb976afebafba709d27da6d5d4f"], ["access_token", "54fd7d6adbc65414c721e67c1734c69d"], ["created_at", "2015-05-01 18:25:57.833695"], ["updated_at", "2015-05-01 18:25:57.833695"]]
1033661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033662
+  (0.0ms) SAVEPOINT active_record_1
1033663
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -620538739 LIMIT 1
1033664
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -620538739], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.836129"], ["updated_at", "2015-05-01 18:25:57.836129"]]
1033665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033666
+  (0.1ms) SAVEPOINT active_record_1
1033667
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1414247978 LIMIT 1
1033668
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1414247978], ["username", "779bcad79f3c5e0c958751517386ea6f"], ["access_token", "d0044458a9bbf68a9e854512acac50a8"], ["created_at", "2015-05-01 18:25:57.838378"], ["updated_at", "2015-05-01 18:25:57.838378"]]
1033669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033670
+  (0.1ms) SAVEPOINT active_record_1
1033671
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = -1414247978 AND "openstax_accounts_group_members"."group_id" = -620538739) LIMIT 1
1033672
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -620538739], ["user_id", -1414247978], ["created_at", "2015-05-01 18:25:57.840425"], ["updated_at", "2015-05-01 18:25:57.840425"]]
1033673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033674
+ Started DELETE "/api/groups/-620538739/members/-1414247978" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033675
+ Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1
1033676
+ Parameters: {"group_id"=>"-620538739", "user_id"=>"-1414247978"}
1033677
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033678
+  (0.5ms) rollback transaction
1033679
+  (0.1ms) begin transaction
1033680
+  (0.0ms) SAVEPOINT active_record_1
1033681
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167943259 LIMIT 1
1033682
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -167943259], ["username", "464cc14e4f9ce7913a8b9b477aad3220"], ["access_token", "3479c6bd9431fcb0579a8b40684dfdfa"], ["created_at", "2015-05-01 18:25:57.855765"], ["updated_at", "2015-05-01 18:25:57.855765"]]
1033683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033684
+  (0.0ms) SAVEPOINT active_record_1
1033685
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -417998542 LIMIT 1
1033686
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -417998542], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.858296"], ["updated_at", "2015-05-01 18:25:57.858296"]]
1033687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033688
+  (0.0ms) SAVEPOINT active_record_1
1033689
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -566854498 LIMIT 1
1033690
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -566854498], ["username", "da682f7ce888f946f08b4519389ec7ba"], ["access_token", "23b855cf8ab533e1ee4c036691fa6393"], ["created_at", "2015-05-01 18:25:57.860542"], ["updated_at", "2015-05-01 18:25:57.860542"]]
1033691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033692
+ Started POST "/api/groups/-417998542/members/-566854498" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033693
+ Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1
1033694
+ Parameters: {"group_id"=>"-417998542", "user_id"=>"-566854498"}
1033695
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033696
+  (0.5ms) rollback transaction
1033697
+  (0.0ms) begin transaction
1033698
+  (0.0ms) SAVEPOINT active_record_1
1033699
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1880908501 LIMIT 1
1033700
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1880908501], ["username", "1fc9b3f71d433f972d015f91bfe26b00"], ["access_token", "b67f9330664ad45b81044be8942d2e40"], ["created_at", "2015-05-01 18:25:57.872342"], ["updated_at", "2015-05-01 18:25:57.872342"]]
1033701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033702
+  (0.0ms) SAVEPOINT active_record_1
1033703
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1726453287 LIMIT 1
1033704
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1726453287], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.874809"], ["updated_at", "2015-05-01 18:25:57.874809"]]
1033705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033706
+  (0.0ms) SAVEPOINT active_record_1
1033707
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1363547024 LIMIT 1
1033708
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1363547024], ["username", "5ac5ed97caa0a373437d81828df38de6"], ["access_token", "05b25511d009fa62dc75a634ea390a0e"], ["created_at", "2015-05-01 18:25:57.876989"], ["updated_at", "2015-05-01 18:25:57.876989"]]
1033709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033710
+  (0.0ms) SAVEPOINT active_record_1
1033711
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = -1363547024 AND "openstax_accounts_group_owners"."group_id" = -1726453287) LIMIT 1
1033712
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -1726453287], ["user_id", -1363547024], ["created_at", "2015-05-01 18:25:57.879015"], ["updated_at", "2015-05-01 18:25:57.879015"]]
1033713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033714
+ Started DELETE "/api/groups/-1726453287/owners/-1363547024" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033715
+ Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1
1033716
+ Parameters: {"group_id"=>"-1726453287", "user_id"=>"-1363547024"}
1033717
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033718
+  (0.6ms) rollback transaction
1033719
+  (0.0ms) begin transaction
1033720
+  (0.0ms) SAVEPOINT active_record_1
1033721
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1593649575 LIMIT 1
1033722
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1593649575], ["username", "1d09b72337769545dbe6fd95c4014203"], ["access_token", "d82ff9f6bcd262c9603d4f686be18b6b"], ["created_at", "2015-05-01 18:25:57.894252"], ["updated_at", "2015-05-01 18:25:57.894252"]]
1033723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033724
+  (0.0ms) SAVEPOINT active_record_1
1033725
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1453687373 LIMIT 1
1033726
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1453687373], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.897462"], ["updated_at", "2015-05-01 18:25:57.897462"]]
1033727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033728
+  (0.0ms) SAVEPOINT active_record_1
1033729
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1209415007 LIMIT 1
1033730
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1209415007], ["username", "1d0a3f0e8770746f38ba97b6af12ddb2"], ["access_token", "2962d1635e0f8ee04c29dcb62ccd0273"], ["created_at", "2015-05-01 18:25:57.899902"], ["updated_at", "2015-05-01 18:25:57.899902"]]
1033731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033732
+ Started POST "/api/groups/-1453687373/owners/-1209415007" for 127.0.0.1 at 2015-05-01 13:25:57 -0500
1033733
+ Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1
1033734
+ Parameters: {"group_id"=>"-1453687373", "user_id"=>"-1209415007"}
1033735
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033736
+  (0.6ms) rollback transaction
1033737
+  (0.1ms) begin transaction
1033738
+  (0.1ms) SAVEPOINT active_record_1
1033739
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1033740
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "8ddedd53c3caee79a1e120441cd7931e"], ["created_at", "2015-05-01 18:25:57.913652"], ["updated_at", "2015-05-01 18:25:57.913652"]]
1033741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033742
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1033743
+ Processing by OpenStax::Accounts::SessionsController#destroy as HTML
1033744
+ Redirected to http://test.host/
1033745
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1033746
+  (0.4ms) rollback transaction
1033747
+  (0.0ms) begin transaction
1033748
+  (0.0ms) SAVEPOINT active_record_1
1033749
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1033750
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "37c1ba8211f05766081b380518d29fe1"], ["created_at", "2015-05-01 18:25:57.921691"], ["updated_at", "2015-05-01 18:25:57.921691"]]
1033751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033752
+  (0.4ms) rollback transaction
1033753
+  (0.1ms) begin transaction
1033754
+  (0.0ms) SAVEPOINT active_record_1
1033755
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1033756
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "570df23bc532e6d5970efd7c6a6633a8"], ["created_at", "2015-05-01 18:25:57.925712"], ["updated_at", "2015-05-01 18:25:57.925712"]]
1033757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033758
+ Processing by OpenStax::Accounts::SessionsController#new as HTML
1033759
+ Redirected to http://test.host/accounts/dev/accounts
1033760
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1033761
+  (0.5ms) rollback transaction
1033762
+  (0.0ms) begin transaction
1033763
+  (0.0ms) rollback transaction
1033764
+  (0.0ms) begin transaction
1033765
+  (0.0ms) SAVEPOINT active_record_1
1033766
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033767
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "13a38f7ca2cad060e060015101dafd57"], ["created_at", "2015-05-01 18:25:57.931992"], ["updated_at", "2015-05-01 18:25:57.931992"]]
1033768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033769
+  (0.0ms) SAVEPOINT active_record_1
1033770
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-05-01 18:25:57.933595"], ["updated_at", "2015-05-01 18:25:57.933595"]]
1033771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033772
+  (0.0ms) SAVEPOINT active_record_1
1033773
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1033774
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 2], ["username", "another_user"], ["access_token", "357ec27f8e9ad767911a43e2db2a7bfa"], ["created_at", "2015-05-01 18:25:57.935456"], ["updated_at", "2015-05-01 18:25:57.935456"]]
1033775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033776
+  (0.0ms) SAVEPOINT active_record_1
1033777
+ SQL (0.0ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 2], ["created_at", "2015-05-01 18:25:57.936751"], ["updated_at", "2015-05-01 18:25:57.936751"]]
1033778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033779
+  (0.0ms) SAVEPOINT active_record_1
1033780
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1079385529 LIMIT 1
1033781
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1079385529], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.938619"], ["updated_at", "2015-05-01 18:25:57.938619"]]
1033782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1033783
+  (0.0ms) SAVEPOINT active_record_1
1033784
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -150023276 LIMIT 1
1033785
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -150023276], ["name", "MyGroup"], ["created_at", "2015-05-01 18:25:57.940467"], ["updated_at", "2015-05-01 18:25:57.940467"]]
1033786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033787
+  (0.0ms) SAVEPOINT active_record_1
1033788
+ OpenStax::Accounts::GroupNesting Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -150023276 LIMIT 1
1033789
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1033790
+ SQL (0.0ms) SELECT "openstax_accounts_groups"."id" AS t0_r0, "openstax_accounts_groups"."openstax_uid" AS t0_r1, "openstax_accounts_groups"."is_public" AS t0_r2, "openstax_accounts_groups"."name" AS t0_r3, "openstax_accounts_groups"."cached_subtree_group_ids" AS t0_r4, "openstax_accounts_groups"."cached_supertree_group_ids" AS t0_r5, "openstax_accounts_groups"."created_at" AS t0_r6, "openstax_accounts_groups"."updated_at" AS t0_r7, "openstax_accounts_group_nestings"."id" AS t1_r0, "openstax_accounts_group_nestings"."member_group_id" AS t1_r1, "openstax_accounts_group_nestings"."container_group_id" AS t1_r2, "openstax_accounts_group_nestings"."created_at" AS t1_r3, "openstax_accounts_group_nestings"."updated_at" AS t1_r4 FROM "openstax_accounts_groups" LEFT OUTER 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" = ? [["container_group_id", -150023276]]
1033791
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
1033792
+ - -150023276
1033793
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1033794
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
1033795
+ SQL (0.0ms) SELECT DISTINCT "openstax_accounts_groups"."id" FROM "openstax_accounts_groups" LEFT OUTER 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" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["member_group_id", -1079385529]]
1033796
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1033797
+ - -1079385529
1033798
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
1033799
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -150023276
1033800
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1079385529
1033801
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -1079385529], ["member_group_id", -150023276], ["created_at", "2015-05-01 18:25:57.942148"], ["updated_at", "2015-05-01 18:25:57.942148"]]
1033802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033803
+ OpenStax::Accounts::GroupMember Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."group_id" = -150023276) LIMIT 1
1033804
+  (0.0ms) SAVEPOINT active_record_1
1033805
+ OpenStax::Accounts::GroupMember Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."group_id" = -150023276) LIMIT 1
1033806
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -150023276], ["user_id", 1], ["created_at", "2015-05-01 18:25:57.951084"], ["updated_at", "2015-05-01 18:25:57.951084"]]
1033807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033808
+  (0.0ms) SAVEPOINT active_record_1
1033809
+ OpenStax::Accounts::GroupMember Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."id" != 1 AND "openstax_accounts_group_members"."group_id" = -150023276) LIMIT 1
1033810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033811
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1033812
+ OpenStax::Accounts::Group Load (0.1ms) 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" = ? [["id", 1]]
1033813
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1033814
+ SQL (0.0ms) SELECT DISTINCT "openstax_accounts_groups"."id" FROM "openstax_accounts_groups" LEFT OUTER 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" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["member_group_id", -150023276]]
1033815
+ SQL (0.1ms) SELECT "openstax_accounts_groups"."id" AS t0_r0, "openstax_accounts_groups"."openstax_uid" AS t0_r1, "openstax_accounts_groups"."is_public" AS t0_r2, "openstax_accounts_groups"."name" AS t0_r3, "openstax_accounts_groups"."cached_subtree_group_ids" AS t0_r4, "openstax_accounts_groups"."cached_supertree_group_ids" AS t0_r5, "openstax_accounts_groups"."created_at" AS t0_r6, "openstax_accounts_groups"."updated_at" AS t0_r7, "openstax_accounts_group_nestings"."id" AS t1_r0, "openstax_accounts_group_nestings"."member_group_id" AS t1_r1, "openstax_accounts_group_nestings"."container_group_id" AS t1_r2, "openstax_accounts_group_nestings"."created_at" AS t1_r3, "openstax_accounts_group_nestings"."updated_at" AS t1_r4 FROM "openstax_accounts_groups" LEFT OUTER 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" = ? AND "openstax_accounts_groups"."id" IN (1) ORDER BY "openstax_accounts_groups"."id" ASC [["member_group_id", -150023276]]
1033816
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1033817
+ - -150023276
1033818
+ - -1079385529
1033819
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1033820
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033821
+ Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033822
+  (0.1ms) SAVEPOINT active_record_1
1033823
+ SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "User"], ["created_at", "2015-05-01 18:25:57.977748"], ["updated_at", "2015-05-01 18:25:57.977748"]]
1033824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1033825
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1033826
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1033827
+ OpenStax::Accounts::Group Load (0.1ms) 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" = ? [["id", 1]]
1033828
+ OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033829
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033830
+  (0.0ms) SAVEPOINT active_record_1
1033831
+ SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "User"], ["created_at", "2015-05-01 18:25:57.986621"], ["updated_at", "2015-05-01 18:25:57.986621"]]
1033832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033833
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1033834
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1033835
+ OpenStax::Accounts::Group Load (0.0ms) 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" = ? [["id", 1]]
1033836
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033837
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033838
+  (0.0ms) SAVEPOINT active_record_1
1033839
+ SQL (0.0ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-05-01 18:25:57.992123"], ["updated_at", "2015-05-01 18:25:57.992123"]]
1033840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033841
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1033842
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1033843
+ OpenStax::Accounts::Group Load (0.0ms) 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" = ? [["id", 1]]
1033844
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033845
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033846
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033847
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033848
+  (0.0ms) SAVEPOINT active_record_1
1033849
+ SQL (0.0ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-05-01 18:25:57.998869"], ["updated_at", "2015-05-01 18:25:57.998869"]]
1033850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033851
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1033852
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1033853
+ OpenStax::Accounts::Group Load (0.0ms) 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" = ? [["id", 1]]
1033854
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033855
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033856
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033857
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033858
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-150023276, -1079385529)
1033859
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1033860
+  (0.6ms) rollback transaction
1033861
+  (0.0ms) begin transaction
1033862
+  (0.0ms) rollback transaction
1033863
+  (0.0ms) begin transaction
1033864
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" IS NULL LIMIT 1
1033865
+  (0.0ms) SAVEPOINT active_record_1
1033866
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033867
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "access_token", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["username", "192176065db33ed64c61af1084d2a057"], ["access_token", "e767e1e18b415f5da217b0f45e3645ee"], ["openstax_uid", 1], ["created_at", "2015-05-01 18:25:58.012349"], ["updated_at", "2015-05-01 18:25:58.012349"]]
1033868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033869
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1033870
+  (0.4ms) rollback transaction
1033871
+  (0.0ms) begin transaction
1033872
+  (0.0ms) SAVEPOINT active_record_1
1033873
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1040218766 LIMIT 1
1033874
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1040218766], ["username", "jstrav"], ["access_token", "6a6d69e95edd3b85c5e5a8720fee7885"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:58.016651"], ["updated_at", "2015-05-01 18:25:58.016651"]]
1033875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033876
+  (0.0ms) SAVEPOINT active_record_1
1033877
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1667752192 LIMIT 1
1033878
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1667752192], ["username", "mary"], ["access_token", "c2aca111ae6e990ff4a8773695d34a9c"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:58.018762"], ["updated_at", "2015-05-01 18:25:58.018762"]]
1033879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033880
+  (0.0ms) SAVEPOINT active_record_1
1033881
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -291777570 LIMIT 1
1033882
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -291777570], ["username", "jstead"], ["access_token", "bd5b0120b1e64bb23f25bc2cac8d0d22"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:58.020677"], ["updated_at", "2015-05-01 18:25:58.020677"]]
1033883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033884
+  (0.0ms) SAVEPOINT active_record_1
1033885
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -109370875 LIMIT 1
1033886
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -109370875], ["username", "bigbear"], ["access_token", "844575ae141b72d31cfe6135f2ac63d7"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:58.022400"], ["updated_at", "2015-05-01 18:25:58.022400"]]
1033887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033888
+  (0.0ms) SAVEPOINT active_record_1
1033889
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1187877231 LIMIT 1
1033890
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1187877231], ["username", "billy_00"], ["access_token", "eb58c28bada53456cad46159fa253edb"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-05-01 18:25:58.024171"], ["updated_at", "2015-05-01 18:25:58.024171"]]
1033891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033892
+  (0.0ms) SAVEPOINT active_record_1
1033893
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1747702240 LIMIT 1
1033894
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1747702240], ["username", "billy_01"], ["access_token", "fb3d4557ec21c33f057489b9f2779d08"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-05-01 18:25:58.025924"], ["updated_at", "2015-05-01 18:25:58.025924"]]
1033895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033896
+  (0.0ms) SAVEPOINT active_record_1
1033897
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1898433379 LIMIT 1
1033898
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1898433379], ["username", "billy_02"], ["access_token", "f830755613ed69cd87abe188188e26da"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-05-01 18:25:58.027680"], ["updated_at", "2015-05-01 18:25:58.027680"]]
1033899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033900
+  (0.0ms) SAVEPOINT active_record_1
1033901
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1220223579 LIMIT 1
1033902
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1220223579], ["username", "billy_03"], ["access_token", "fccc246c3e175d8b4628129153cdc887"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-05-01 18:25:58.029409"], ["updated_at", "2015-05-01 18:25:58.029409"]]
1033903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033904
+  (0.0ms) SAVEPOINT active_record_1
1033905
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1136480857 LIMIT 1
1033906
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1136480857], ["username", "billy_04"], ["access_token", "20e43a8a203a7177ee349fa204a13355"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:58.031255"], ["updated_at", "2015-05-01 18:25:58.031255"]]
1033907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033908
+  (0.0ms) SAVEPOINT active_record_1
1033909
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1201414530 LIMIT 1
1033910
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1201414530], ["username", "billy_05"], ["access_token", "1d168ad8f38c5756ded47ecb71879b54"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:58.033253"], ["updated_at", "2015-05-01 18:25:58.033253"]]
1033911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033912
+  (0.1ms) SAVEPOINT active_record_1
1033913
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1589257606 LIMIT 1
1033914
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1589257606], ["username", "billy_06"], ["access_token", "115979341dac204344c39b5c8ea2fb31"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:58.035645"], ["updated_at", "2015-05-01 18:25:58.035645"]]
1033915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033916
+  (0.0ms) SAVEPOINT active_record_1
1033917
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1301939652 LIMIT 1
1033918
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1301939652], ["username", "billy_07"], ["access_token", "6095970c20f93c6a0b244cd375ccfe00"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:58.037900"], ["updated_at", "2015-05-01 18:25:58.037900"]]
1033919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033920
+  (0.0ms) SAVEPOINT active_record_1
1033921
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -445314735 LIMIT 1
1033922
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -445314735], ["username", "billy_08"], ["access_token", "260f9b9cab1e1f8d974301301d6301a2"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:58.039880"], ["updated_at", "2015-05-01 18:25:58.039880"]]
1033923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033924
+  (0.0ms) SAVEPOINT active_record_1
1033925
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -24660987 LIMIT 1
1033926
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -24660987], ["username", "billy_09"], ["access_token", "9f43f8de4258c0dd12f5a7ac11228f24"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:58.041740"], ["updated_at", "2015-05-01 18:25:58.041740"]]
1033927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033928
+  (0.0ms) SAVEPOINT active_record_1
1033929
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1688571279 LIMIT 1
1033930
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1688571279], ["username", "billy_10"], ["access_token", "c526469ab333d6d7f94ec581236cb647"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:58.043716"], ["updated_at", "2015-05-01 18:25:58.043716"]]
1033931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033932
+  (0.0ms) SAVEPOINT active_record_1
1033933
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -770243485 LIMIT 1
1033934
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -770243485], ["username", "billy_11"], ["access_token", "cc258f432a36cede2120b44dee0df616"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:58.045772"], ["updated_at", "2015-05-01 18:25:58.045772"]]
1033935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033936
+  (0.0ms) SAVEPOINT active_record_1
1033937
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1594401920 LIMIT 1
1033938
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1594401920], ["username", "billy_12"], ["access_token", "fc1902e605c268c72c84624115d9c7c5"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:58.048139"], ["updated_at", "2015-05-01 18:25:58.048139"]]
1033939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033940
+  (0.0ms) SAVEPOINT active_record_1
1033941
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1012589015 LIMIT 1
1033942
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1012589015], ["username", "billy_13"], ["access_token", "29c6be63541ad73ad34504e4068a3db3"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:58.050080"], ["updated_at", "2015-05-01 18:25:58.050080"]]
1033943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033944
+  (0.0ms) SAVEPOINT active_record_1
1033945
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -602710551 LIMIT 1
1033946
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -602710551], ["username", "billy_14"], ["access_token", "afb7c65eeea308b5cbe5a44da1d5d3b7"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:58.051922"], ["updated_at", "2015-05-01 18:25:58.051922"]]
1033947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033948
+  (0.0ms) SAVEPOINT active_record_1
1033949
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185911566 LIMIT 1
1033950
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1185911566], ["username", "billy_15"], ["access_token", "8b289cd66b294d1968e7444f5255ac38"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:58.053672"], ["updated_at", "2015-05-01 18:25:58.053672"]]
1033951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1033952
+  (0.0ms) SAVEPOINT active_record_1
1033953
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1745036175 LIMIT 1
1033954
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1745036175], ["username", "billy_16"], ["access_token", "4421e8250c2e4e604e050eb1bb1247f9"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:58.055584"], ["updated_at", "2015-05-01 18:25:58.055584"]]
1033955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033956
+  (0.0ms) SAVEPOINT active_record_1
1033957
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -827301193 LIMIT 1
1033958
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -827301193], ["username", "billy_17"], ["access_token", "cb0b6be5308e738272687d93d525a806"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:58.057440"], ["updated_at", "2015-05-01 18:25:58.057440"]]
1033959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033960
+  (0.0ms) SAVEPOINT active_record_1
1033961
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1436398096 LIMIT 1
1033962
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1436398096], ["username", "billy_18"], ["access_token", "13ce930afa6e5ea26065896c45667aef"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:58.059218"], ["updated_at", "2015-05-01 18:25:58.059218"]]
1033963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033964
+  (0.0ms) SAVEPOINT active_record_1
1033965
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1545148897 LIMIT 1
1033966
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1545148897], ["username", "billy_19"], ["access_token", "a2a05afa79f729fd3d8161a1d82ebe29"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:58.061071"], ["updated_at", "2015-05-01 18:25:58.061071"]]
1033967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033968
+  (0.0ms) SAVEPOINT active_record_1
1033969
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1309070830 LIMIT 1
1033970
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1309070830], ["username", "billy_20"], ["access_token", "8b913c1930cd785482885d69c368d3c2"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:58.062870"], ["updated_at", "2015-05-01 18:25:58.062870"]]
1033971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033972
+  (0.0ms) SAVEPOINT active_record_1
1033973
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -255791425 LIMIT 1
1033974
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -255791425], ["username", "billy_21"], ["access_token", "770b160958894d75cfbed03f31e908ce"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:58.064670"], ["updated_at", "2015-05-01 18:25:58.064670"]]
1033975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033976
+  (0.0ms) SAVEPOINT active_record_1
1033977
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1427245824 LIMIT 1
1033978
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1427245824], ["username", "billy_22"], ["access_token", "859d5a4d3d5b00003136fd4888a2db42"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:58.066465"], ["updated_at", "2015-05-01 18:25:58.066465"]]
1033979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033980
+  (0.0ms) SAVEPOINT active_record_1
1033981
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -629433105 LIMIT 1
1033982
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -629433105], ["username", "billy_23"], ["access_token", "cc6f831f215e67ca77e1f774f0257405"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:58.068369"], ["updated_at", "2015-05-01 18:25:58.068369"]]
1033983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033984
+  (0.0ms) SAVEPOINT active_record_1
1033985
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372710157 LIMIT 1
1033986
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -372710157], ["username", "billy_24"], ["access_token", "b4d6aa3a4b409ddc138d7f172cefe05a"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:58.070156"], ["updated_at", "2015-05-01 18:25:58.070156"]]
1033987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033988
+  (0.0ms) SAVEPOINT active_record_1
1033989
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -626307685 LIMIT 1
1033990
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -626307685], ["username", "billy_25"], ["access_token", "c7ca83768b1024e5f03759521d39d8b8"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:58.071987"], ["updated_at", "2015-05-01 18:25:58.071987"]]
1033991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033992
+  (0.0ms) SAVEPOINT active_record_1
1033993
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2508429 LIMIT 1
1033994
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2508429], ["username", "billy_26"], ["access_token", "e5776e09c0795872eca5dbf9636b29e5"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:58.073835"], ["updated_at", "2015-05-01 18:25:58.073835"]]
1033995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033996
+  (0.0ms) SAVEPOINT active_record_1
1033997
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -169601313 LIMIT 1
1033998
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -169601313], ["username", "billy_27"], ["access_token", "ff7d7c65ef1410ea4eab269e78785a88"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:58.075453"], ["updated_at", "2015-05-01 18:25:58.075453"]]
1033999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034000
+  (0.0ms) SAVEPOINT active_record_1
1034001
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -485889103 LIMIT 1
1034002
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -485889103], ["username", "billy_28"], ["access_token", "bdf81fa3ff37e48b5fc88aa3d7cf8743"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:58.077075"], ["updated_at", "2015-05-01 18:25:58.077075"]]
1034003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034004
+  (0.0ms) SAVEPOINT active_record_1
1034005
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1351783441 LIMIT 1
1034006
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1351783441], ["username", "billy_29"], ["access_token", "41807100db62afbb35d638def0eb7fc6"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:58.078717"], ["updated_at", "2015-05-01 18:25:58.078717"]]
1034007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034008
+  (0.0ms) SAVEPOINT active_record_1
1034009
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1243252751 LIMIT 1
1034010
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1243252751], ["username", "billy_30"], ["access_token", "5d310b1f605f2c99e94c239bdae5938d"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:58.080354"], ["updated_at", "2015-05-01 18:25:58.080354"]]
1034011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034012
+  (0.0ms) SAVEPOINT active_record_1
1034013
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561546793 LIMIT 1
1034014
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1561546793], ["username", "billy_31"], ["access_token", "ea122f46e0a22d9845b858db8ca2d3da"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:58.081986"], ["updated_at", "2015-05-01 18:25:58.081986"]]
1034015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034016
+  (0.0ms) SAVEPOINT active_record_1
1034017
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1123051858 LIMIT 1
1034018
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1123051858], ["username", "billy_32"], ["access_token", "35903151713076f00d9da8fe1e721797"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:58.083667"], ["updated_at", "2015-05-01 18:25:58.083667"]]
1034019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034020
+  (0.0ms) SAVEPOINT active_record_1
1034021
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1331982180 LIMIT 1
1034022
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1331982180], ["username", "billy_33"], ["access_token", "1f5ffe18b396eaf9e1723b05275ca137"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:58.085352"], ["updated_at", "2015-05-01 18:25:58.085352"]]
1034023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034024
+  (0.0ms) SAVEPOINT active_record_1
1034025
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1364102954 LIMIT 1
1034026
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1364102954], ["username", "billy_34"], ["access_token", "a7c10dab35f84e66974df0f5ca958ac4"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:58.086981"], ["updated_at", "2015-05-01 18:25:58.086981"]]
1034027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034028
+  (0.0ms) SAVEPOINT active_record_1
1034029
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1942140210 LIMIT 1
1034030
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1942140210], ["username", "billy_35"], ["access_token", "fd04c594cad2bacba852bc456ecff954"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:58.088604"], ["updated_at", "2015-05-01 18:25:58.088604"]]
1034031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034032
+  (0.0ms) SAVEPOINT active_record_1
1034033
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -36151228 LIMIT 1
1034034
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -36151228], ["username", "billy_36"], ["access_token", "06b9976c39a83eb269ec801f73ceebf8"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:58.090229"], ["updated_at", "2015-05-01 18:25:58.090229"]]
1034035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034036
+  (0.0ms) SAVEPOINT active_record_1
1034037
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1154661775 LIMIT 1
1034038
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1154661775], ["username", "billy_37"], ["access_token", "16671cabbfa075f88a0f7533399ffec7"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:58.091863"], ["updated_at", "2015-05-01 18:25:58.091863"]]
1034039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034040
+  (0.0ms) SAVEPOINT active_record_1
1034041
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1674245990 LIMIT 1
1034042
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1674245990], ["username", "billy_38"], ["access_token", "cd5dab4f976a50b5e73a46fcc6bf1b48"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:58.093523"], ["updated_at", "2015-05-01 18:25:58.093523"]]
1034043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034044
+  (0.0ms) SAVEPOINT active_record_1
1034045
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -303636237 LIMIT 1
1034046
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -303636237], ["username", "billy_39"], ["access_token", "b7da864e2cf0fc637ee4c56a77ad4739"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:58.095168"], ["updated_at", "2015-05-01 18:25:58.095168"]]
1034047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034048
+  (0.0ms) SAVEPOINT active_record_1
1034049
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1845066826 LIMIT 1
1034050
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1845066826], ["username", "billy_40"], ["access_token", "1a90f3a2b088c6e3cb17996661a909e0"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:58.096788"], ["updated_at", "2015-05-01 18:25:58.096788"]]
1034051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034052
+  (0.0ms) SAVEPOINT active_record_1
1034053
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -835582308 LIMIT 1
1034054
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -835582308], ["username", "billy_41"], ["access_token", "5408e1cb643664e55cb62d6d1de53b22"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:58.098408"], ["updated_at", "2015-05-01 18:25:58.098408"]]
1034055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034056
+  (0.0ms) SAVEPOINT active_record_1
1034057
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -318625640 LIMIT 1
1034058
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -318625640], ["username", "billy_42"], ["access_token", "f8a25a1eae49b5cc9ac5de25b3d14db2"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:58.100028"], ["updated_at", "2015-05-01 18:25:58.100028"]]
1034059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034060
+  (0.0ms) SAVEPOINT active_record_1
1034061
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -3093803 LIMIT 1
1034062
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -3093803], ["username", "billy_43"], ["access_token", "b9f09d2cfcfaae77dd90511f44d47474"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:58.101660"], ["updated_at", "2015-05-01 18:25:58.101660"]]
1034063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034064
+  (0.0ms) SAVEPOINT active_record_1
1034065
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488065332 LIMIT 1
1034066
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -488065332], ["username", "billy_44"], ["access_token", "7a98c87a82cbfc20a84cfc267e7189a9"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:58.103274"], ["updated_at", "2015-05-01 18:25:58.103274"]]
1034067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034068
+  (0.0ms) SAVEPOINT active_record_1
1034069
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1244264096 LIMIT 1
1034070
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1244264096], ["username", "billy_45"], ["access_token", "3339efd805063439e5759c77ac91981e"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:58.104927"], ["updated_at", "2015-05-01 18:25:58.104927"]]
1034071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034072
+  (0.0ms) SAVEPOINT active_record_1
1034073
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -343926295 LIMIT 1
1034074
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -343926295], ["username", "billy_46"], ["access_token", "8da7b5e3d9d82e48230c001645e587cb"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:58.106547"], ["updated_at", "2015-05-01 18:25:58.106547"]]
1034075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034076
+  (0.0ms) SAVEPOINT active_record_1
1034077
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1325632675 LIMIT 1
1034078
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1325632675], ["username", "billy_47"], ["access_token", "80e7b5c1501c7ef57f7b1bd6631ab202"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:58.108228"], ["updated_at", "2015-05-01 18:25:58.108228"]]
1034079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034080
+  (0.0ms) SAVEPOINT active_record_1
1034081
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -197325202 LIMIT 1
1034082
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -197325202], ["username", "billy_48"], ["access_token", "7b8bb66d243aa7b0b0a7b11730c36683"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:58.109856"], ["updated_at", "2015-05-01 18:25:58.109856"]]
1034083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034084
+  (0.0ms) SAVEPOINT active_record_1
1034085
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -321418726 LIMIT 1
1034086
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -321418726], ["username", "billy_49"], ["access_token", "44fc559937731f7b7bb514ac9c307b4b"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:58.111502"], ["updated_at", "2015-05-01 18:25:58.111502"]]
1034087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034088
+  (0.0ms) SAVEPOINT active_record_1
1034089
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1034090
+ OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
1034091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034092
+  (1.0ms) rollback transaction
1034093
+  (0.1ms) begin transaction
1034094
+  (0.0ms) SAVEPOINT active_record_1
1034095
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -986385223 LIMIT 1
1034096
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -986385223], ["username", "jstrav"], ["access_token", "345871fb83c9c6f8812a9b9f670e9ca8"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-05-01 18:25:58.120818"], ["updated_at", "2015-05-01 18:25:58.120818"]]
1034097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034098
+  (0.0ms) SAVEPOINT active_record_1
1034099
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -982646248 LIMIT 1
1034100
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -982646248], ["username", "mary"], ["access_token", "0a7b9a79e58830214f0486b61bbc3197"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-05-01 18:25:58.122756"], ["updated_at", "2015-05-01 18:25:58.122756"]]
1034101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034102
+  (0.1ms) SAVEPOINT active_record_1
1034103
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1851319695 LIMIT 1
1034104
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1851319695], ["username", "jstead"], ["access_token", "c68aa29c6eb9c9e4aa7af1b9ad4ad569"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-05-01 18:25:58.134728"], ["updated_at", "2015-05-01 18:25:58.134728"]]
1034105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034106
+  (0.0ms) SAVEPOINT active_record_1
1034107
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2110710369 LIMIT 1
1034108
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2110710369], ["username", "bigbear"], ["access_token", "77b07013b595a5d045a2ea8e33430333"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-05-01 18:25:58.136759"], ["updated_at", "2015-05-01 18:25:58.136759"]]
1034109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034110
+  (0.0ms) SAVEPOINT active_record_1
1034111
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1616749781 LIMIT 1
1034112
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1616749781], ["username", "billy_00"], ["access_token", "09d629c292b580384196ec113e01f363"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-05-01 18:25:58.138553"], ["updated_at", "2015-05-01 18:25:58.138553"]]
1034113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034114
+  (0.0ms) SAVEPOINT active_record_1
1034115
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1098072863 LIMIT 1
1034116
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1098072863], ["username", "billy_01"], ["access_token", "d2a493de48863ac50167d5ab67c38a84"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-05-01 18:25:58.140242"], ["updated_at", "2015-05-01 18:25:58.140242"]]
1034117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034118
+  (0.0ms) SAVEPOINT active_record_1
1034119
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1633216482 LIMIT 1
1034120
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1633216482], ["username", "billy_02"], ["access_token", "77c3c4c8154ee5c7d84982dfe3aab65b"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-05-01 18:25:58.144506"], ["updated_at", "2015-05-01 18:25:58.144506"]]
1034121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034122
+  (0.0ms) SAVEPOINT active_record_1
1034123
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2005548313 LIMIT 1
1034124
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2005548313], ["username", "billy_03"], ["access_token", "e4599c699a74728265086fa2120e14f2"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-05-01 18:25:58.146541"], ["updated_at", "2015-05-01 18:25:58.146541"]]
1034125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034126
+  (0.0ms) SAVEPOINT active_record_1
1034127
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -924341099 LIMIT 1
1034128
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -924341099], ["username", "billy_04"], ["access_token", "9dbe982c7d40aff691d0a3a3a539f215"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-05-01 18:25:58.148296"], ["updated_at", "2015-05-01 18:25:58.148296"]]
1034129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034130
+  (0.0ms) SAVEPOINT active_record_1
1034131
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1217441056 LIMIT 1
1034132
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1217441056], ["username", "billy_05"], ["access_token", "1eaf4b4be292d1d9893f31d9ed0b1490"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-05-01 18:25:58.150027"], ["updated_at", "2015-05-01 18:25:58.150027"]]
1034133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034134
+  (0.0ms) SAVEPOINT active_record_1
1034135
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1038442447 LIMIT 1
1034136
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1038442447], ["username", "billy_06"], ["access_token", "f4d51d56c3cbbabde8d84bed2c6f8881"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-05-01 18:25:58.151752"], ["updated_at", "2015-05-01 18:25:58.151752"]]
1034137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034138
+  (0.0ms) SAVEPOINT active_record_1
1034139
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369883303 LIMIT 1
1034140
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -369883303], ["username", "billy_07"], ["access_token", "336260ff9a729d6831e486f5fbedd851"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-05-01 18:25:58.153467"], ["updated_at", "2015-05-01 18:25:58.153467"]]
1034141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034142
+  (0.0ms) SAVEPOINT active_record_1
1034143
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -246279555 LIMIT 1
1034144
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -246279555], ["username", "billy_08"], ["access_token", "98a32ce3b135fc4a053d02f6028df54e"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-05-01 18:25:58.155480"], ["updated_at", "2015-05-01 18:25:58.155480"]]
1034145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034146
+  (0.0ms) SAVEPOINT active_record_1
1034147
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1101302089 LIMIT 1
1034148
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1101302089], ["username", "billy_09"], ["access_token", "97a60ea8bcb71ff414d5dd224fc84e7c"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-05-01 18:25:58.157317"], ["updated_at", "2015-05-01 18:25:58.157317"]]
1034149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034150
+  (0.0ms) SAVEPOINT active_record_1
1034151
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -184636199 LIMIT 1
1034152
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -184636199], ["username", "billy_10"], ["access_token", "d85f5aad27da9844a47227b2dba6b07e"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-05-01 18:25:58.159125"], ["updated_at", "2015-05-01 18:25:58.159125"]]
1034153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034154
+  (0.1ms) SAVEPOINT active_record_1
1034155
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -42085232 LIMIT 1
1034156
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -42085232], ["username", "billy_11"], ["access_token", "9dcfa33b1f37f3514c188da51f1a5712"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-05-01 18:25:58.160992"], ["updated_at", "2015-05-01 18:25:58.160992"]]
1034157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034158
+  (0.0ms) SAVEPOINT active_record_1
1034159
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2077340935 LIMIT 1
1034160
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2077340935], ["username", "billy_12"], ["access_token", "9f6721f79a3cd5c5fd26c8ee28f81000"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-05-01 18:25:58.162824"], ["updated_at", "2015-05-01 18:25:58.162824"]]
1034161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034162
+  (0.0ms) SAVEPOINT active_record_1
1034163
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1581939460 LIMIT 1
1034164
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1581939460], ["username", "billy_13"], ["access_token", "ea9dbcfc025fb0f1e4bce6ecafb54085"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-05-01 18:25:58.164914"], ["updated_at", "2015-05-01 18:25:58.164914"]]
1034165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034166
+  (0.0ms) SAVEPOINT active_record_1
1034167
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -669420728 LIMIT 1
1034168
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -669420728], ["username", "billy_14"], ["access_token", "ca1f8326f7f2484376feb5c4ce3d8d7c"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-05-01 18:25:58.166720"], ["updated_at", "2015-05-01 18:25:58.166720"]]
1034169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034170
+  (0.0ms) SAVEPOINT active_record_1
1034171
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1889895162 LIMIT 1
1034172
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1889895162], ["username", "billy_15"], ["access_token", "a4ea30269455d9e4cb8ba1ccf3ea3186"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-05-01 18:25:58.168491"], ["updated_at", "2015-05-01 18:25:58.168491"]]
1034173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034174
+  (0.0ms) SAVEPOINT active_record_1
1034175
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -739574792 LIMIT 1
1034176
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -739574792], ["username", "billy_16"], ["access_token", "ef04241b93a08fdc8c7c948991b24a07"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-05-01 18:25:58.170237"], ["updated_at", "2015-05-01 18:25:58.170237"]]
1034177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034178
+  (0.0ms) SAVEPOINT active_record_1
1034179
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2002666562 LIMIT 1
1034180
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2002666562], ["username", "billy_17"], ["access_token", "4849a5f1c16b6ef36dd7e0540479f98c"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-05-01 18:25:58.171950"], ["updated_at", "2015-05-01 18:25:58.171950"]]
1034181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034182
+  (0.0ms) SAVEPOINT active_record_1
1034183
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -202320994 LIMIT 1
1034184
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -202320994], ["username", "billy_18"], ["access_token", "d0cba53fc3e4913b4de7b8eb780b8d73"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-05-01 18:25:58.173678"], ["updated_at", "2015-05-01 18:25:58.173678"]]
1034185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034186
+  (0.0ms) SAVEPOINT active_record_1
1034187
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -569807825 LIMIT 1
1034188
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -569807825], ["username", "billy_19"], ["access_token", "4cd42445808a57b430a0f473e02b0275"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-05-01 18:25:58.175412"], ["updated_at", "2015-05-01 18:25:58.175412"]]
1034189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034190
+  (0.0ms) SAVEPOINT active_record_1
1034191
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -63941861 LIMIT 1
1034192
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -63941861], ["username", "billy_20"], ["access_token", "75cd5c07eff60592ba115ddee6916ff5"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-05-01 18:25:58.177259"], ["updated_at", "2015-05-01 18:25:58.177259"]]
1034193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034194
+  (0.0ms) SAVEPOINT active_record_1
1034195
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -727660226 LIMIT 1
1034196
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -727660226], ["username", "billy_21"], ["access_token", "6ef8fd306747880961d2c3f1f5a84563"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-05-01 18:25:58.179003"], ["updated_at", "2015-05-01 18:25:58.179003"]]
1034197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034198
+  (0.0ms) SAVEPOINT active_record_1
1034199
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2065662934 LIMIT 1
1034200
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2065662934], ["username", "billy_22"], ["access_token", "ef985853ef6b4bc5da1381440fca7027"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-05-01 18:25:58.180812"], ["updated_at", "2015-05-01 18:25:58.180812"]]
1034201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034202
+  (0.0ms) SAVEPOINT active_record_1
1034203
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1532562357 LIMIT 1
1034204
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1532562357], ["username", "billy_23"], ["access_token", "c75b4902cff54ddf2669669bde13e92f"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-05-01 18:25:58.182739"], ["updated_at", "2015-05-01 18:25:58.182739"]]
1034205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034206
+  (0.0ms) SAVEPOINT active_record_1
1034207
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2112098394 LIMIT 1
1034208
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2112098394], ["username", "billy_24"], ["access_token", "01b7dc1bb415beb634175a73fdb65a53"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-05-01 18:25:58.184578"], ["updated_at", "2015-05-01 18:25:58.184578"]]
1034209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034210
+  (0.0ms) SAVEPOINT active_record_1
1034211
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -166844632 LIMIT 1
1034212
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -166844632], ["username", "billy_25"], ["access_token", "b8be4dd817fe8af439dcd57e95d56ffe"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-05-01 18:25:58.186344"], ["updated_at", "2015-05-01 18:25:58.186344"]]
1034213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034214
+  (0.0ms) SAVEPOINT active_record_1
1034215
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1734099814 LIMIT 1
1034216
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1734099814], ["username", "billy_26"], ["access_token", "8f6bb5044c6231eb29e97b2ca2fbddad"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-05-01 18:25:58.188121"], ["updated_at", "2015-05-01 18:25:58.188121"]]
1034217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1034218
+  (0.0ms) SAVEPOINT active_record_1
1034219
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -829567903 LIMIT 1
1034220
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -829567903], ["username", "billy_27"], ["access_token", "acd6aaa74ca9c94a8dae53e2975bcaa5"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-05-01 18:25:58.189879"], ["updated_at", "2015-05-01 18:25:58.189879"]]
1034221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034222
+  (0.1ms) SAVEPOINT active_record_1
1034223
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -663056385 LIMIT 1
1034224
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -663056385], ["username", "billy_28"], ["access_token", "ae50348e340201fa1269df37aaa71fc3"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-05-01 18:25:58.191608"], ["updated_at", "2015-05-01 18:25:58.191608"]]
1034225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034226
+  (0.0ms) SAVEPOINT active_record_1
1034227
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1878644934 LIMIT 1
1034228
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1878644934], ["username", "billy_29"], ["access_token", "56aefe3bd61092f52a7cd3891a8e6639"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-05-01 18:25:58.193339"], ["updated_at", "2015-05-01 18:25:58.193339"]]
1034229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034230
+  (0.0ms) SAVEPOINT active_record_1
1034231
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -285663387 LIMIT 1
1034232
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -285663387], ["username", "billy_30"], ["access_token", "98f8117865bad2df8ef33e3da944a942"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-05-01 18:25:58.195086"], ["updated_at", "2015-05-01 18:25:58.195086"]]
1034233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034234
+  (0.0ms) SAVEPOINT active_record_1
1034235
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -594571286 LIMIT 1
1034236
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -594571286], ["username", "billy_31"], ["access_token", "1bfc04b24a84889d5ff499e0633fbc2c"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-05-01 18:25:58.196869"], ["updated_at", "2015-05-01 18:25:58.196869"]]
1034237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034238
+  (0.0ms) SAVEPOINT active_record_1
1034239
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1640823099 LIMIT 1
1034240
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1640823099], ["username", "billy_32"], ["access_token", "55b8dd061c22be2abe9126fe43aa0e10"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-05-01 18:25:58.198561"], ["updated_at", "2015-05-01 18:25:58.198561"]]
1034241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034242
+  (0.0ms) SAVEPOINT active_record_1
1034243
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1267117411 LIMIT 1
1034244
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1267117411], ["username", "billy_33"], ["access_token", "7b10b17b2928664446b94b63699045ba"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-05-01 18:25:58.200248"], ["updated_at", "2015-05-01 18:25:58.200248"]]
1034245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034246
+  (0.0ms) SAVEPOINT active_record_1
1034247
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -291261797 LIMIT 1
1034248
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -291261797], ["username", "billy_34"], ["access_token", "52b11fd52a726f75e840f9b78ef6b0b8"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-05-01 18:25:58.201947"], ["updated_at", "2015-05-01 18:25:58.201947"]]
1034249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034250
+  (0.1ms) SAVEPOINT active_record_1
1034251
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1882616641 LIMIT 1
1034252
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1882616641], ["username", "billy_35"], ["access_token", "8a7c0780061bc92e05f7a86299af64b2"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-05-01 18:25:58.203701"], ["updated_at", "2015-05-01 18:25:58.203701"]]
1034253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1034254
+  (0.0ms) SAVEPOINT active_record_1
1034255
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -898719637 LIMIT 1
1034256
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -898719637], ["username", "billy_36"], ["access_token", "e72b585fc51aff0d8e6cb78f8b560b90"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-05-01 18:25:58.205531"], ["updated_at", "2015-05-01 18:25:58.205531"]]
1034257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034258
+  (0.0ms) SAVEPOINT active_record_1
1034259
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1446225832 LIMIT 1
1034260
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1446225832], ["username", "billy_37"], ["access_token", "fafc8438abbba726822c7cf8da3b54a2"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-05-01 18:25:58.207301"], ["updated_at", "2015-05-01 18:25:58.207301"]]
1034261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034262
+  (0.0ms) SAVEPOINT active_record_1
1034263
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1177313956 LIMIT 1
1034264
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1177313956], ["username", "billy_38"], ["access_token", "161af3d71c25be5d5e967724d7536c71"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-05-01 18:25:58.209329"], ["updated_at", "2015-05-01 18:25:58.209329"]]
1034265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034266
+  (0.0ms) SAVEPOINT active_record_1
1034267
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -939605855 LIMIT 1
1034268
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -939605855], ["username", "billy_39"], ["access_token", "f941407a0bc6050c5974c07f9451b11d"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-05-01 18:25:58.211288"], ["updated_at", "2015-05-01 18:25:58.211288"]]
1034269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034270
+  (0.0ms) SAVEPOINT active_record_1
1034271
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1685200676 LIMIT 1
1034272
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1685200676], ["username", "billy_40"], ["access_token", "a0d3c18cdb0ea2fdd5b11e65b27fb954"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-05-01 18:25:58.213010"], ["updated_at", "2015-05-01 18:25:58.213010"]]
1034273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034274
+  (0.0ms) SAVEPOINT active_record_1
1034275
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1353701214 LIMIT 1
1034276
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1353701214], ["username", "billy_41"], ["access_token", "e5ae52678f9a7a6b1757581af122459a"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-05-01 18:25:58.214760"], ["updated_at", "2015-05-01 18:25:58.214760"]]
1034277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034278
+  (0.0ms) SAVEPOINT active_record_1
1034279
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -42931633 LIMIT 1
1034280
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -42931633], ["username", "billy_42"], ["access_token", "3958386977bb5221d5cc65515069f973"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-05-01 18:25:58.216484"], ["updated_at", "2015-05-01 18:25:58.216484"]]
1034281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034282
+  (0.0ms) SAVEPOINT active_record_1
1034283
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -485204349 LIMIT 1
1034284
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -485204349], ["username", "billy_43"], ["access_token", "72ccd28c54c13b70e5e74772d736062c"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-05-01 18:25:58.218260"], ["updated_at", "2015-05-01 18:25:58.218260"]]
1034285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034286
+  (0.0ms) SAVEPOINT active_record_1
1034287
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013715137 LIMIT 1
1034288
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2013715137], ["username", "billy_44"], ["access_token", "a3fabb6aa65289804d67212ceb5f6aac"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-05-01 18:25:58.220001"], ["updated_at", "2015-05-01 18:25:58.220001"]]
1034289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034290
+  (0.0ms) SAVEPOINT active_record_1
1034291
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -88696327 LIMIT 1
1034292
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -88696327], ["username", "billy_45"], ["access_token", "0713bca67c98689be57153cdfdf4dbfc"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-05-01 18:25:58.221717"], ["updated_at", "2015-05-01 18:25:58.221717"]]
1034293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034294
+  (0.0ms) SAVEPOINT active_record_1
1034295
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1961149777 LIMIT 1
1034296
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1961149777], ["username", "billy_46"], ["access_token", "dbadf09d3d799d9106c8dfdefa92dc4a"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-05-01 18:25:58.223407"], ["updated_at", "2015-05-01 18:25:58.223407"]]
1034297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034298
+  (0.0ms) SAVEPOINT active_record_1
1034299
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1942370499 LIMIT 1
1034300
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1942370499], ["username", "billy_47"], ["access_token", "47d3ee7a65c1367639b5eb5510f96d3c"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-05-01 18:25:58.225086"], ["updated_at", "2015-05-01 18:25:58.225086"]]
1034301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034302
+  (0.0ms) SAVEPOINT active_record_1
1034303
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1049752049 LIMIT 1
1034304
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1049752049], ["username", "billy_48"], ["access_token", "86fc64671ebce864d00cca1aa0660d71"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-05-01 18:25:58.226819"], ["updated_at", "2015-05-01 18:25:58.226819"]]
1034305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034306
+  (0.0ms) SAVEPOINT active_record_1
1034307
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1387046511 LIMIT 1
1034308
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1387046511], ["username", "billy_49"], ["access_token", "2a417f5f3bc7e88ce095e816d524b5d5"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-05-01 18:25:58.228569"], ["updated_at", "2015-05-01 18:25:58.228569"]]
1034309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034310
+  (0.0ms) SAVEPOINT active_record_1
1034311
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1034312
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC
1034313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034314
+  (1.1ms) rollback transaction
1034315
+  (0.1ms) begin transaction
1034316
+  (0.0ms) SAVEPOINT active_record_1
1034317
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1034318
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("username", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["username", "u"], ["openstax_uid", 2], ["created_at", "2015-05-01 18:25:58.242730"], ["updated_at", "2015-05-01 18:25:58.242730"]]
1034319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034320
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1034321
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034322
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034323
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034324
+ Processing by OauthController#token as */*
1034325
+ Parameters: {"grant_type"=>"client_credentials"}
1034326
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034327
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034328
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1034329
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1034330
+ OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["openstax_uid", 2]]
1034331
+  (0.0ms) SAVEPOINT active_record_1
1034332
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 1) LIMIT 1
1034333
+ SQL (0.2ms) UPDATE "openstax_accounts_accounts" SET "username" = ?, "updated_at" = ? WHERE "openstax_accounts_accounts"."id" = ? [["username", "user"], ["updated_at", "2015-05-01 18:25:58.269086"], ["id", 1]]
1034334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034335
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["openstax_uid", 4]]
1034336
+  (0.0ms) SAVEPOINT active_record_1
1034337
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1
1034338
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "fuego"], ["created_at", "2015-05-01 18:25:58.271548"], ["updated_at", "2015-05-01 18:25:58.271548"]]
1034339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034340
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034341
+ Processing by OauthController#token as */*
1034342
+ Parameters: {"grant_type"=>"client_credentials"}
1034343
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034344
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034345
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1034346
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
1034347
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034348
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1034349
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034350
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034351
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1034352
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1034353
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034354
+ Processing by OauthController#token as */*
1034355
+ Parameters: {"grant_type"=>"client_credentials"}
1034356
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034357
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034358
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1034359
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1034360
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["openstax_uid", 2]]
1034361
+  (0.1ms) SAVEPOINT active_record_1
1034362
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 1) LIMIT 1
1034363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034364
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["openstax_uid", 4]]
1034365
+  (0.0ms) SAVEPOINT active_record_1
1034366
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 2) LIMIT 1
1034367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034368
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034369
+ Processing by OauthController#token as */*
1034370
+ Parameters: {"grant_type"=>"client_credentials"}
1034371
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034372
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-05-01 13:25:58 -0500
1034373
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1034374
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
1034375
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1034376
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1034377
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034378
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1034379
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1034380
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1034381
+  (1.7ms) rollback transaction