openstax_accounts 4.1.0 → 4.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 344b5b7d363524c4809511fdb72c4f6ee2669934
4
- data.tar.gz: d545dc5eb60b8c4edfc432cfef220fa4f38505d7
3
+ metadata.gz: 89eaeece94bdba0b11a0f199af06eb5a81c3d7cf
4
+ data.tar.gz: 95b3ad8856ea3eab85788ee48e2b33ee909c416f
5
5
  SHA512:
6
- metadata.gz: 43621abcf950bd7555d7c74768fb1d13a21b04258217254944195805f604c58c29191574711a6972a46783334d1f8994c21aaf0413309e0d49ba414868e3b57a
7
- data.tar.gz: fee8980f947e8a16e067306140c647c59a9ebc0ab03896531099dbccebacd5e0803d192c56bbab1c9603474dbcc57c7ab78b461e11b7009f1e622d0655f3a727
6
+ metadata.gz: f299c3a422edf23b9528267f04006a31efa0f15748b5f0c20c3ce12035d0898426975f08776f61d510b1adb4c0a6f3e95e931afb7829112b47fe66287c57a9d0
7
+ data.tar.gz: 765d14c76d283b5dd0c1ded49117b2ae9c594ba9302c2f4988272e70d6570f25a282253721d676b9a4da29c1672f1f8eab7581324576ae3c956aea080381b4a8
data/config/routes.rb CHANGED
@@ -8,9 +8,19 @@ OpenStax::Accounts::Engine.routes.draw do
8
8
  get '/auth/openstax', :as => 'openstax_login'
9
9
 
10
10
  # User profile route
11
- get '/profile' => redirect(URI::join(
12
- OpenStax::Accounts.configuration.openstax_accounts_url, "/profile"
13
- ).to_s)
11
+ if OpenStax::Accounts.configuration.enable_stubbing?
12
+ namespace :dev do
13
+ resources :accounts, :only => [:index, :create] do
14
+ post 'become', :on => :member
15
+ get 'search', :on => :collection
16
+ end
17
+ end
18
+ else
19
+ get '/profile' => lambda { |env|
20
+ redirect(URI::join(OpenStax::Accounts.configuration.openstax_accounts_url,
21
+ "/profile").to_s)
22
+ }
23
+ end
14
24
 
15
25
  # OmniAuth local routes (SessionsController)
16
26
  scope module: 'sessions' do
@@ -22,13 +32,4 @@ OpenStax::Accounts::Engine.routes.draw do
22
32
  :via => OpenStax::Accounts.configuration.logout_via
23
33
  end
24
34
 
25
- if OpenStax::Accounts.configuration.enable_stubbing?
26
- namespace :dev do
27
- resources :accounts, :only => [:index, :create] do
28
- post 'become', :on => :member
29
- get 'search', :on => :collection
30
- end
31
- end
32
- end
33
-
34
35
  end
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Accounts
3
- VERSION = "4.1.0"
3
+ VERSION = "4.1.1"
4
4
  end
5
5
  end
@@ -782525,3 +782525,2922 @@ Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
782525
782525
  OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1711019093, -1670218585)
782526
782526
  Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
782527
782527
   (0.6ms) rollback transaction
782528
+  (0.8ms) 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) 
782529
+  (0.1ms) select sqlite_version(*)
782530
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
782531
+  (0.1ms) SELECT sql
782532
+ FROM sqlite_master
782533
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782534
+ UNION ALL
782535
+ SELECT sql
782536
+ FROM sqlite_temp_master
782537
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782538
+
782539
+  (0.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
782540
+  (0.1ms) SELECT sql
782541
+ FROM sqlite_master
782542
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782543
+ UNION ALL
782544
+ SELECT sql
782545
+ FROM sqlite_temp_master
782546
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782547
+
782548
+  (0.1ms)  SELECT sql
782549
+ FROM sqlite_master
782550
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782551
+ UNION ALL
782552
+ SELECT sql
782553
+ FROM sqlite_temp_master
782554
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782555
+ 
782556
+  (0.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
782557
+  (0.1ms)  SELECT sql
782558
+ FROM sqlite_master
782559
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782560
+ UNION ALL
782561
+ SELECT sql
782562
+ FROM sqlite_temp_master
782563
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782564
+ 
782565
+  (0.1ms) SELECT sql
782566
+ FROM sqlite_master
782567
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782568
+ UNION ALL
782569
+ SELECT sql
782570
+ FROM sqlite_temp_master
782571
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782572
+
782573
+  (0.1ms)  SELECT sql
782574
+ FROM sqlite_master
782575
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782576
+ UNION ALL
782577
+ SELECT sql
782578
+ FROM sqlite_temp_master
782579
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782580
+ 
782581
+  (0.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
782582
+  (0.1ms)  SELECT sql
782583
+ FROM sqlite_master
782584
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
782585
+ UNION ALL
782586
+ SELECT sql
782587
+ FROM sqlite_temp_master
782588
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
782589
+ 
782590
+  (0.1ms) SELECT sql
782591
+ FROM sqlite_master
782592
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782593
+ UNION ALL
782594
+ SELECT sql
782595
+ FROM sqlite_temp_master
782596
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782597
+
782598
+  (0.1ms)  SELECT sql
782599
+ FROM sqlite_master
782600
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782601
+ UNION ALL
782602
+ SELECT sql
782603
+ FROM sqlite_temp_master
782604
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782605
+ 
782606
+  (0.1ms) SELECT sql
782607
+ FROM sqlite_master
782608
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782609
+ UNION ALL
782610
+ SELECT sql
782611
+ FROM sqlite_temp_master
782612
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782613
+
782614
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
782615
+  (0.1ms) SELECT sql
782616
+ FROM sqlite_master
782617
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
782618
+ UNION ALL
782619
+ SELECT sql
782620
+ FROM sqlite_temp_master
782621
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
782622
+
782623
+  (0.1ms)  SELECT sql
782624
+ FROM sqlite_master
782625
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
782626
+ UNION ALL
782627
+ SELECT sql
782628
+ FROM sqlite_temp_master
782629
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
782630
+ 
782631
+  (0.1ms) SELECT sql
782632
+ FROM sqlite_master
782633
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782634
+ UNION ALL
782635
+ SELECT sql
782636
+ FROM sqlite_temp_master
782637
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
782638
+
782639
+  (0.1ms)  SELECT sql
782640
+ FROM sqlite_master
782641
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782642
+ UNION ALL
782643
+ SELECT sql
782644
+ FROM sqlite_temp_master
782645
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
782646
+ 
782647
+  (0.1ms) SELECT sql
782648
+ FROM sqlite_master
782649
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782650
+ UNION ALL
782651
+ SELECT sql
782652
+ FROM sqlite_temp_master
782653
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
782654
+
782655
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
782656
+  (0.6ms) 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)
782657
+  (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")
782658
+  (0.1ms) SELECT sql
782659
+ FROM sqlite_master
782660
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
782661
+ UNION ALL
782662
+ SELECT sql
782663
+ FROM sqlite_temp_master
782664
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
782665
+
782666
+  (0.6ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" ("user_id")
782667
+  (0.7ms) 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)
782668
+  (0.7ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" ("container_group_id")
782669
+  (0.1ms) SELECT sql
782670
+ FROM sqlite_master
782671
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
782672
+ UNION ALL
782673
+ SELECT sql
782674
+ FROM sqlite_temp_master
782675
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
782676
+
782677
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" ("member_group_id")
782678
+  (0.7ms) 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)
782679
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" ("group_id", "user_id")
782680
+  (0.1ms) SELECT sql
782681
+ FROM sqlite_master
782682
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
782683
+ UNION ALL
782684
+ SELECT sql
782685
+ FROM sqlite_temp_master
782686
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
782687
+
782688
+  (0.6ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" ("user_id")
782689
+  (0.7ms) 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)
782690
+  (0.7ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" ("is_public")
782691
+  (0.1ms) SELECT sql
782692
+ FROM sqlite_master
782693
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
782694
+ UNION ALL
782695
+ SELECT sql
782696
+ FROM sqlite_temp_master
782697
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
782698
+
782699
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" ("openstax_uid")
782700
+  (0.7ms) 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)
782701
+  (0.6ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" ("owner_id", "owner_type")
782702
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
782703
+  (0.6ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" ("account_id")
782704
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
782705
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
782706
+  (0.1ms) SELECT version FROM "schema_migrations"
782707
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('6')
782708
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('5')
782709
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
782710
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
782711
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('2')
782712
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('3')
782713
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('4')
782714
+  (0.4ms) begin transaction
782715
+  (0.0ms) SAVEPOINT active_record_1
782716
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -561880024 LIMIT 1
782717
+ SQL (0.6ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -561880024], ["username", "jstrav"], ["access_token", "d1e5ece82f0d762105742c278e787339"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:57.673722"], ["updated_at", "2015-03-20 19:03:57.673722"]]
782718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782719
+  (0.0ms) SAVEPOINT active_record_1
782720
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1879272531 LIMIT 1
782721
+ SQL (1.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1879272531], ["username", "mary"], ["access_token", "6d4b4c7d3d1d129f58f08dec807c6bc4"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:57.677644"], ["updated_at", "2015-03-20 19:03:57.677644"]]
782722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782723
+  (0.0ms) SAVEPOINT active_record_1
782724
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1609371483 LIMIT 1
782725
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1609371483], ["username", "jstead"], ["access_token", "cb7b701a0578b3380277f3ef6fa2946d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:57.681847"], ["updated_at", "2015-03-20 19:03:57.681847"]]
782726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782727
+  (0.0ms) SAVEPOINT active_record_1
782728
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1775731439 LIMIT 1
782729
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1775731439], ["username", "bigbear"], ["access_token", "8fb1cf1ed481f1e0c3b94d266fd98158"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:57.684294"], ["updated_at", "2015-03-20 19:03:57.684294"]]
782730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782731
+  (0.0ms) SAVEPOINT active_record_1
782732
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1346669669 LIMIT 1
782733
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1346669669], ["username", "billy_00"], ["access_token", "96dd72470382631695837c210b55a872"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:57.686457"], ["updated_at", "2015-03-20 19:03:57.686457"]]
782734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782735
+  (0.0ms) SAVEPOINT active_record_1
782736
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -630926353 LIMIT 1
782737
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -630926353], ["username", "billy_01"], ["access_token", "7b27a9815298bdfd7b08ee0059df1b30"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:57.688993"], ["updated_at", "2015-03-20 19:03:57.688993"]]
782738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782739
+  (0.0ms) SAVEPOINT active_record_1
782740
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488208361 LIMIT 1
782741
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -488208361], ["username", "billy_02"], ["access_token", "07b8eb55b942fa259ca217a005905c08"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:57.703586"], ["updated_at", "2015-03-20 19:03:57.703586"]]
782742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782743
+  (0.0ms) SAVEPOINT active_record_1
782744
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1263152995 LIMIT 1
782745
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1263152995], ["username", "billy_03"], ["access_token", "c9058c87af2641ded3f098f7fb87e154"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:57.706214"], ["updated_at", "2015-03-20 19:03:57.706214"]]
782746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782747
+  (0.0ms) SAVEPOINT active_record_1
782748
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -849848163 LIMIT 1
782749
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -849848163], ["username", "billy_04"], ["access_token", "648fdbf36dc882827f7e6a7c754e7cd1"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:57.708772"], ["updated_at", "2015-03-20 19:03:57.708772"]]
782750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782751
+  (0.0ms) SAVEPOINT active_record_1
782752
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -581209823 LIMIT 1
782753
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -581209823], ["username", "billy_05"], ["access_token", "52fc46e59b0ce2d32101e59b45b9fac7"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:57.711182"], ["updated_at", "2015-03-20 19:03:57.711182"]]
782754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782755
+  (0.0ms) SAVEPOINT active_record_1
782756
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1958396903 LIMIT 1
782757
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1958396903], ["username", "billy_06"], ["access_token", "222428423843789cfecd84a2fa706282"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:57.713622"], ["updated_at", "2015-03-20 19:03:57.713622"]]
782758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782759
+  (0.0ms) SAVEPOINT active_record_1
782760
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -791315926 LIMIT 1
782761
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -791315926], ["username", "billy_07"], ["access_token", "73f29650bb0b2a6e1cb7b8919e47c37f"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:57.716005"], ["updated_at", "2015-03-20 19:03:57.716005"]]
782762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782763
+  (0.0ms) SAVEPOINT active_record_1
782764
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -230766713 LIMIT 1
782765
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -230766713], ["username", "billy_08"], ["access_token", "d7000fd27f8d295e6351182110b4b4be"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:57.718593"], ["updated_at", "2015-03-20 19:03:57.718593"]]
782766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782767
+  (0.0ms) SAVEPOINT active_record_1
782768
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184315960 LIMIT 1
782769
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1184315960], ["username", "billy_09"], ["access_token", "cba358f78856b9dc9be80465af1e8c5a"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:57.721171"], ["updated_at", "2015-03-20 19:03:57.721171"]]
782770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782771
+  (0.1ms) SAVEPOINT active_record_1
782772
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1703444841 LIMIT 1
782773
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1703444841], ["username", "billy_10"], ["access_token", "be341c595fc106379288ff5b09a62778"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:57.723948"], ["updated_at", "2015-03-20 19:03:57.723948"]]
782774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782775
+  (0.0ms) SAVEPOINT active_record_1
782776
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -138826811 LIMIT 1
782777
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -138826811], ["username", "billy_11"], ["access_token", "b8a56c109e32200ebbb04c2f2f8c9107"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:57.726502"], ["updated_at", "2015-03-20 19:03:57.726502"]]
782778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782779
+  (0.0ms) SAVEPOINT active_record_1
782780
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -991008396 LIMIT 1
782781
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -991008396], ["username", "billy_12"], ["access_token", "7d036e8ab1fac7ecb1e8ceca372cbbd7"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:57.729231"], ["updated_at", "2015-03-20 19:03:57.729231"]]
782782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782783
+  (0.0ms) SAVEPOINT active_record_1
782784
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1769094482 LIMIT 1
782785
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1769094482], ["username", "billy_13"], ["access_token", "14db88141dd28aada0d3ed4d6ce72287"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:57.731554"], ["updated_at", "2015-03-20 19:03:57.731554"]]
782786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782787
+  (0.0ms) SAVEPOINT active_record_1
782788
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083874657 LIMIT 1
782789
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1083874657], ["username", "billy_14"], ["access_token", "16ff99b53f9a88f8a176c6980b7b36cd"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:57.733842"], ["updated_at", "2015-03-20 19:03:57.733842"]]
782790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782791
+  (0.0ms) SAVEPOINT active_record_1
782792
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730699763 LIMIT 1
782793
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1730699763], ["username", "billy_15"], ["access_token", "d19ac2e9179043c3f60967c195fd8729"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:57.736072"], ["updated_at", "2015-03-20 19:03:57.736072"]]
782794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782795
+  (0.0ms) SAVEPOINT active_record_1
782796
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1622645851 LIMIT 1
782797
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1622645851], ["username", "billy_16"], ["access_token", "af2a7d9d0f680a8d19b49e48e8708bd0"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:57.738246"], ["updated_at", "2015-03-20 19:03:57.738246"]]
782798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782799
+  (0.0ms) SAVEPOINT active_record_1
782800
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -192969967 LIMIT 1
782801
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -192969967], ["username", "billy_17"], ["access_token", "b3d666938bdcbdc2dedd1f8bec14d496"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:57.740652"], ["updated_at", "2015-03-20 19:03:57.740652"]]
782802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782803
+  (0.0ms) SAVEPOINT active_record_1
782804
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1065733171 LIMIT 1
782805
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1065733171], ["username", "billy_18"], ["access_token", "b03c6b4013e6a6118e43abefac45317c"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:57.743115"], ["updated_at", "2015-03-20 19:03:57.743115"]]
782806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782807
+  (0.0ms) SAVEPOINT active_record_1
782808
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1567901533 LIMIT 1
782809
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1567901533], ["username", "billy_19"], ["access_token", "ecb896eb2fe9a93817816e8e2c7072da"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:57.745670"], ["updated_at", "2015-03-20 19:03:57.745670"]]
782810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782811
+  (0.0ms) SAVEPOINT active_record_1
782812
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1162797490 LIMIT 1
782813
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1162797490], ["username", "billy_20"], ["access_token", "4996324741190e5fa49fe0379df22162"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:57.747851"], ["updated_at", "2015-03-20 19:03:57.747851"]]
782814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782815
+  (0.0ms) SAVEPOINT active_record_1
782816
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -645548985 LIMIT 1
782817
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -645548985], ["username", "billy_21"], ["access_token", "eb735af6c1ffc0b95ca8166f87126edb"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:57.750049"], ["updated_at", "2015-03-20 19:03:57.750049"]]
782818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782819
+  (0.0ms) SAVEPOINT active_record_1
782820
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1975602633 LIMIT 1
782821
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1975602633], ["username", "billy_22"], ["access_token", "0b8431769cea110db974c6d2c5f0242a"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:57.752200"], ["updated_at", "2015-03-20 19:03:57.752200"]]
782822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782823
+  (0.0ms) SAVEPOINT active_record_1
782824
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1638754638 LIMIT 1
782825
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1638754638], ["username", "billy_23"], ["access_token", "0888158d47311894bb7d5c558d1be619"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:57.754381"], ["updated_at", "2015-03-20 19:03:57.754381"]]
782826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782827
+  (0.0ms) SAVEPOINT active_record_1
782828
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1774140947 LIMIT 1
782829
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1774140947], ["username", "billy_24"], ["access_token", "e8f33f920483be7a33978fbba39ffeca"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:57.756740"], ["updated_at", "2015-03-20 19:03:57.756740"]]
782830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782831
+  (0.1ms) SAVEPOINT active_record_1
782832
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1088506172 LIMIT 1
782833
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1088506172], ["username", "billy_25"], ["access_token", "582b4a3d74604a616dc9895041e4c05d"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:57.760765"], ["updated_at", "2015-03-20 19:03:57.760765"]]
782834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782835
+  (0.0ms) SAVEPOINT active_record_1
782836
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1782923461 LIMIT 1
782837
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1782923461], ["username", "billy_26"], ["access_token", "837a222ab2d736a3ed9321c17feeb3b8"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:57.765297"], ["updated_at", "2015-03-20 19:03:57.765297"]]
782838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782839
+  (0.0ms) SAVEPOINT active_record_1
782840
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1816310394 LIMIT 1
782841
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1816310394], ["username", "billy_27"], ["access_token", "2307199d56c61a89bd2b2fec6b899f64"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:57.767513"], ["updated_at", "2015-03-20 19:03:57.767513"]]
782842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782843
+  (0.0ms) SAVEPOINT active_record_1
782844
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -140955788 LIMIT 1
782845
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -140955788], ["username", "billy_28"], ["access_token", "a4e68970dcab128413320dce5b0dd3c9"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:57.769650"], ["updated_at", "2015-03-20 19:03:57.769650"]]
782846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782847
+  (0.0ms) SAVEPOINT active_record_1
782848
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -436393427 LIMIT 1
782849
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -436393427], ["username", "billy_29"], ["access_token", "73ea1c60961696a583d0d5294e744812"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:57.771774"], ["updated_at", "2015-03-20 19:03:57.771774"]]
782850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782851
+  (0.0ms) SAVEPOINT active_record_1
782852
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -863659596 LIMIT 1
782853
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -863659596], ["username", "billy_30"], ["access_token", "0b09f174c91714f69789243c7e635ffa"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:57.774583"], ["updated_at", "2015-03-20 19:03:57.774583"]]
782854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782855
+  (0.0ms) SAVEPOINT active_record_1
782856
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -968534215 LIMIT 1
782857
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -968534215], ["username", "billy_31"], ["access_token", "d063da90587803a6573dbe140a49f6d8"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:57.777148"], ["updated_at", "2015-03-20 19:03:57.777148"]]
782858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782859
+  (0.0ms) SAVEPOINT active_record_1
782860
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1274784391 LIMIT 1
782861
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1274784391], ["username", "billy_32"], ["access_token", "12a84db774f43a80b04981a25b8c9275"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:57.779400"], ["updated_at", "2015-03-20 19:03:57.779400"]]
782862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782863
+  (0.0ms) SAVEPOINT active_record_1
782864
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -270319291 LIMIT 1
782865
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -270319291], ["username", "billy_33"], ["access_token", "5727af591ed517c8fe23b9288c4274d2"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:57.781578"], ["updated_at", "2015-03-20 19:03:57.781578"]]
782866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782867
+  (0.0ms) SAVEPOINT active_record_1
782868
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -493801880 LIMIT 1
782869
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -493801880], ["username", "billy_34"], ["access_token", "d4088c6f73a023b4688dc3e96d5847eb"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:57.783753"], ["updated_at", "2015-03-20 19:03:57.783753"]]
782870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782871
+  (0.0ms) SAVEPOINT active_record_1
782872
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -258931994 LIMIT 1
782873
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -258931994], ["username", "billy_35"], ["access_token", "1740ee21e9d014c2d8d4d7b16ab9293f"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:57.785995"], ["updated_at", "2015-03-20 19:03:57.785995"]]
782874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782875
+  (0.0ms) SAVEPOINT active_record_1
782876
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474157292 LIMIT 1
782877
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -474157292], ["username", "billy_36"], ["access_token", "267a944fb074533286d994f17277c1a3"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:57.788221"], ["updated_at", "2015-03-20 19:03:57.788221"]]
782878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782879
+  (0.0ms) SAVEPOINT active_record_1
782880
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1879478939 LIMIT 1
782881
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1879478939], ["username", "billy_37"], ["access_token", "5d4dc0f8520529f85ee9cb7d8898c432"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:57.790351"], ["updated_at", "2015-03-20 19:03:57.790351"]]
782882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782883
+  (0.0ms) SAVEPOINT active_record_1
782884
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -191716390 LIMIT 1
782885
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -191716390], ["username", "billy_38"], ["access_token", "0aee147510f18226842b7bc5cd87eb7b"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:57.792684"], ["updated_at", "2015-03-20 19:03:57.792684"]]
782886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782887
+  (0.0ms) SAVEPOINT active_record_1
782888
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1093602060 LIMIT 1
782889
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1093602060], ["username", "billy_39"], ["access_token", "28e4b9606b124b42a8eb326f4215c267"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:57.794970"], ["updated_at", "2015-03-20 19:03:57.794970"]]
782890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782891
+  (0.0ms) SAVEPOINT active_record_1
782892
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864101964 LIMIT 1
782893
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1864101964], ["username", "billy_40"], ["access_token", "a8cfe6ce6d0986996dd4e5a4080deac2"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:57.797293"], ["updated_at", "2015-03-20 19:03:57.797293"]]
782894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782895
+  (0.0ms) SAVEPOINT active_record_1
782896
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1550739663 LIMIT 1
782897
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1550739663], ["username", "billy_41"], ["access_token", "eafca4df53f658e55df43616f5828586"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:57.799814"], ["updated_at", "2015-03-20 19:03:57.799814"]]
782898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782899
+  (0.0ms) SAVEPOINT active_record_1
782900
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1766048621 LIMIT 1
782901
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1766048621], ["username", "billy_42"], ["access_token", "8223fb4931f097179a878f645f13ff24"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:57.802463"], ["updated_at", "2015-03-20 19:03:57.802463"]]
782902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782903
+  (0.1ms) SAVEPOINT active_record_1
782904
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992250087 LIMIT 1
782905
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -992250087], ["username", "billy_43"], ["access_token", "da71d2081ab902a1df05d3f534b7bbd3"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:57.805356"], ["updated_at", "2015-03-20 19:03:57.805356"]]
782906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782907
+  (0.1ms) SAVEPOINT active_record_1
782908
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -956871939 LIMIT 1
782909
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -956871939], ["username", "billy_44"], ["access_token", "f610794f522f033b0927c85697398ce4"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:57.808562"], ["updated_at", "2015-03-20 19:03:57.808562"]]
782910
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782911
+  (0.0ms) SAVEPOINT active_record_1
782912
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -603692282 LIMIT 1
782913
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -603692282], ["username", "billy_45"], ["access_token", "c9cc0795bf00c4c7aa561fd69d13341e"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:57.811351"], ["updated_at", "2015-03-20 19:03:57.811351"]]
782914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782915
+  (0.0ms) SAVEPOINT active_record_1
782916
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -718915125 LIMIT 1
782917
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -718915125], ["username", "billy_46"], ["access_token", "6466462128ed581f0539c35eab0bf078"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:57.813702"], ["updated_at", "2015-03-20 19:03:57.813702"]]
782918
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782919
+  (0.0ms) SAVEPOINT active_record_1
782920
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1466791280 LIMIT 1
782921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1466791280], ["username", "billy_47"], ["access_token", "b58b8fa39308d8a01e8da8d7cc21a67b"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:57.816119"], ["updated_at", "2015-03-20 19:03:57.816119"]]
782922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782923
+  (0.1ms) SAVEPOINT active_record_1
782924
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -119743448 LIMIT 1
782925
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -119743448], ["username", "billy_48"], ["access_token", "059afc7445381c7916a12580a14f89d3"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:57.818645"], ["updated_at", "2015-03-20 19:03:57.818645"]]
782926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782927
+  (0.0ms) SAVEPOINT active_record_1
782928
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1270968101 LIMIT 1
782929
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1270968101], ["username", "billy_49"], ["access_token", "4d39a7c3d7a38d62ce13969b9b8d2c4b"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:57.821125"], ["updated_at", "2015-03-20 19:03:57.821125"]]
782930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782931
+  (0.0ms) SAVEPOINT active_record_1
782932
+  (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))
782933
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
782934
+  (0.8ms) rollback transaction
782935
+  (0.1ms) begin transaction
782936
+  (0.0ms) SAVEPOINT active_record_1
782937
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384772666 LIMIT 1
782938
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1384772666], ["username", "jstrav"], ["access_token", "5c1decf8431cea65fe218e6395ef11ce"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:57.835492"], ["updated_at", "2015-03-20 19:03:57.835492"]]
782939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782940
+  (0.0ms) SAVEPOINT active_record_1
782941
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1824231167 LIMIT 1
782942
+ 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", -1824231167], ["username", "mary"], ["access_token", "cc3125413252deb39d7cbcc6f06cf575"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:57.838884"], ["updated_at", "2015-03-20 19:03:57.838884"]]
782943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782944
+  (0.0ms) SAVEPOINT active_record_1
782945
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -905118582 LIMIT 1
782946
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -905118582], ["username", "jstead"], ["access_token", "60a7f07733fc9c758dd717de66fd9b39"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:57.842022"], ["updated_at", "2015-03-20 19:03:57.842022"]]
782947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
782948
+  (0.1ms) SAVEPOINT active_record_1
782949
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2026661643 LIMIT 1
782950
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2026661643], ["username", "bigbear"], ["access_token", "0b0f3a3ee0ed13499459c95bca07ebd6"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:57.844966"], ["updated_at", "2015-03-20 19:03:57.844966"]]
782951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782952
+  (0.0ms) SAVEPOINT active_record_1
782953
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1656511510 LIMIT 1
782954
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1656511510], ["username", "billy_00"], ["access_token", "26e1d1f98fe01bdfcee35a707fd38810"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:57.847984"], ["updated_at", "2015-03-20 19:03:57.847984"]]
782955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782956
+  (0.1ms) SAVEPOINT active_record_1
782957
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -106792560 LIMIT 1
782958
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -106792560], ["username", "billy_01"], ["access_token", "7dcf915d203eecdab93e6b6b36957790"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:57.883584"], ["updated_at", "2015-03-20 19:03:57.883584"]]
782959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782960
+  (0.0ms) SAVEPOINT active_record_1
782961
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1773719839 LIMIT 1
782962
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1773719839], ["username", "billy_02"], ["access_token", "e608901eb06324a3d5b6c5dd1eb5e480"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:57.886233"], ["updated_at", "2015-03-20 19:03:57.886233"]]
782963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782964
+  (0.0ms) SAVEPOINT active_record_1
782965
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2019354256 LIMIT 1
782966
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2019354256], ["username", "billy_03"], ["access_token", "fdb954dd2b2586dd7142d98aeced43d6"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:57.888583"], ["updated_at", "2015-03-20 19:03:57.888583"]]
782967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782968
+  (0.0ms) SAVEPOINT active_record_1
782969
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -139106858 LIMIT 1
782970
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -139106858], ["username", "billy_04"], ["access_token", "2cf6af84c4fecb40a5e4cbe0999b0a00"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:57.891004"], ["updated_at", "2015-03-20 19:03:57.891004"]]
782971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782972
+  (0.0ms) SAVEPOINT active_record_1
782973
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1069052173 LIMIT 1
782974
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1069052173], ["username", "billy_05"], ["access_token", "03becc57ce6e45f600a14b405d0080d9"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:57.893413"], ["updated_at", "2015-03-20 19:03:57.893413"]]
782975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782976
+  (0.0ms) SAVEPOINT active_record_1
782977
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -327353732 LIMIT 1
782978
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -327353732], ["username", "billy_06"], ["access_token", "9d39c73e590172aea8af1640762d2b85"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:57.896000"], ["updated_at", "2015-03-20 19:03:57.896000"]]
782979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782980
+  (0.1ms) SAVEPOINT active_record_1
782981
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1425591859 LIMIT 1
782982
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1425591859], ["username", "billy_07"], ["access_token", "32dbd8468682542723337259c380da4c"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:57.898636"], ["updated_at", "2015-03-20 19:03:57.898636"]]
782983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782984
+  (0.0ms) SAVEPOINT active_record_1
782985
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -329658292 LIMIT 1
782986
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -329658292], ["username", "billy_08"], ["access_token", "19a128159707a9351520474cd09bb958"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:57.901344"], ["updated_at", "2015-03-20 19:03:57.901344"]]
782987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782988
+  (0.0ms) SAVEPOINT active_record_1
782989
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730022854 LIMIT 1
782990
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1730022854], ["username", "billy_09"], ["access_token", "d64563c69556046167ab591d75993188"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:57.904072"], ["updated_at", "2015-03-20 19:03:57.904072"]]
782991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782992
+  (0.0ms) SAVEPOINT active_record_1
782993
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -852523521 LIMIT 1
782994
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -852523521], ["username", "billy_10"], ["access_token", "1b75b817cd4660d1f57cf616c7cb132a"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:57.906747"], ["updated_at", "2015-03-20 19:03:57.906747"]]
782995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
782996
+  (0.0ms) SAVEPOINT active_record_1
782997
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1080187450 LIMIT 1
782998
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1080187450], ["username", "billy_11"], ["access_token", "0df06a64dc3be688eb00f820b74434b4"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:57.909224"], ["updated_at", "2015-03-20 19:03:57.909224"]]
782999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783000
+  (0.0ms) SAVEPOINT active_record_1
783001
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1798050740 LIMIT 1
783002
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1798050740], ["username", "billy_12"], ["access_token", "985979ca7911f626e903f66e4f610c12"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:57.911676"], ["updated_at", "2015-03-20 19:03:57.911676"]]
783003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783004
+  (0.0ms) SAVEPOINT active_record_1
783005
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2097018781 LIMIT 1
783006
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2097018781], ["username", "billy_13"], ["access_token", "b7c18faed7a28b7a7dade31e4f5400c6"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:57.914302"], ["updated_at", "2015-03-20 19:03:57.914302"]]
783007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783008
+  (0.0ms) SAVEPOINT active_record_1
783009
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -14608631 LIMIT 1
783010
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -14608631], ["username", "billy_14"], ["access_token", "3a36fd6d39008661d6887533e035a105"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:57.917032"], ["updated_at", "2015-03-20 19:03:57.917032"]]
783011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783012
+  (0.0ms) SAVEPOINT active_record_1
783013
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1706306570 LIMIT 1
783014
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1706306570], ["username", "billy_15"], ["access_token", "5b7bd94ab44d5e2df08bbd6a41aeb2a6"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:57.919791"], ["updated_at", "2015-03-20 19:03:57.919791"]]
783015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783016
+  (0.0ms) SAVEPOINT active_record_1
783017
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1808565034 LIMIT 1
783018
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1808565034], ["username", "billy_16"], ["access_token", "003ff2bfbda9c8af870cc0029605f08a"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:57.922496"], ["updated_at", "2015-03-20 19:03:57.922496"]]
783019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783020
+  (0.0ms) SAVEPOINT active_record_1
783021
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1170660645 LIMIT 1
783022
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1170660645], ["username", "billy_17"], ["access_token", "6fabf35009ef0500f7f21c7176ebed06"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:57.925125"], ["updated_at", "2015-03-20 19:03:57.925125"]]
783023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783024
+  (0.0ms) SAVEPOINT active_record_1
783025
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -974549992 LIMIT 1
783026
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -974549992], ["username", "billy_18"], ["access_token", "0d2168e47923e7b4e2768ac4f5f6e1c2"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:57.928144"], ["updated_at", "2015-03-20 19:03:57.928144"]]
783027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783028
+  (0.1ms) SAVEPOINT active_record_1
783029
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -869207513 LIMIT 1
783030
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -869207513], ["username", "billy_19"], ["access_token", "c164aedcf52789e00bddb682e1d1839f"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:57.930915"], ["updated_at", "2015-03-20 19:03:57.930915"]]
783031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783032
+  (0.1ms) SAVEPOINT active_record_1
783033
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1483529051 LIMIT 1
783034
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1483529051], ["username", "billy_20"], ["access_token", "faea82ae6b3b66a846ff2c3b0e33de9d"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:57.933692"], ["updated_at", "2015-03-20 19:03:57.933692"]]
783035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783036
+  (0.0ms) SAVEPOINT active_record_1
783037
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480121329 LIMIT 1
783038
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1480121329], ["username", "billy_21"], ["access_token", "900941949bb52592f3accdc2ba0e184e"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:57.936327"], ["updated_at", "2015-03-20 19:03:57.936327"]]
783039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783040
+  (0.0ms) SAVEPOINT active_record_1
783041
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1537805528 LIMIT 1
783042
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1537805528], ["username", "billy_22"], ["access_token", "2cb0ee8f86289ed174d42ccdfffda15b"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:57.939468"], ["updated_at", "2015-03-20 19:03:57.939468"]]
783043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783044
+  (0.0ms) SAVEPOINT active_record_1
783045
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1610545577 LIMIT 1
783046
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1610545577], ["username", "billy_23"], ["access_token", "631e4f243615529697cae3b77aec832d"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:57.942451"], ["updated_at", "2015-03-20 19:03:57.942451"]]
783047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783048
+  (0.0ms) SAVEPOINT active_record_1
783049
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -730777395 LIMIT 1
783050
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -730777395], ["username", "billy_24"], ["access_token", "a64d83c7d05252994c92eb83b5a89ca0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:57.944931"], ["updated_at", "2015-03-20 19:03:57.944931"]]
783051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783052
+  (0.0ms) SAVEPOINT active_record_1
783053
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -54226410 LIMIT 1
783054
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -54226410], ["username", "billy_25"], ["access_token", "342b2aa40c069a61c23201c3451e5af4"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:57.947377"], ["updated_at", "2015-03-20 19:03:57.947377"]]
783055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783056
+  (0.0ms) SAVEPOINT active_record_1
783057
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1020729661 LIMIT 1
783058
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1020729661], ["username", "billy_26"], ["access_token", "a74ae5af25523bce375eebe9c3e7ab44"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:57.950150"], ["updated_at", "2015-03-20 19:03:57.950150"]]
783059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783060
+  (0.0ms) SAVEPOINT active_record_1
783061
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -984705153 LIMIT 1
783062
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -984705153], ["username", "billy_27"], ["access_token", "81d92541ec66393b8380637777be867d"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:57.952572"], ["updated_at", "2015-03-20 19:03:57.952572"]]
783063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783064
+  (0.0ms) SAVEPOINT active_record_1
783065
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -509250473 LIMIT 1
783066
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -509250473], ["username", "billy_28"], ["access_token", "97dbf40754447ac80a0d2c7c7916d1d7"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:57.954950"], ["updated_at", "2015-03-20 19:03:57.954950"]]
783067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783068
+  (0.0ms) SAVEPOINT active_record_1
783069
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -853934886 LIMIT 1
783070
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -853934886], ["username", "billy_29"], ["access_token", "4ec49635dc0a2b4f396d2b99c125b57b"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:57.957463"], ["updated_at", "2015-03-20 19:03:57.957463"]]
783071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783072
+  (0.0ms) SAVEPOINT active_record_1
783073
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1546508602 LIMIT 1
783074
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1546508602], ["username", "billy_30"], ["access_token", "3711628ad46d10afeede0ea59fa360e0"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:57.960116"], ["updated_at", "2015-03-20 19:03:57.960116"]]
783075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783076
+  (0.0ms) SAVEPOINT active_record_1
783077
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659876356 LIMIT 1
783078
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1659876356], ["username", "billy_31"], ["access_token", "556ac9e24e8cc858c9cc80452e42f1bd"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:57.962791"], ["updated_at", "2015-03-20 19:03:57.962791"]]
783079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783080
+  (0.0ms) SAVEPOINT active_record_1
783081
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1496684643 LIMIT 1
783082
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1496684643], ["username", "billy_32"], ["access_token", "fe6fa508b585cad37b277f4546cdf10c"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:57.965422"], ["updated_at", "2015-03-20 19:03:57.965422"]]
783083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783084
+  (0.0ms) SAVEPOINT active_record_1
783085
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -936677920 LIMIT 1
783086
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -936677920], ["username", "billy_33"], ["access_token", "2e287e835d558d46600e4687179d7b84"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:57.967973"], ["updated_at", "2015-03-20 19:03:57.967973"]]
783087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783088
+  (0.0ms) SAVEPOINT active_record_1
783089
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -384508996 LIMIT 1
783090
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -384508996], ["username", "billy_34"], ["access_token", "60366964107128f77acc701af239b3ec"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:57.970694"], ["updated_at", "2015-03-20 19:03:57.970694"]]
783091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783092
+  (0.0ms) SAVEPOINT active_record_1
783093
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -492203860 LIMIT 1
783094
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -492203860], ["username", "billy_35"], ["access_token", "20a1e4b9b4912e431eef49fb70ca77e7"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:57.973403"], ["updated_at", "2015-03-20 19:03:57.973403"]]
783095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783096
+  (0.0ms) SAVEPOINT active_record_1
783097
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1831776341 LIMIT 1
783098
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1831776341], ["username", "billy_36"], ["access_token", "229d8eb9c30a2a2ada8c83526e7e33d5"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:57.976219"], ["updated_at", "2015-03-20 19:03:57.976219"]]
783099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783100
+  (0.0ms) SAVEPOINT active_record_1
783101
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1153175069 LIMIT 1
783102
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1153175069], ["username", "billy_37"], ["access_token", "b21d2959f9d2bef62ba135fcea5bfc22"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:57.978946"], ["updated_at", "2015-03-20 19:03:57.978946"]]
783103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783104
+  (0.0ms) SAVEPOINT active_record_1
783105
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1462713276 LIMIT 1
783106
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1462713276], ["username", "billy_38"], ["access_token", "7a75a140bfe03a1b2b0dddab946f7a5f"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:57.981638"], ["updated_at", "2015-03-20 19:03:57.981638"]]
783107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783108
+  (0.0ms) SAVEPOINT active_record_1
783109
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1813257878 LIMIT 1
783110
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1813257878], ["username", "billy_39"], ["access_token", "72d240412e7d6e51f1a714a390b4405d"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:57.984308"], ["updated_at", "2015-03-20 19:03:57.984308"]]
783111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783112
+  (0.0ms) SAVEPOINT active_record_1
783113
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -547718059 LIMIT 1
783114
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -547718059], ["username", "billy_40"], ["access_token", "17183c90322de5d2efb886635df3e8fd"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:57.986806"], ["updated_at", "2015-03-20 19:03:57.986806"]]
783115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783116
+  (0.1ms) SAVEPOINT active_record_1
783117
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1538255836 LIMIT 1
783118
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1538255836], ["username", "billy_41"], ["access_token", "d6aa51473113632a008a894ab988dc64"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:57.989381"], ["updated_at", "2015-03-20 19:03:57.989381"]]
783119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783120
+  (0.0ms) SAVEPOINT active_record_1
783121
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -845299537 LIMIT 1
783122
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -845299537], ["username", "billy_42"], ["access_token", "d08f33c26118e18cdeabb94cbea02ab0"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:57.992063"], ["updated_at", "2015-03-20 19:03:57.992063"]]
783123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783124
+  (0.0ms) SAVEPOINT active_record_1
783125
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1708562230 LIMIT 1
783126
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1708562230], ["username", "billy_43"], ["access_token", "56806c6f31373b8a818a54ef9046485d"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:57.994729"], ["updated_at", "2015-03-20 19:03:57.994729"]]
783127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783128
+  (0.0ms) SAVEPOINT active_record_1
783129
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -80336260 LIMIT 1
783130
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -80336260], ["username", "billy_44"], ["access_token", "0a5e23afcd1da1d27f4701b362a93ffb"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:57.997298"], ["updated_at", "2015-03-20 19:03:57.997298"]]
783131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783132
+  (0.0ms) SAVEPOINT active_record_1
783133
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -247212976 LIMIT 1
783134
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -247212976], ["username", "billy_45"], ["access_token", "b1796ba7c58af4c7f8e3ede60a8b194b"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:57.999873"], ["updated_at", "2015-03-20 19:03:57.999873"]]
783135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783136
+  (0.0ms) SAVEPOINT active_record_1
783137
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -237037256 LIMIT 1
783138
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -237037256], ["username", "billy_46"], ["access_token", "36b5877a1b94fe91412b07337daca1a2"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:58.002515"], ["updated_at", "2015-03-20 19:03:58.002515"]]
783139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783140
+  (0.0ms) SAVEPOINT active_record_1
783141
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -771467445 LIMIT 1
783142
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -771467445], ["username", "billy_47"], ["access_token", "fa242bdde83102728f89b1814e6664d5"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:58.005084"], ["updated_at", "2015-03-20 19:03:58.005084"]]
783143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783144
+  (0.0ms) SAVEPOINT active_record_1
783145
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369530634 LIMIT 1
783146
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -369530634], ["username", "billy_48"], ["access_token", "1281b4183c69985753d1896a4a850743"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:58.007645"], ["updated_at", "2015-03-20 19:03:58.007645"]]
783147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783148
+  (0.0ms) SAVEPOINT active_record_1
783149
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -339832650 LIMIT 1
783150
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -339832650], ["username", "billy_49"], ["access_token", "036d779c5f63b75d0c281b5971a318c1"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:58.010127"], ["updated_at", "2015-03-20 19:03:58.010127"]]
783151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783152
+  (0.0ms) SAVEPOINT active_record_1
783153
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
783154
+ 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
783155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783156
+  (0.4ms) rollback transaction
783157
+  (0.1ms) begin transaction
783158
+  (0.0ms) SAVEPOINT active_record_1
783159
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -499774153 LIMIT 1
783160
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -499774153], ["username", "jstrav"], ["access_token", "68888cdf48af909d4cd7b043677379d4"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:58.021563"], ["updated_at", "2015-03-20 19:03:58.021563"]]
783161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783162
+  (0.1ms) SAVEPOINT active_record_1
783163
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1660327515 LIMIT 1
783164
+ 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", -1660327515], ["username", "mary"], ["access_token", "88aac73d703153f51f85c29e2fbf4940"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:58.024922"], ["updated_at", "2015-03-20 19:03:58.024922"]]
783165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783166
+  (0.0ms) SAVEPOINT active_record_1
783167
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1502938065 LIMIT 1
783168
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1502938065], ["username", "jstead"], ["access_token", "e782e20d37739339fea794fc0faef4a2"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:58.027809"], ["updated_at", "2015-03-20 19:03:58.027809"]]
783169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783170
+  (0.0ms) SAVEPOINT active_record_1
783171
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -623068814 LIMIT 1
783172
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -623068814], ["username", "bigbear"], ["access_token", "c747c5c09b7049a7886bdbafc07f98af"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:58.030519"], ["updated_at", "2015-03-20 19:03:58.030519"]]
783173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783174
+  (0.0ms) SAVEPOINT active_record_1
783175
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1979208494 LIMIT 1
783176
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1979208494], ["username", "billy_00"], ["access_token", "1d4870d6a960df503ef6c09c04692e84"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:58.033148"], ["updated_at", "2015-03-20 19:03:58.033148"]]
783177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783178
+  (0.0ms) SAVEPOINT active_record_1
783179
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384197546 LIMIT 1
783180
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1384197546], ["username", "billy_01"], ["access_token", "1f43b9e4623fbf4f432fe7ac1303fa10"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:58.035945"], ["updated_at", "2015-03-20 19:03:58.035945"]]
783181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783182
+  (0.0ms) SAVEPOINT active_record_1
783183
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1890643258 LIMIT 1
783184
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1890643258], ["username", "billy_02"], ["access_token", "507ffaa25fa8d5d811dd24156edf97c1"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:58.038725"], ["updated_at", "2015-03-20 19:03:58.038725"]]
783185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783186
+  (0.1ms) SAVEPOINT active_record_1
783187
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -24788465 LIMIT 1
783188
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -24788465], ["username", "billy_03"], ["access_token", "6ce79d516e59d154c8581d38bb9ede28"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:58.041958"], ["updated_at", "2015-03-20 19:03:58.041958"]]
783189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783190
+  (0.0ms) SAVEPOINT active_record_1
783191
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -228133881 LIMIT 1
783192
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -228133881], ["username", "billy_04"], ["access_token", "5d5418d57a68d73754ffb6a108ef0ee2"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:58.044421"], ["updated_at", "2015-03-20 19:03:58.044421"]]
783193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783194
+  (0.0ms) SAVEPOINT active_record_1
783195
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1248729480 LIMIT 1
783196
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1248729480], ["username", "billy_05"], ["access_token", "67154c6ec9bae63894b3ba23e9bd2d02"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:58.046586"], ["updated_at", "2015-03-20 19:03:58.046586"]]
783197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783198
+  (0.0ms) SAVEPOINT active_record_1
783199
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -226209248 LIMIT 1
783200
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -226209248], ["username", "billy_06"], ["access_token", "9f85a458949e4e8799576fae2b63e84d"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:58.048710"], ["updated_at", "2015-03-20 19:03:58.048710"]]
783201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783202
+  (0.0ms) SAVEPOINT active_record_1
783203
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -624284152 LIMIT 1
783204
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -624284152], ["username", "billy_07"], ["access_token", "dc20ec866dc35366dcacaadc9a3ef8d4"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:58.050860"], ["updated_at", "2015-03-20 19:03:58.050860"]]
783205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783206
+  (0.0ms) SAVEPOINT active_record_1
783207
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -958158508 LIMIT 1
783208
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -958158508], ["username", "billy_08"], ["access_token", "9878ee5c07c24f2910b37f02fab60859"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:58.053087"], ["updated_at", "2015-03-20 19:03:58.053087"]]
783209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783210
+  (0.0ms) SAVEPOINT active_record_1
783211
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1281521935 LIMIT 1
783212
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1281521935], ["username", "billy_09"], ["access_token", "ebf96538394ad71fc126d8ce9794518f"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:58.055385"], ["updated_at", "2015-03-20 19:03:58.055385"]]
783213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783214
+  (0.0ms) SAVEPOINT active_record_1
783215
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -371190668 LIMIT 1
783216
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -371190668], ["username", "billy_10"], ["access_token", "f7ad4b16b3a3600be05705512e8749c0"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:58.057566"], ["updated_at", "2015-03-20 19:03:58.057566"]]
783217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783218
+  (0.0ms) SAVEPOINT active_record_1
783219
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -453665267 LIMIT 1
783220
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -453665267], ["username", "billy_11"], ["access_token", "2d0b865577ffd99dcd1e641101978637"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:58.059774"], ["updated_at", "2015-03-20 19:03:58.059774"]]
783221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783222
+  (0.0ms) SAVEPOINT active_record_1
783223
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -491694246 LIMIT 1
783224
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -491694246], ["username", "billy_12"], ["access_token", "15beea902910b4d20bd0183cd6806cf1"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:58.061957"], ["updated_at", "2015-03-20 19:03:58.061957"]]
783225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783226
+  (0.0ms) SAVEPOINT active_record_1
783227
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1327663734 LIMIT 1
783228
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1327663734], ["username", "billy_13"], ["access_token", "b3cccddec22c404fbf210be9559c7d0c"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:58.064475"], ["updated_at", "2015-03-20 19:03:58.064475"]]
783229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783230
+  (0.0ms) SAVEPOINT active_record_1
783231
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1150882725 LIMIT 1
783232
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1150882725], ["username", "billy_14"], ["access_token", "b5db76f94683a2479a84bceb0945518c"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:58.066897"], ["updated_at", "2015-03-20 19:03:58.066897"]]
783233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783234
+  (0.0ms) SAVEPOINT active_record_1
783235
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1520070051 LIMIT 1
783236
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1520070051], ["username", "billy_15"], ["access_token", "4e458ba8d99f2dbc6f4a764d168ea4dd"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:58.069126"], ["updated_at", "2015-03-20 19:03:58.069126"]]
783237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783238
+  (0.0ms) SAVEPOINT active_record_1
783239
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -321933638 LIMIT 1
783240
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -321933638], ["username", "billy_16"], ["access_token", "d4d10a87ea0f2bda5ca575c12d263c4a"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:58.071332"], ["updated_at", "2015-03-20 19:03:58.071332"]]
783241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783242
+  (0.0ms) SAVEPOINT active_record_1
783243
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1977941716 LIMIT 1
783244
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1977941716], ["username", "billy_17"], ["access_token", "0916a8069a4ff575012111f98e4676bb"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:58.073649"], ["updated_at", "2015-03-20 19:03:58.073649"]]
783245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783246
+  (0.0ms) SAVEPOINT active_record_1
783247
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1015150759 LIMIT 1
783248
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1015150759], ["username", "billy_18"], ["access_token", "70d5a784c0a999fdb1ca5006a3fa1367"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:58.076022"], ["updated_at", "2015-03-20 19:03:58.076022"]]
783249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783250
+  (0.0ms) SAVEPOINT active_record_1
783251
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1496132740 LIMIT 1
783252
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1496132740], ["username", "billy_19"], ["access_token", "3b2439e493648a8dc78be8ba7085c0b1"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:58.078398"], ["updated_at", "2015-03-20 19:03:58.078398"]]
783253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783254
+  (0.0ms) SAVEPOINT active_record_1
783255
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -860506869 LIMIT 1
783256
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -860506869], ["username", "billy_20"], ["access_token", "1feb3a24bf2d87c492bf484b2777259c"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:58.080816"], ["updated_at", "2015-03-20 19:03:58.080816"]]
783257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783258
+  (0.0ms) SAVEPOINT active_record_1
783259
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1495201563 LIMIT 1
783260
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1495201563], ["username", "billy_21"], ["access_token", "a6c84c0c45d1d32b3f7ef1c07c60f147"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:58.083335"], ["updated_at", "2015-03-20 19:03:58.083335"]]
783261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783262
+  (0.0ms) SAVEPOINT active_record_1
783263
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1100686147 LIMIT 1
783264
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1100686147], ["username", "billy_22"], ["access_token", "110ec7482ba6799302ae44be609a0a38"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:58.085988"], ["updated_at", "2015-03-20 19:03:58.085988"]]
783265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783266
+  (0.1ms) SAVEPOINT active_record_1
783267
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1393605409 LIMIT 1
783268
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1393605409], ["username", "billy_23"], ["access_token", "4c1d7b92f853f4506db397991c80c943"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:58.088450"], ["updated_at", "2015-03-20 19:03:58.088450"]]
783269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783270
+  (0.0ms) SAVEPOINT active_record_1
783271
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372207757 LIMIT 1
783272
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -372207757], ["username", "billy_24"], ["access_token", "3b6933cafb14d8cc4387475199178260"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:58.091066"], ["updated_at", "2015-03-20 19:03:58.091066"]]
783273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783274
+  (0.0ms) SAVEPOINT active_record_1
783275
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -389635713 LIMIT 1
783276
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -389635713], ["username", "billy_25"], ["access_token", "d65b564dbef51cec7dbe66660b3db4ee"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:58.093289"], ["updated_at", "2015-03-20 19:03:58.093289"]]
783277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783278
+  (0.0ms) SAVEPOINT active_record_1
783279
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1412228904 LIMIT 1
783280
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1412228904], ["username", "billy_26"], ["access_token", "2af11847d4e96e01944872ef8bd9a6ed"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:58.095400"], ["updated_at", "2015-03-20 19:03:58.095400"]]
783281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783282
+  (0.0ms) SAVEPOINT active_record_1
783283
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -265601318 LIMIT 1
783284
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -265601318], ["username", "billy_27"], ["access_token", "678cc2ba668a63e3b3a92aa8a740fec6"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:58.097585"], ["updated_at", "2015-03-20 19:03:58.097585"]]
783285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783286
+  (0.0ms) SAVEPOINT active_record_1
783287
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -730511554 LIMIT 1
783288
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -730511554], ["username", "billy_28"], ["access_token", "37e6c573541cc318e97d1c7ddee70319"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:58.099839"], ["updated_at", "2015-03-20 19:03:58.099839"]]
783289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783290
+  (0.0ms) SAVEPOINT active_record_1
783291
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -644121296 LIMIT 1
783292
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -644121296], ["username", "billy_29"], ["access_token", "23f543b61c8a98dc608acf6e4a834d0e"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:58.102138"], ["updated_at", "2015-03-20 19:03:58.102138"]]
783293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783294
+  (0.0ms) SAVEPOINT active_record_1
783295
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -29995531 LIMIT 1
783296
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -29995531], ["username", "billy_30"], ["access_token", "93516880de0783cb94c14806d8fb2899"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:58.104400"], ["updated_at", "2015-03-20 19:03:58.104400"]]
783297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783298
+  (0.0ms) SAVEPOINT active_record_1
783299
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -739427461 LIMIT 1
783300
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -739427461], ["username", "billy_31"], ["access_token", "9ae596c520ec20493df2ff5edbb58cd3"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:58.106745"], ["updated_at", "2015-03-20 19:03:58.106745"]]
783301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783302
+  (0.1ms) SAVEPOINT active_record_1
783303
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -90705725 LIMIT 1
783304
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -90705725], ["username", "billy_32"], ["access_token", "2f02619d8b927923681bdd42f89ea449"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:58.109362"], ["updated_at", "2015-03-20 19:03:58.109362"]]
783305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783306
+  (0.0ms) SAVEPOINT active_record_1
783307
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197608386 LIMIT 1
783308
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1197608386], ["username", "billy_33"], ["access_token", "3caa15aa3af949fb925071265ebc13a8"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:58.111807"], ["updated_at", "2015-03-20 19:03:58.111807"]]
783309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783310
+  (0.0ms) SAVEPOINT active_record_1
783311
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1424511713 LIMIT 1
783312
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1424511713], ["username", "billy_34"], ["access_token", "359c81845768e7736ddec504e5ae608a"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:58.114204"], ["updated_at", "2015-03-20 19:03:58.114204"]]
783313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783314
+  (0.0ms) SAVEPOINT active_record_1
783315
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -99807507 LIMIT 1
783316
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -99807507], ["username", "billy_35"], ["access_token", "4842fce7a5abbb48bf158d389f7e04ac"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:58.116556"], ["updated_at", "2015-03-20 19:03:58.116556"]]
783317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783318
+  (0.0ms) SAVEPOINT active_record_1
783319
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -905754148 LIMIT 1
783320
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -905754148], ["username", "billy_36"], ["access_token", "8fde5647af49752f4bf39250d99dfa21"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:58.118857"], ["updated_at", "2015-03-20 19:03:58.118857"]]
783321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783322
+  (0.0ms) SAVEPOINT active_record_1
783323
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1419993214 LIMIT 1
783324
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1419993214], ["username", "billy_37"], ["access_token", "25e9788addf7ce599f961e5982eb993b"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:58.121138"], ["updated_at", "2015-03-20 19:03:58.121138"]]
783325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783326
+  (0.0ms) SAVEPOINT active_record_1
783327
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1855014707 LIMIT 1
783328
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1855014707], ["username", "billy_38"], ["access_token", "38e928d3c9050912e4c45199c5bd7acf"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:58.123363"], ["updated_at", "2015-03-20 19:03:58.123363"]]
783329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783330
+  (0.0ms) SAVEPOINT active_record_1
783331
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1869669806 LIMIT 1
783332
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1869669806], ["username", "billy_39"], ["access_token", "5f27dcba03612eb271381d34aba27e98"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:58.125634"], ["updated_at", "2015-03-20 19:03:58.125634"]]
783333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783334
+  (0.0ms) SAVEPOINT active_record_1
783335
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563532754 LIMIT 1
783336
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1563532754], ["username", "billy_40"], ["access_token", "0178112f4d477abbba7d4f8e9e02e711"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:58.127981"], ["updated_at", "2015-03-20 19:03:58.127981"]]
783337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783338
+  (0.0ms) SAVEPOINT active_record_1
783339
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -955958208 LIMIT 1
783340
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -955958208], ["username", "billy_41"], ["access_token", "45a76e70bfa3890c4195a90a15e267fe"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:58.130184"], ["updated_at", "2015-03-20 19:03:58.130184"]]
783341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783342
+  (0.0ms) SAVEPOINT active_record_1
783343
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1673931555 LIMIT 1
783344
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1673931555], ["username", "billy_42"], ["access_token", "2319055df5119b9460bf357e406ceb0d"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:58.132343"], ["updated_at", "2015-03-20 19:03:58.132343"]]
783345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783346
+  (0.0ms) SAVEPOINT active_record_1
783347
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -148443869 LIMIT 1
783348
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -148443869], ["username", "billy_43"], ["access_token", "fe077eedf3e2ba6df222c2d81cad964e"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:58.134523"], ["updated_at", "2015-03-20 19:03:58.134523"]]
783349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783350
+  (0.0ms) SAVEPOINT active_record_1
783351
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2039724188 LIMIT 1
783352
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2039724188], ["username", "billy_44"], ["access_token", "642764f48e7353fe53d13e90d2810602"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:58.136652"], ["updated_at", "2015-03-20 19:03:58.136652"]]
783353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783354
+  (0.0ms) SAVEPOINT active_record_1
783355
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480471060 LIMIT 1
783356
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1480471060], ["username", "billy_45"], ["access_token", "d2a1458538960a307a95c3fceafaa63c"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:58.138883"], ["updated_at", "2015-03-20 19:03:58.138883"]]
783357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783358
+  (0.0ms) SAVEPOINT active_record_1
783359
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384783656 LIMIT 1
783360
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1384783656], ["username", "billy_46"], ["access_token", "47d95014d13035e66374d79ce89ab83f"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:58.141147"], ["updated_at", "2015-03-20 19:03:58.141147"]]
783361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783362
+  (0.0ms) SAVEPOINT active_record_1
783363
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -9744130 LIMIT 1
783364
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -9744130], ["username", "billy_47"], ["access_token", "9ed3f9bca533306c46a5378a1344f76c"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:58.143343"], ["updated_at", "2015-03-20 19:03:58.143343"]]
783365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783366
+  (0.0ms) SAVEPOINT active_record_1
783367
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -612035049 LIMIT 1
783368
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -612035049], ["username", "billy_48"], ["access_token", "489609be36aaee803e9bc2f92e3944f1"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:58.145490"], ["updated_at", "2015-03-20 19:03:58.145490"]]
783369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783370
+  (0.0ms) SAVEPOINT active_record_1
783371
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1405275507 LIMIT 1
783372
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1405275507], ["username", "billy_49"], ["access_token", "e96634f1647c8cb6fd31d337facb4eeb"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:58.147644"], ["updated_at", "2015-03-20 19:03:58.147644"]]
783373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783374
+  (0.0ms) SAVEPOINT active_record_1
783375
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
783376
+  (0.9ms) rollback transaction
783377
+  (0.0ms) begin transaction
783378
+  (0.0ms) SAVEPOINT active_record_1
783379
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
783380
+ 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", "8d9fd6eb35d1f897975806438a776733"], ["created_at", "2015-03-20 19:03:58.156575"], ["updated_at", "2015-03-20 19:03:58.156575"]]
783381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783383
+ Processing by OpenStax::Accounts::SessionsController#destroy as HTML
783384
+ Redirected to http://test.host/
783385
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
783386
+  (0.4ms) rollback transaction
783387
+  (0.0ms) begin transaction
783388
+  (0.0ms) SAVEPOINT active_record_1
783389
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
783390
+ 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", "53c169bc3aded733975b6648e49f75cb"], ["created_at", "2015-03-20 19:03:58.184216"], ["updated_at", "2015-03-20 19:03:58.184216"]]
783391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783392
+ Processing by OpenStax::Accounts::SessionsController#new as HTML
783393
+ Redirected to http://test.host/accounts/dev/accounts
783394
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
783395
+  (0.4ms) rollback transaction
783396
+  (0.0ms) begin transaction
783397
+  (0.0ms) SAVEPOINT active_record_1
783398
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
783399
+ 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", "baf4841a252d73e9d11fbfc1a7afac09"], ["created_at", "2015-03-20 19:03:58.193691"], ["updated_at", "2015-03-20 19:03:58.193691"]]
783400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783401
+  (0.3ms) rollback transaction
783402
+  (0.0ms) begin transaction
783403
+  (0.0ms) SAVEPOINT active_record_1
783404
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
783405
+ 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", "8060c25204bf4bb79aa9c7e5280df11c"], ["created_at", "2015-03-20 19:03:58.196981"], ["updated_at", "2015-03-20 19:03:58.196981"]]
783406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783407
+  (0.0ms) SAVEPOINT active_record_1
783408
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:58.203547"], ["updated_at", "2015-03-20 19:03:58.203547"]]
783409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783410
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783411
+  (0.5ms) rollback transaction
783412
+  (0.0ms) begin transaction
783413
+  (0.0ms) SAVEPOINT active_record_1
783414
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
783415
+ 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", "126458935592da07a331fc7bd287a6f0"], ["created_at", "2015-03-20 19:03:58.600377"], ["updated_at", "2015-03-20 19:03:58.600377"]]
783416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783417
+  (0.0ms) SAVEPOINT active_record_1
783418
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:58.602308"], ["updated_at", "2015-03-20 19:03:58.602308"]]
783419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783420
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783421
+  (0.5ms) rollback transaction
783422
+  (0.0ms) begin transaction
783423
+  (0.0ms) SAVEPOINT active_record_1
783424
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
783425
+ 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", "b0f948d6e5c601983c9fd6aa451776f5"], ["created_at", "2015-03-20 19:03:59.055033"], ["updated_at", "2015-03-20 19:03:59.055033"]]
783426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783427
+  (0.0ms) SAVEPOINT active_record_1
783428
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:59.056733"], ["updated_at", "2015-03-20 19:03:59.056733"]]
783429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783430
+  (0.5ms) rollback transaction
783431
+  (0.1ms) begin transaction
783432
+  (0.1ms) SAVEPOINT active_record_1
783433
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
783434
+ 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", "346122b37368d227839fc46dd7444a87"], ["created_at", "2015-03-20 19:03:59.483329"], ["updated_at", "2015-03-20 19:03:59.483329"]]
783435
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783436
+  (0.1ms) SAVEPOINT active_record_1
783437
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:59.485608"], ["updated_at", "2015-03-20 19:03:59.485608"]]
783438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783439
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783440
+ 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]]
783441
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783442
+ 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]]
783443
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783444
+  (0.4ms) rollback transaction
783445
+  (0.0ms) begin transaction
783446
+  (0.1ms) SAVEPOINT active_record_1
783447
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
783448
+ 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", "65c056fac7b0b1954f698958d86f18aa"], ["created_at", "2015-03-20 19:03:59.885143"], ["updated_at", "2015-03-20 19:03:59.885143"]]
783449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783450
+  (0.0ms) SAVEPOINT active_record_1
783451
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:59.886906"], ["updated_at", "2015-03-20 19:03:59.886906"]]
783452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783453
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783454
+ 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]]
783455
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
783456
+  (0.4ms) rollback transaction
783457
+  (0.1ms) begin transaction
783458
+  (0.0ms) rollback transaction
783459
+  (0.0ms) begin transaction
783460
+  (0.1ms) SAVEPOINT active_record_1
783461
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1858323117 LIMIT 1
783462
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1858323117], ["username", "jstrav"], ["access_token", "902e1dd25b88b7b490b7489b4e62179f"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.284983"], ["updated_at", "2015-03-20 19:04:00.284983"]]
783463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783464
+  (0.1ms) SAVEPOINT active_record_1
783465
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1476847343 LIMIT 1
783466
+ 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", -1476847343], ["username", "mary"], ["access_token", "4703f96356c4addc3b3b84dec8cbc276"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.288031"], ["updated_at", "2015-03-20 19:04:00.288031"]]
783467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783468
+  (0.0ms) SAVEPOINT active_record_1
783469
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1755034371 LIMIT 1
783470
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1755034371], ["username", "jstead"], ["access_token", "e367ddb65a559fe717133602b3901296"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.290911"], ["updated_at", "2015-03-20 19:04:00.290911"]]
783471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783472
+  (0.0ms) SAVEPOINT active_record_1
783473
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563198447 LIMIT 1
783474
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1563198447], ["username", "bigbear"], ["access_token", "f196c1ec5d59cb4bb223aeee6b350e24"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.293633"], ["updated_at", "2015-03-20 19:04:00.293633"]]
783475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783476
+  (0.0ms) SAVEPOINT active_record_1
783477
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%')
783478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783479
+ 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
783480
+  (0.4ms) rollback transaction
783481
+  (0.0ms) begin transaction
783482
+  (0.0ms) SAVEPOINT active_record_1
783483
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -849619715 LIMIT 1
783484
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -849619715], ["username", "jstrav"], ["access_token", "89f1186a2c978e0796d6cfd2485e4923"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.300264"], ["updated_at", "2015-03-20 19:04:00.300264"]]
783485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783486
+  (0.0ms) SAVEPOINT active_record_1
783487
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830409560 LIMIT 1
783488
+ 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", -1830409560], ["username", "mary"], ["access_token", "ecff53b106f703a8bc46a6c6ba719beb"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.303185"], ["updated_at", "2015-03-20 19:04:00.303185"]]
783489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783490
+  (0.0ms) SAVEPOINT active_record_1
783491
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1044900891 LIMIT 1
783492
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1044900891], ["username", "jstead"], ["access_token", "de3111d38fa35c55e98aac23825d2e29"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.306030"], ["updated_at", "2015-03-20 19:04:00.306030"]]
783493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783494
+  (0.0ms) SAVEPOINT active_record_1
783495
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -233453976 LIMIT 1
783496
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -233453976], ["username", "bigbear"], ["access_token", "58885406264b376eff608a6bed275211"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.308742"], ["updated_at", "2015-03-20 19:04:00.308742"]]
783497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783498
+  (0.0ms) SAVEPOINT active_record_1
783499
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%')
783500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783501
+ 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
783502
+  (0.4ms) rollback transaction
783503
+  (0.0ms) begin transaction
783504
+  (0.0ms) SAVEPOINT active_record_1
783505
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -94286494 LIMIT 1
783506
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -94286494], ["username", "jstrav"], ["access_token", "b9f99ffdbed26ca412412213e16b43e0"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.315421"], ["updated_at", "2015-03-20 19:04:00.315421"]]
783507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783508
+  (0.0ms) SAVEPOINT active_record_1
783509
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1558349176 LIMIT 1
783510
+ 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", -1558349176], ["username", "mary"], ["access_token", "28989d93b1bb77129f50c2868eb2cf82"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.318407"], ["updated_at", "2015-03-20 19:04:00.318407"]]
783511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783512
+  (0.0ms) SAVEPOINT active_record_1
783513
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1739521648 LIMIT 1
783514
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1739521648], ["username", "jstead"], ["access_token", "79837be11aa8edfdefb5ab720b72e608"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.321276"], ["updated_at", "2015-03-20 19:04:00.321276"]]
783515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783516
+  (0.0ms) SAVEPOINT active_record_1
783517
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -551423965 LIMIT 1
783518
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -551423965], ["username", "bigbear"], ["access_token", "1e34e928041861c0b1b97c1f6c898d3e"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.323830"], ["updated_at", "2015-03-20 19:04:00.323830"]]
783519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783520
+  (0.0ms) SAVEPOINT active_record_1
783521
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
783522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783523
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
783524
+  (0.4ms) rollback transaction
783525
+  (0.1ms) begin transaction
783526
+  (0.0ms) SAVEPOINT active_record_1
783527
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -168509459 LIMIT 1
783528
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -168509459], ["username", "jstrav"], ["access_token", "b4137ed33bae16e2abdfd03df88d4e2a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.330257"], ["updated_at", "2015-03-20 19:04:00.330257"]]
783529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783530
+  (0.1ms) SAVEPOINT active_record_1
783531
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1095245196 LIMIT 1
783532
+ 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", -1095245196], ["username", "mary"], ["access_token", "b18fddd6d3c73acfacc2843efb0ca831"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.332940"], ["updated_at", "2015-03-20 19:04:00.332940"]]
783533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783534
+  (0.0ms) SAVEPOINT active_record_1
783535
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416980685 LIMIT 1
783536
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1416980685], ["username", "jstead"], ["access_token", "3a6ad54687250ae600e2c4149b4f3e5f"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.335567"], ["updated_at", "2015-03-20 19:04:00.335567"]]
783537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783538
+  (0.0ms) SAVEPOINT active_record_1
783539
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -689162189 LIMIT 1
783540
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -689162189], ["username", "bigbear"], ["access_token", "b574410fd0f42e53d8880b998dd3492d"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.337994"], ["updated_at", "2015-03-20 19:04:00.337994"]]
783541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783542
+  (0.0ms) SAVEPOINT active_record_1
783543
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%')
783544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783545
+ 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
783546
+  (0.4ms) rollback transaction
783547
+  (0.0ms) begin transaction
783548
+  (0.0ms) SAVEPOINT active_record_1
783549
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -323556960 LIMIT 1
783550
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -323556960], ["username", "jstrav"], ["access_token", "2b3df45f1c25ad773014622439b8209e"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.343544"], ["updated_at", "2015-03-20 19:04:00.343544"]]
783551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783552
+  (0.0ms) SAVEPOINT active_record_1
783553
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112945172 LIMIT 1
783554
+ 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", -1112945172], ["username", "mary"], ["access_token", "8aa8efb6f39b1bde35392c3b7aeb1d5d"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.346402"], ["updated_at", "2015-03-20 19:04:00.346402"]]
783555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783556
+  (0.0ms) SAVEPOINT active_record_1
783557
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416202082 LIMIT 1
783558
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1416202082], ["username", "jstead"], ["access_token", "c6b5a1bbb62bc5612ee7fdb24dbfceec"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.349196"], ["updated_at", "2015-03-20 19:04:00.349196"]]
783559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783560
+  (0.1ms) SAVEPOINT active_record_1
783561
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -215335192 LIMIT 1
783562
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -215335192], ["username", "bigbear"], ["access_token", "23030e1a37feb03af64722eaf5aee6f0"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.351949"], ["updated_at", "2015-03-20 19:04:00.351949"]]
783563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783564
+  (0.0ms) SAVEPOINT active_record_1
783565
+  (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%')
783566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783567
+ 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
783568
+  (0.4ms) rollback transaction
783569
+  (0.1ms) begin transaction
783570
+  (0.0ms) SAVEPOINT active_record_1
783571
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77271420 LIMIT 1
783572
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -77271420], ["username", "jstrav"], ["access_token", "1492a48cacb6f380e45aa048c9df3f51"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.358862"], ["updated_at", "2015-03-20 19:04:00.358862"]]
783573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783574
+  (0.0ms) SAVEPOINT active_record_1
783575
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1191980278 LIMIT 1
783576
+ 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", -1191980278], ["username", "mary"], ["access_token", "e826af5e6d3467c64334615ea92d79ec"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.361817"], ["updated_at", "2015-03-20 19:04:00.361817"]]
783577
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783578
+  (0.0ms) SAVEPOINT active_record_1
783579
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370835751 LIMIT 1
783580
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -370835751], ["username", "jstead"], ["access_token", "7081ee0b957628503c7f915e9b7d1f0b"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.364882"], ["updated_at", "2015-03-20 19:04:00.364882"]]
783581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783582
+  (0.1ms) SAVEPOINT active_record_1
783583
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1956934833 LIMIT 1
783584
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1956934833], ["username", "bigbear"], ["access_token", "218ed6688c679bd6c44e9ebd31afaacc"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.367615"], ["updated_at", "2015-03-20 19:04:00.367615"]]
783585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783586
+  (0.0ms) SAVEPOINT active_record_1
783587
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
783588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783589
+ 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
783590
+  (0.4ms) rollback transaction
783591
+  (0.0ms) begin transaction
783592
+  (0.0ms) SAVEPOINT active_record_1
783593
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1162097023 LIMIT 1
783594
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1162097023], ["username", "jstrav"], ["access_token", "72628a59ccbf349e49d383e89d3a145a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.374020"], ["updated_at", "2015-03-20 19:04:00.374020"]]
783595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783596
+  (0.0ms) SAVEPOINT active_record_1
783597
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805253127 LIMIT 1
783598
+ 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", -805253127], ["username", "mary"], ["access_token", "6d98fbe7932660ecca3da13458856f72"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.377295"], ["updated_at", "2015-03-20 19:04:00.377295"]]
783599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783600
+  (0.0ms) SAVEPOINT active_record_1
783601
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -44439528 LIMIT 1
783602
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -44439528], ["username", "jstead"], ["access_token", "cdbe3b3ba235d4307ffa77b0c29f8043"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.380213"], ["updated_at", "2015-03-20 19:04:00.380213"]]
783603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783604
+  (0.0ms) SAVEPOINT active_record_1
783605
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1158915944 LIMIT 1
783606
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1158915944], ["username", "bigbear"], ["access_token", "f6e9d52ee7d677b1c594a824ecef7f76"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.382844"], ["updated_at", "2015-03-20 19:04:00.382844"]]
783607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783608
+  (0.0ms) SAVEPOINT active_record_1
783609
+  (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))
783610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783611
+ 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
783612
+  (0.4ms) rollback transaction
783613
+  (0.0ms) begin transaction
783614
+  (0.0ms) SAVEPOINT active_record_1
783615
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -721538395 LIMIT 1
783616
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -721538395], ["username", "jstrav"], ["access_token", "3fd46cfd1df82552234b96e660d63d08"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.389405"], ["updated_at", "2015-03-20 19:04:00.389405"]]
783617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783618
+  (0.0ms) SAVEPOINT active_record_1
783619
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1971143506 LIMIT 1
783620
+ 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", -1971143506], ["username", "mary"], ["access_token", "d9665ba8678d2df559e6e8bdbb0e6cb6"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.392147"], ["updated_at", "2015-03-20 19:04:00.392147"]]
783621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783622
+  (0.1ms) SAVEPOINT active_record_1
783623
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1709732975 LIMIT 1
783624
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1709732975], ["username", "jstead"], ["access_token", "babd6f1b0661777abcb17e0ddde1a8f2"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.394852"], ["updated_at", "2015-03-20 19:04:00.394852"]]
783625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783626
+  (0.0ms) SAVEPOINT active_record_1
783627
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -298264685 LIMIT 1
783628
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -298264685], ["username", "bigbear"], ["access_token", "2784d8b46c7798f3361dd0b00799011d"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.397115"], ["updated_at", "2015-03-20 19:04:00.397115"]]
783629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783630
+  (0.0ms) SAVEPOINT active_record_1
783631
+  (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))
783632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783633
+ OpenStax::Accounts::Account Load (0.2ms) 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
783634
+  (0.4ms) rollback transaction
783635
+  (0.1ms) begin transaction
783636
+  (0.0ms) SAVEPOINT active_record_1
783637
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -19876728 LIMIT 1
783638
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -19876728], ["username", "jstrav"], ["access_token", "91d33b27a8678388d8325c302ccb9504"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.403745"], ["updated_at", "2015-03-20 19:04:00.403745"]]
783639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783640
+  (0.0ms) SAVEPOINT active_record_1
783641
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -552324003 LIMIT 1
783642
+ 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", -552324003], ["username", "mary"], ["access_token", "ec533882ea5ac36906fb60d751be652f"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.406501"], ["updated_at", "2015-03-20 19:04:00.406501"]]
783643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783644
+  (0.0ms) SAVEPOINT active_record_1
783645
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -630867191 LIMIT 1
783646
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -630867191], ["username", "jstead"], ["access_token", "993f739a1febfdf0fbf3e17656ec4ffe"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.409230"], ["updated_at", "2015-03-20 19:04:00.409230"]]
783647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783648
+  (0.0ms) SAVEPOINT active_record_1
783649
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -675944640 LIMIT 1
783650
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -675944640], ["username", "bigbear"], ["access_token", "1346e50a07066c011bfe5e1c62ab9d38"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.412389"], ["updated_at", "2015-03-20 19:04:00.412389"]]
783651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783652
+  (0.0ms) SAVEPOINT active_record_1
783653
+  (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))
783654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783655
+ 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
783656
+  (0.4ms) rollback transaction
783657
+  (0.0ms) begin transaction
783658
+  (0.0ms) SAVEPOINT active_record_1
783659
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1578569997 LIMIT 1
783660
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1578569997], ["username", "jstrav"], ["access_token", "52faf7c38aa800bd3c7e252abfaae3d6"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.419445"], ["updated_at", "2015-03-20 19:04:00.419445"]]
783661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783662
+  (0.0ms) SAVEPOINT active_record_1
783663
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -16044988 LIMIT 1
783664
+ 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", -16044988], ["username", "mary"], ["access_token", "803041b3824778bb5dec691a27eef38a"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.422214"], ["updated_at", "2015-03-20 19:04:00.422214"]]
783665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783666
+  (0.0ms) SAVEPOINT active_record_1
783667
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1621315694 LIMIT 1
783668
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1621315694], ["username", "jstead"], ["access_token", "d4936fe0a871680e17bd04ffb6d044cd"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.424845"], ["updated_at", "2015-03-20 19:04:00.424845"]]
783669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783670
+  (0.0ms) SAVEPOINT active_record_1
783671
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205339906 LIMIT 1
783672
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -205339906], ["username", "bigbear"], ["access_token", "03a3a9e00b60204d5d03d03dfbc348f2"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.427282"], ["updated_at", "2015-03-20 19:04:00.427282"]]
783673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783674
+  (0.0ms) SAVEPOINT active_record_1
783675
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%')
783676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783677
+ 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
783678
+  (0.4ms) rollback transaction
783679
+  (0.0ms) begin transaction
783680
+  (0.1ms) SAVEPOINT active_record_1
783681
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -669986965 LIMIT 1
783682
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -669986965], ["username", "jstrav"], ["access_token", "8397bf209728fe05446b1ed242d7d9ee"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.433752"], ["updated_at", "2015-03-20 19:04:00.433752"]]
783683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783684
+  (0.1ms) SAVEPOINT active_record_1
783685
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1961179545 LIMIT 1
783686
+ 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", -1961179545], ["username", "mary"], ["access_token", "d5c05424a42ac177deb30df6fbd7f66f"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.436657"], ["updated_at", "2015-03-20 19:04:00.436657"]]
783687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783688
+  (0.0ms) SAVEPOINT active_record_1
783689
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -319069753 LIMIT 1
783690
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -319069753], ["username", "jstead"], ["access_token", "787e17a739a3ab8ffdce3ba300ba1eaf"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.439484"], ["updated_at", "2015-03-20 19:04:00.439484"]]
783691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783692
+  (0.1ms) SAVEPOINT active_record_1
783693
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1967634542 LIMIT 1
783694
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1967634542], ["username", "bigbear"], ["access_token", "d65a2ba572eed81442ee2c71856bbf47"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.442056"], ["updated_at", "2015-03-20 19:04:00.442056"]]
783695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783696
+  (0.0ms) SAVEPOINT active_record_1
783697
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1946126441 LIMIT 1
783698
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1946126441], ["username", "billy_00"], ["access_token", "2311e0c03d129f0389b717addf44f13b"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.444636"], ["updated_at", "2015-03-20 19:04:00.444636"]]
783699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783700
+  (0.0ms) SAVEPOINT active_record_1
783701
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -380042429 LIMIT 1
783702
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -380042429], ["username", "billy_01"], ["access_token", "6da53d2c9a65d2281207306a5b9344ce"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.447180"], ["updated_at", "2015-03-20 19:04:00.447180"]]
783703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783704
+  (0.0ms) SAVEPOINT active_record_1
783705
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -381366816 LIMIT 1
783706
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -381366816], ["username", "billy_02"], ["access_token", "80dccb1faac7d15ce0d37d5eb3a04857"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.449718"], ["updated_at", "2015-03-20 19:04:00.449718"]]
783707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783708
+  (0.0ms) SAVEPOINT active_record_1
783709
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1809202236 LIMIT 1
783710
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1809202236], ["username", "billy_03"], ["access_token", "a689793d176cdfd5afe33802b6ccf787"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.452377"], ["updated_at", "2015-03-20 19:04:00.452377"]]
783711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783712
+  (0.0ms) SAVEPOINT active_record_1
783713
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1712307823 LIMIT 1
783714
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1712307823], ["username", "billy_04"], ["access_token", "ffc744ad78ac8128da047ec7b91410e3"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.454972"], ["updated_at", "2015-03-20 19:04:00.454972"]]
783715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783716
+  (0.0ms) SAVEPOINT active_record_1
783717
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -810946039 LIMIT 1
783718
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -810946039], ["username", "billy_05"], ["access_token", "696adb1818103440f8608d8b7dc76d6b"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.457391"], ["updated_at", "2015-03-20 19:04:00.457391"]]
783719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783720
+  (0.0ms) SAVEPOINT active_record_1
783721
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -558846498 LIMIT 1
783722
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -558846498], ["username", "billy_06"], ["access_token", "d3a84b58ca37e6fc82832dd06972119c"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.460054"], ["updated_at", "2015-03-20 19:04:00.460054"]]
783723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783724
+  (0.1ms) SAVEPOINT active_record_1
783725
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -317271392 LIMIT 1
783726
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -317271392], ["username", "billy_07"], ["access_token", "8e67afc00d020f735f48e24a4555332a"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.462794"], ["updated_at", "2015-03-20 19:04:00.462794"]]
783727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783728
+  (0.0ms) SAVEPOINT active_record_1
783729
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -775387432 LIMIT 1
783730
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -775387432], ["username", "billy_08"], ["access_token", "c71262656cf225f3d826e9862c9c6fd1"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.465210"], ["updated_at", "2015-03-20 19:04:00.465210"]]
783731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783732
+  (0.0ms) SAVEPOINT active_record_1
783733
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -321998333 LIMIT 1
783734
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -321998333], ["username", "billy_09"], ["access_token", "5a2f205ac3eca16bf2495e50ff81e6a8"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.467568"], ["updated_at", "2015-03-20 19:04:00.467568"]]
783735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783736
+  (0.0ms) SAVEPOINT active_record_1
783737
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -914864586 LIMIT 1
783738
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -914864586], ["username", "billy_10"], ["access_token", "77546e98e70b264b3e366a0c497dc787"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.469939"], ["updated_at", "2015-03-20 19:04:00.469939"]]
783739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783740
+  (0.0ms) SAVEPOINT active_record_1
783741
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1542372070 LIMIT 1
783742
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1542372070], ["username", "billy_11"], ["access_token", "af0ee76271cb3e64f1fc6299e1abca18"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.472218"], ["updated_at", "2015-03-20 19:04:00.472218"]]
783743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783744
+  (0.1ms) SAVEPOINT active_record_1
783745
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1065460945 LIMIT 1
783746
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1065460945], ["username", "billy_12"], ["access_token", "11f6c8e59cb57d76970234ab35744d7f"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.474578"], ["updated_at", "2015-03-20 19:04:00.474578"]]
783747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783748
+  (0.0ms) SAVEPOINT active_record_1
783749
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1146550521 LIMIT 1
783750
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1146550521], ["username", "billy_13"], ["access_token", "987800c78fba3f609a6be0d8efc987bf"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.477056"], ["updated_at", "2015-03-20 19:04:00.477056"]]
783751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783752
+  (0.0ms) SAVEPOINT active_record_1
783753
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -6821219 LIMIT 1
783754
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -6821219], ["username", "billy_14"], ["access_token", "6c8c40a764bb523a8ddb13d624c7e7d5"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.479331"], ["updated_at", "2015-03-20 19:04:00.479331"]]
783755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783756
+  (0.0ms) SAVEPOINT active_record_1
783757
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1686875298 LIMIT 1
783758
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1686875298], ["username", "billy_15"], ["access_token", "89bbb84df1de86144770436ba4a1cf43"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.481627"], ["updated_at", "2015-03-20 19:04:00.481627"]]
783759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783760
+  (0.0ms) SAVEPOINT active_record_1
783761
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1724921480 LIMIT 1
783762
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1724921480], ["username", "billy_16"], ["access_token", "da074349ddcc5c37e98f5baa8b96c57d"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.483923"], ["updated_at", "2015-03-20 19:04:00.483923"]]
783763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783764
+  (0.0ms) SAVEPOINT active_record_1
783765
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1003110462 LIMIT 1
783766
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1003110462], ["username", "billy_17"], ["access_token", "3158e506dd3d80196703b535e50428ec"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.486727"], ["updated_at", "2015-03-20 19:04:00.486727"]]
783767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783768
+  (0.0ms) SAVEPOINT active_record_1
783769
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1363034782 LIMIT 1
783770
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1363034782], ["username", "billy_18"], ["access_token", "de2587bfd9c77f5d626843d87f065959"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.488994"], ["updated_at", "2015-03-20 19:04:00.488994"]]
783771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783772
+  (0.0ms) SAVEPOINT active_record_1
783773
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2040480131 LIMIT 1
783774
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2040480131], ["username", "billy_19"], ["access_token", "dfa891babfe997bd2c143640dae91f61"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.491310"], ["updated_at", "2015-03-20 19:04:00.491310"]]
783775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783776
+  (0.0ms) SAVEPOINT active_record_1
783777
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -432581727 LIMIT 1
783778
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -432581727], ["username", "billy_20"], ["access_token", "38e48edd0ab00e9a8388938677f8fa23"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.493549"], ["updated_at", "2015-03-20 19:04:00.493549"]]
783779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783780
+  (0.0ms) SAVEPOINT active_record_1
783781
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -198001380 LIMIT 1
783782
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -198001380], ["username", "billy_21"], ["access_token", "71ac74fafce2a3b441b67d14d5248c20"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.495835"], ["updated_at", "2015-03-20 19:04:00.495835"]]
783783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783784
+  (0.0ms) SAVEPOINT active_record_1
783785
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1953425306 LIMIT 1
783786
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1953425306], ["username", "billy_22"], ["access_token", "92616ddd1c47058240a01b0d700f925b"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.498043"], ["updated_at", "2015-03-20 19:04:00.498043"]]
783787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783788
+  (0.0ms) SAVEPOINT active_record_1
783789
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -159024232 LIMIT 1
783790
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -159024232], ["username", "billy_23"], ["access_token", "e1a31757f2b2b8860ce5cd3efe29893d"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.500110"], ["updated_at", "2015-03-20 19:04:00.500110"]]
783791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783792
+  (0.0ms) SAVEPOINT active_record_1
783793
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1374976812 LIMIT 1
783794
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1374976812], ["username", "billy_24"], ["access_token", "75520e6d941210cb092417b9e2924dfe"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.502220"], ["updated_at", "2015-03-20 19:04:00.502220"]]
783795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783796
+  (0.0ms) SAVEPOINT active_record_1
783797
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1762270972 LIMIT 1
783798
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1762270972], ["username", "billy_25"], ["access_token", "85549e8e5fa33300cbb80bdc5634bcdb"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.504307"], ["updated_at", "2015-03-20 19:04:00.504307"]]
783799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783800
+  (0.0ms) SAVEPOINT active_record_1
783801
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185429930 LIMIT 1
783802
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1185429930], ["username", "billy_26"], ["access_token", "eb4673d546ef9f34e282082d56121444"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.506371"], ["updated_at", "2015-03-20 19:04:00.506371"]]
783803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783804
+  (0.0ms) SAVEPOINT active_record_1
783805
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1522480857 LIMIT 1
783806
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1522480857], ["username", "billy_27"], ["access_token", "81537677a3c7725ac95115ddb0118b1c"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.508451"], ["updated_at", "2015-03-20 19:04:00.508451"]]
783807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783808
+  (0.0ms) SAVEPOINT active_record_1
783809
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -51666722 LIMIT 1
783810
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -51666722], ["username", "billy_28"], ["access_token", "ca6bb9088cd8ecd1291c749bdb9767bc"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.510493"], ["updated_at", "2015-03-20 19:04:00.510493"]]
783811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783812
+  (0.0ms) SAVEPOINT active_record_1
783813
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1332045948 LIMIT 1
783814
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1332045948], ["username", "billy_29"], ["access_token", "b2e7571a300a27959e8c4081ccfac13e"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.512513"], ["updated_at", "2015-03-20 19:04:00.512513"]]
783815
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783816
+  (0.0ms) SAVEPOINT active_record_1
783817
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -834286338 LIMIT 1
783818
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -834286338], ["username", "billy_30"], ["access_token", "d98a8894d0a090c03a8bd03baf4a20cd"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.514605"], ["updated_at", "2015-03-20 19:04:00.514605"]]
783819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783820
+  (0.0ms) SAVEPOINT active_record_1
783821
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -610752130 LIMIT 1
783822
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -610752130], ["username", "billy_31"], ["access_token", "53913696492c74ba6b8410245cd2b6bc"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.516652"], ["updated_at", "2015-03-20 19:04:00.516652"]]
783823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783824
+  (0.0ms) SAVEPOINT active_record_1
783825
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1131670417 LIMIT 1
783826
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1131670417], ["username", "billy_32"], ["access_token", "78756066773e4b0b44f51937efa39618"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.528639"], ["updated_at", "2015-03-20 19:04:00.528639"]]
783827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783828
+  (0.0ms) SAVEPOINT active_record_1
783829
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1487036246 LIMIT 1
783830
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1487036246], ["username", "billy_33"], ["access_token", "50690b1691a05d4f5604f664a1f32591"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.530875"], ["updated_at", "2015-03-20 19:04:00.530875"]]
783831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783832
+  (0.0ms) SAVEPOINT active_record_1
783833
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000965945 LIMIT 1
783834
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2000965945], ["username", "billy_34"], ["access_token", "b32d7884ae96d072401362e213e2248f"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.532962"], ["updated_at", "2015-03-20 19:04:00.532962"]]
783835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783836
+  (0.0ms) SAVEPOINT active_record_1
783837
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -611701099 LIMIT 1
783838
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -611701099], ["username", "billy_35"], ["access_token", "bc29f7da1bdcee7837d7a8813081f5d1"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.535063"], ["updated_at", "2015-03-20 19:04:00.535063"]]
783839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783840
+  (0.1ms) SAVEPOINT active_record_1
783841
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -613804508 LIMIT 1
783842
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -613804508], ["username", "billy_36"], ["access_token", "4802c668273bd4380b5a1d730bfc3f15"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.537204"], ["updated_at", "2015-03-20 19:04:00.537204"]]
783843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783844
+  (0.0ms) SAVEPOINT active_record_1
783845
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -262663644 LIMIT 1
783846
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -262663644], ["username", "billy_37"], ["access_token", "56a20be3380edf8369c8501f40c56c47"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.539350"], ["updated_at", "2015-03-20 19:04:00.539350"]]
783847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783848
+  (0.0ms) SAVEPOINT active_record_1
783849
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -361655343 LIMIT 1
783850
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -361655343], ["username", "billy_38"], ["access_token", "06ae1e299974339c030fe1cb6c3f59ff"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.541544"], ["updated_at", "2015-03-20 19:04:00.541544"]]
783851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783852
+  (0.0ms) SAVEPOINT active_record_1
783853
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370741163 LIMIT 1
783854
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -370741163], ["username", "billy_39"], ["access_token", "4ca71798fd52a4350ac0644aaec69992"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.543622"], ["updated_at", "2015-03-20 19:04:00.543622"]]
783855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783856
+  (0.0ms) SAVEPOINT active_record_1
783857
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -359489875 LIMIT 1
783858
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -359489875], ["username", "billy_40"], ["access_token", "ee7618cd71e41930c8436aeb5fc61c75"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.545781"], ["updated_at", "2015-03-20 19:04:00.545781"]]
783859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783860
+  (0.0ms) SAVEPOINT active_record_1
783861
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -204143736 LIMIT 1
783862
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -204143736], ["username", "billy_41"], ["access_token", "f1b50411d461103b92196e8813508e9d"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.547921"], ["updated_at", "2015-03-20 19:04:00.547921"]]
783863
+  (0.1ms) RELEASE SAVEPOINT active_record_1
783864
+  (0.0ms) SAVEPOINT active_record_1
783865
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1213087588 LIMIT 1
783866
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1213087588], ["username", "billy_42"], ["access_token", "dfe2e7520a2ff831f0e1a1cf8ddc308a"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.550005"], ["updated_at", "2015-03-20 19:04:00.550005"]]
783867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783868
+  (0.0ms) SAVEPOINT active_record_1
783869
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1715421519 LIMIT 1
783870
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1715421519], ["username", "billy_43"], ["access_token", "1bcb402b3b33e71288c20044abdcd618"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.552190"], ["updated_at", "2015-03-20 19:04:00.552190"]]
783871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783872
+  (0.0ms) SAVEPOINT active_record_1
783873
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1102096926 LIMIT 1
783874
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1102096926], ["username", "billy_44"], ["access_token", "cac072d96f25123a958641439ed98608"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.554373"], ["updated_at", "2015-03-20 19:04:00.554373"]]
783875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783876
+  (0.0ms) SAVEPOINT active_record_1
783877
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -133204635 LIMIT 1
783878
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -133204635], ["username", "billy_45"], ["access_token", "14e7071f4d9df5320059df98fb5ef530"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.556503"], ["updated_at", "2015-03-20 19:04:00.556503"]]
783879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783880
+  (0.1ms) SAVEPOINT active_record_1
783881
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
783882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783883
+ 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
783884
+ 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
783885
+  (0.4ms) rollback transaction
783886
+  (0.0ms) begin transaction
783887
+  (0.0ms) SAVEPOINT active_record_1
783888
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1888825225 LIMIT 1
783889
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1888825225], ["username", "jstrav"], ["access_token", "13e2ce89f2c0c6737b0214e02460436a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.567327"], ["updated_at", "2015-03-20 19:04:00.567327"]]
783890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783891
+  (0.0ms) SAVEPOINT active_record_1
783892
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -653875343 LIMIT 1
783893
+ 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", -653875343], ["username", "mary"], ["access_token", "cfe80dda0368eadcb04456d47c64bdc2"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.569845"], ["updated_at", "2015-03-20 19:04:00.569845"]]
783894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783895
+  (0.0ms) SAVEPOINT active_record_1
783896
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -12440421 LIMIT 1
783897
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -12440421], ["username", "jstead"], ["access_token", "ce4e9f9f5affab964d1b19d6bdad70a0"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.572433"], ["updated_at", "2015-03-20 19:04:00.572433"]]
783898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783899
+  (0.0ms) SAVEPOINT active_record_1
783900
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1441612353 LIMIT 1
783901
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1441612353], ["username", "bigbear"], ["access_token", "b6c77bb39936976ca28ed56813befb51"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.574703"], ["updated_at", "2015-03-20 19:04:00.574703"]]
783902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783903
+  (0.0ms) SAVEPOINT active_record_1
783904
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1470890329 LIMIT 1
783905
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1470890329], ["username", "billy_00"], ["access_token", "9fa1ae31e81d441ca7f3ae3093dbfddb"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.577164"], ["updated_at", "2015-03-20 19:04:00.577164"]]
783906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783907
+  (0.0ms) SAVEPOINT active_record_1
783908
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -74156630 LIMIT 1
783909
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -74156630], ["username", "billy_01"], ["access_token", "4ac69a4b2adff8f9a1c8102081001926"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.579540"], ["updated_at", "2015-03-20 19:04:00.579540"]]
783910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783911
+  (0.0ms) SAVEPOINT active_record_1
783912
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936396882 LIMIT 1
783913
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1936396882], ["username", "billy_02"], ["access_token", "b84262ab3f957f5aab3f1d08a303256a"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.581871"], ["updated_at", "2015-03-20 19:04:00.581871"]]
783914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783915
+  (0.1ms) SAVEPOINT active_record_1
783916
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1909140987 LIMIT 1
783917
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1909140987], ["username", "billy_03"], ["access_token", "693266e2764dce837a5cb4a5c9672d2c"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.584231"], ["updated_at", "2015-03-20 19:04:00.584231"]]
783918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783919
+  (0.0ms) SAVEPOINT active_record_1
783920
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005880819 LIMIT 1
783921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1005880819], ["username", "billy_04"], ["access_token", "e44434b12ecbb85d5508ecfd7a65c2a9"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.586543"], ["updated_at", "2015-03-20 19:04:00.586543"]]
783922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783923
+  (0.0ms) SAVEPOINT active_record_1
783924
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -431339024 LIMIT 1
783925
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -431339024], ["username", "billy_05"], ["access_token", "633e7039b9350353af7a63a48ec14369"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.588750"], ["updated_at", "2015-03-20 19:04:00.588750"]]
783926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783927
+  (0.0ms) SAVEPOINT active_record_1
783928
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1222336263 LIMIT 1
783929
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1222336263], ["username", "billy_06"], ["access_token", "63c5a2ba3dd3783cdfd6f02f41844bb7"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.590889"], ["updated_at", "2015-03-20 19:04:00.590889"]]
783930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783931
+  (0.0ms) SAVEPOINT active_record_1
783932
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1597510029 LIMIT 1
783933
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1597510029], ["username", "billy_07"], ["access_token", "c0511d90f326f83424b1241a3c33e950"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.593017"], ["updated_at", "2015-03-20 19:04:00.593017"]]
783934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783935
+  (0.0ms) SAVEPOINT active_record_1
783936
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1851099252 LIMIT 1
783937
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1851099252], ["username", "billy_08"], ["access_token", "7bbb801caa83624877db5775d45086cf"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.595287"], ["updated_at", "2015-03-20 19:04:00.595287"]]
783938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783939
+  (0.0ms) SAVEPOINT active_record_1
783940
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167064660 LIMIT 1
783941
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -167064660], ["username", "billy_09"], ["access_token", "0afc0cd6a3ac9d7b0922ae42a1c776a2"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.597446"], ["updated_at", "2015-03-20 19:04:00.597446"]]
783942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783943
+  (0.1ms) SAVEPOINT active_record_1
783944
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -170264506 LIMIT 1
783945
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -170264506], ["username", "billy_10"], ["access_token", "1971126be8c8d2d327e76f0697ed60b5"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.599577"], ["updated_at", "2015-03-20 19:04:00.599577"]]
783946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783947
+  (0.0ms) SAVEPOINT active_record_1
783948
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -763811335 LIMIT 1
783949
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -763811335], ["username", "billy_11"], ["access_token", "7b7a5c7f0326d25de189539efe75ecc9"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.601831"], ["updated_at", "2015-03-20 19:04:00.601831"]]
783950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783951
+  (0.0ms) SAVEPOINT active_record_1
783952
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1825638194 LIMIT 1
783953
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1825638194], ["username", "billy_12"], ["access_token", "1e031e143100cb5ad8e9fc396269e67a"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.604120"], ["updated_at", "2015-03-20 19:04:00.604120"]]
783954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783955
+  (0.0ms) SAVEPOINT active_record_1
783956
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1694560357 LIMIT 1
783957
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1694560357], ["username", "billy_13"], ["access_token", "9e648c02159a7fd1867424ef878fbcb8"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.606342"], ["updated_at", "2015-03-20 19:04:00.606342"]]
783958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783959
+  (0.0ms) SAVEPOINT active_record_1
783960
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1268091116 LIMIT 1
783961
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1268091116], ["username", "billy_14"], ["access_token", "bc8189478de864d4d382c149eb15d082"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.609677"], ["updated_at", "2015-03-20 19:04:00.609677"]]
783962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783963
+  (0.0ms) SAVEPOINT active_record_1
783964
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197788014 LIMIT 1
783965
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1197788014], ["username", "billy_15"], ["access_token", "3cc9e0afdb99a6eb4ffc0e0ffd0bd63d"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.613757"], ["updated_at", "2015-03-20 19:04:00.613757"]]
783966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783967
+  (0.0ms) SAVEPOINT active_record_1
783968
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1241387580 LIMIT 1
783969
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1241387580], ["username", "billy_16"], ["access_token", "b82eb1eb3d470ebe1b0f23a2fa9e5c39"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.618260"], ["updated_at", "2015-03-20 19:04:00.618260"]]
783970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783971
+  (0.0ms) SAVEPOINT active_record_1
783972
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886455148 LIMIT 1
783973
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -886455148], ["username", "billy_17"], ["access_token", "ebe847be168a02c0309c03b9b90b4c1f"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.622306"], ["updated_at", "2015-03-20 19:04:00.622306"]]
783974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783975
+  (0.0ms) SAVEPOINT active_record_1
783976
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141182577 LIMIT 1
783977
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1141182577], ["username", "billy_18"], ["access_token", "832ffe178ffeaceca47df8e0618b6f72"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.624884"], ["updated_at", "2015-03-20 19:04:00.624884"]]
783978
+  (0.3ms) RELEASE SAVEPOINT active_record_1
783979
+  (0.0ms) SAVEPOINT active_record_1
783980
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -599517693 LIMIT 1
783981
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -599517693], ["username", "billy_19"], ["access_token", "efcb5fe9aa70fbc7922eef9015e6df0f"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.628639"], ["updated_at", "2015-03-20 19:04:00.628639"]]
783982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783983
+  (0.0ms) SAVEPOINT active_record_1
783984
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1172055213 LIMIT 1
783985
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1172055213], ["username", "billy_20"], ["access_token", "a9579ee9c39b815eefce2e7dc18f9184"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.631058"], ["updated_at", "2015-03-20 19:04:00.631058"]]
783986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783987
+  (0.0ms) SAVEPOINT active_record_1
783988
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -375233066 LIMIT 1
783989
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -375233066], ["username", "billy_21"], ["access_token", "59104e699d3f754c6da50049b2756910"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.633408"], ["updated_at", "2015-03-20 19:04:00.633408"]]
783990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783991
+  (0.1ms) SAVEPOINT active_record_1
783992
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -476526756 LIMIT 1
783993
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -476526756], ["username", "billy_22"], ["access_token", "5d0090c783678a6348f9af7d72a28799"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.635914"], ["updated_at", "2015-03-20 19:04:00.635914"]]
783994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783995
+  (0.0ms) SAVEPOINT active_record_1
783996
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1232436581 LIMIT 1
783997
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1232436581], ["username", "billy_23"], ["access_token", "e98056f366c88af84e86f596afacc0fe"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.638569"], ["updated_at", "2015-03-20 19:04:00.638569"]]
783998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783999
+  (0.0ms) SAVEPOINT active_record_1
784000
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -290752405 LIMIT 1
784001
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -290752405], ["username", "billy_24"], ["access_token", "da2d6229e9a1323c0610559015776103"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.641433"], ["updated_at", "2015-03-20 19:04:00.641433"]]
784002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784003
+  (0.0ms) SAVEPOINT active_record_1
784004
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -274987258 LIMIT 1
784005
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -274987258], ["username", "billy_25"], ["access_token", "5b4261fcd58920ab21911b3aa2189300"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.643879"], ["updated_at", "2015-03-20 19:04:00.643879"]]
784006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784007
+  (0.0ms) SAVEPOINT active_record_1
784008
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1562431531 LIMIT 1
784009
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1562431531], ["username", "billy_26"], ["access_token", "a69ae0c74f6ee876a4d75bfa76186407"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.646382"], ["updated_at", "2015-03-20 19:04:00.646382"]]
784010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784011
+  (0.0ms) SAVEPOINT active_record_1
784012
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -273178467 LIMIT 1
784013
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -273178467], ["username", "billy_27"], ["access_token", "0e8ccdcc70d3cca8b7cc01f3cb1e7697"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.648892"], ["updated_at", "2015-03-20 19:04:00.648892"]]
784014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784015
+  (0.0ms) SAVEPOINT active_record_1
784016
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1767570235 LIMIT 1
784017
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1767570235], ["username", "billy_28"], ["access_token", "bad0bae84aa17d76a8fad5ac1c739986"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.651253"], ["updated_at", "2015-03-20 19:04:00.651253"]]
784018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784019
+  (0.0ms) SAVEPOINT active_record_1
784020
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -561004958 LIMIT 1
784021
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -561004958], ["username", "billy_29"], ["access_token", "0e63817edb5c5a0557b8aabe98269370"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.653625"], ["updated_at", "2015-03-20 19:04:00.653625"]]
784022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784023
+  (0.0ms) SAVEPOINT active_record_1
784024
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -790948698 LIMIT 1
784025
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -790948698], ["username", "billy_30"], ["access_token", "491e6c5edfa33ac224b87938d1ad6022"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.663365"], ["updated_at", "2015-03-20 19:04:00.663365"]]
784026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784027
+  (0.0ms) SAVEPOINT active_record_1
784028
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1984178457 LIMIT 1
784029
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1984178457], ["username", "billy_31"], ["access_token", "a674367bb61cf2c6f581580b342e3329"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.666080"], ["updated_at", "2015-03-20 19:04:00.666080"]]
784030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784031
+  (0.0ms) SAVEPOINT active_record_1
784032
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -559258388 LIMIT 1
784033
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -559258388], ["username", "billy_32"], ["access_token", "ab84c9e8859f5691ac0680eefce87ec2"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.668515"], ["updated_at", "2015-03-20 19:04:00.668515"]]
784034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784035
+  (0.0ms) SAVEPOINT active_record_1
784036
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -542934629 LIMIT 1
784037
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -542934629], ["username", "billy_33"], ["access_token", "79701f1d190fda02c770bcea59e0d385"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.670951"], ["updated_at", "2015-03-20 19:04:00.670951"]]
784038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784039
+  (0.1ms) SAVEPOINT active_record_1
784040
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -711790219 LIMIT 1
784041
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -711790219], ["username", "billy_34"], ["access_token", "04a80ef095093132bbaee0d373238deb"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.673335"], ["updated_at", "2015-03-20 19:04:00.673335"]]
784042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784043
+  (0.0ms) SAVEPOINT active_record_1
784044
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1772791298 LIMIT 1
784045
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1772791298], ["username", "billy_35"], ["access_token", "eee9735771c5b8352661451384315458"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.675643"], ["updated_at", "2015-03-20 19:04:00.675643"]]
784046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784047
+  (0.0ms) SAVEPOINT active_record_1
784048
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -722256274 LIMIT 1
784049
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -722256274], ["username", "billy_36"], ["access_token", "5070b8cfcaf8cd790862458cff559559"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.677939"], ["updated_at", "2015-03-20 19:04:00.677939"]]
784050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784051
+  (0.0ms) SAVEPOINT active_record_1
784052
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -985206545 LIMIT 1
784053
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -985206545], ["username", "billy_37"], ["access_token", "c0e57973c3961f3cdf6c83366e1aad26"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.680260"], ["updated_at", "2015-03-20 19:04:00.680260"]]
784054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784055
+  (0.0ms) SAVEPOINT active_record_1
784056
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1398459975 LIMIT 1
784057
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1398459975], ["username", "billy_38"], ["access_token", "6c9a1d403ba110eacbd12b4ee7e0a0cf"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.682487"], ["updated_at", "2015-03-20 19:04:00.682487"]]
784058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784059
+  (0.0ms) SAVEPOINT active_record_1
784060
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1788309524 LIMIT 1
784061
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1788309524], ["username", "billy_39"], ["access_token", "5de8a5e41efed785fe45533398f18dec"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.685045"], ["updated_at", "2015-03-20 19:04:00.685045"]]
784062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784063
+  (0.0ms) SAVEPOINT active_record_1
784064
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1646768315 LIMIT 1
784065
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1646768315], ["username", "billy_40"], ["access_token", "d0bc54c42aca85ecea25f22c38ddb372"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.687591"], ["updated_at", "2015-03-20 19:04:00.687591"]]
784066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784067
+  (0.0ms) SAVEPOINT active_record_1
784068
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -725582578 LIMIT 1
784069
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -725582578], ["username", "billy_41"], ["access_token", "cab8dc98f6fcb8603bab0267e05a42b0"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.690263"], ["updated_at", "2015-03-20 19:04:00.690263"]]
784070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784071
+  (0.0ms) SAVEPOINT active_record_1
784072
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -106040578 LIMIT 1
784073
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -106040578], ["username", "billy_42"], ["access_token", "7817889e1045cf9c79ddadaf25ce11ff"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.692948"], ["updated_at", "2015-03-20 19:04:00.692948"]]
784074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784075
+  (0.0ms) SAVEPOINT active_record_1
784076
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1599346051 LIMIT 1
784077
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1599346051], ["username", "billy_43"], ["access_token", "9ddad8b77d3d8c59dd83371b071f5ea6"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.695483"], ["updated_at", "2015-03-20 19:04:00.695483"]]
784078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784079
+  (0.0ms) SAVEPOINT active_record_1
784080
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428203566 LIMIT 1
784081
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1428203566], ["username", "billy_44"], ["access_token", "a29204eee1a7c922df361e90bf4c0e94"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.697939"], ["updated_at", "2015-03-20 19:04:00.697939"]]
784082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784083
+  (0.0ms) SAVEPOINT active_record_1
784084
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1294755087 LIMIT 1
784085
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1294755087], ["username", "billy_45"], ["access_token", "25357c07ddd1acabc5d3fa3e5b6a307f"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.700411"], ["updated_at", "2015-03-20 19:04:00.700411"]]
784086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784087
+  (0.0ms) SAVEPOINT active_record_1
784088
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
784089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784090
+ 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
784091
+ 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
784092
+ 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
784093
+  (0.4ms) rollback transaction
784094
+  (0.1ms) begin transaction
784095
+  (0.0ms) SAVEPOINT active_record_1
784096
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -530354283 LIMIT 1
784097
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -530354283], ["username", "jstrav"], ["access_token", "cfcc0a701584f58b38cb26b682ddb3e3"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.712006"], ["updated_at", "2015-03-20 19:04:00.712006"]]
784098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784099
+  (0.0ms) SAVEPOINT active_record_1
784100
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219205054 LIMIT 1
784101
+ 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", -1219205054], ["username", "mary"], ["access_token", "1422fbe5522803773dcc41e889194c10"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.714749"], ["updated_at", "2015-03-20 19:04:00.714749"]]
784102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784103
+  (0.0ms) SAVEPOINT active_record_1
784104
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1001769192 LIMIT 1
784105
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1001769192], ["username", "jstead"], ["access_token", "fcefabeec4765850c920236ffae412f7"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.717465"], ["updated_at", "2015-03-20 19:04:00.717465"]]
784106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784107
+  (0.0ms) SAVEPOINT active_record_1
784108
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -197818680 LIMIT 1
784109
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -197818680], ["username", "bigbear"], ["access_token", "81b02dbec82b75ceefb7d8f38fd85412"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.719939"], ["updated_at", "2015-03-20 19:04:00.719939"]]
784110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784111
+  (0.0ms) SAVEPOINT active_record_1
784112
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -12857006 LIMIT 1
784113
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -12857006], ["username", "billy_00"], ["access_token", "8b883959116bef135c0eabcf0a590a0f"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.722473"], ["updated_at", "2015-03-20 19:04:00.722473"]]
784114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784115
+  (0.0ms) SAVEPOINT active_record_1
784116
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1727507007 LIMIT 1
784117
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1727507007], ["username", "billy_01"], ["access_token", "8e7ffb7bc0fb8c00bd07688b8c8fe368"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.725334"], ["updated_at", "2015-03-20 19:04:00.725334"]]
784118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784119
+  (0.0ms) SAVEPOINT active_record_1
784120
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1931464647 LIMIT 1
784121
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1931464647], ["username", "billy_02"], ["access_token", "a79786b05765e0540f8c2f055729e3c6"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.727931"], ["updated_at", "2015-03-20 19:04:00.727931"]]
784122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784123
+  (0.0ms) SAVEPOINT active_record_1
784124
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1528062377 LIMIT 1
784125
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1528062377], ["username", "billy_03"], ["access_token", "31c98977fd5480c6f91a9aa0528296b1"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.730359"], ["updated_at", "2015-03-20 19:04:00.730359"]]
784126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784127
+  (0.0ms) SAVEPOINT active_record_1
784128
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -492965092 LIMIT 1
784129
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -492965092], ["username", "billy_04"], ["access_token", "36a32b47b87efc232e545f5d232114a3"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.732826"], ["updated_at", "2015-03-20 19:04:00.732826"]]
784130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784131
+  (0.0ms) SAVEPOINT active_record_1
784132
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -963884775 LIMIT 1
784133
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -963884775], ["username", "billy_05"], ["access_token", "dc27f4b6404ef479ada08f86205326c5"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.735268"], ["updated_at", "2015-03-20 19:04:00.735268"]]
784134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784135
+  (0.0ms) SAVEPOINT active_record_1
784136
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -744613571 LIMIT 1
784137
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -744613571], ["username", "billy_06"], ["access_token", "6a275de0dd2ba65827fd3d11eb252df3"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.737741"], ["updated_at", "2015-03-20 19:04:00.737741"]]
784138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784139
+  (0.0ms) SAVEPOINT active_record_1
784140
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1568623640 LIMIT 1
784141
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1568623640], ["username", "billy_07"], ["access_token", "839c1b748f584a051fa05f46d2921e53"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.740145"], ["updated_at", "2015-03-20 19:04:00.740145"]]
784142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784143
+  (0.0ms) SAVEPOINT active_record_1
784144
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1154188605 LIMIT 1
784145
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1154188605], ["username", "billy_08"], ["access_token", "c34c26b5aa962435ede3cfe1d44fd3c7"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.742534"], ["updated_at", "2015-03-20 19:04:00.742534"]]
784146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784147
+  (0.0ms) SAVEPOINT active_record_1
784148
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -710457280 LIMIT 1
784149
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -710457280], ["username", "billy_09"], ["access_token", "ce58f2ca5e7a3bc0b63379c038d062ae"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.744967"], ["updated_at", "2015-03-20 19:04:00.744967"]]
784150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784151
+  (0.0ms) SAVEPOINT active_record_1
784152
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -946405157 LIMIT 1
784153
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -946405157], ["username", "billy_10"], ["access_token", "e211d7e48af0563da9cdb25eaf33674d"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.747574"], ["updated_at", "2015-03-20 19:04:00.747574"]]
784154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784155
+  (0.0ms) SAVEPOINT active_record_1
784156
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -194732278 LIMIT 1
784157
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -194732278], ["username", "billy_11"], ["access_token", "fdb09f21aca7854d7b147eb978a363ac"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.750085"], ["updated_at", "2015-03-20 19:04:00.750085"]]
784158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784159
+  (0.0ms) SAVEPOINT active_record_1
784160
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1710610475 LIMIT 1
784161
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1710610475], ["username", "billy_12"], ["access_token", "6f1f6f39e448561106f866e16880bebb"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.752523"], ["updated_at", "2015-03-20 19:04:00.752523"]]
784162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784163
+  (0.0ms) SAVEPOINT active_record_1
784164
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112689957 LIMIT 1
784165
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1112689957], ["username", "billy_13"], ["access_token", "c645b6accc412c7cad045683932b0db8"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.755294"], ["updated_at", "2015-03-20 19:04:00.755294"]]
784166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784167
+  (0.0ms) SAVEPOINT active_record_1
784168
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1797574819 LIMIT 1
784169
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1797574819], ["username", "billy_14"], ["access_token", "11bace881de3d522e7f9328e79ceaca3"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.757910"], ["updated_at", "2015-03-20 19:04:00.757910"]]
784170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784171
+  (0.0ms) SAVEPOINT active_record_1
784172
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -246876252 LIMIT 1
784173
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -246876252], ["username", "billy_15"], ["access_token", "1b6a18d8927da05833a012af96a3dec8"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.760956"], ["updated_at", "2015-03-20 19:04:00.760956"]]
784174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784175
+  (0.0ms) SAVEPOINT active_record_1
784176
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1765653492 LIMIT 1
784177
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1765653492], ["username", "billy_16"], ["access_token", "c025d34b13a1e67f6c2112575583e856"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.763989"], ["updated_at", "2015-03-20 19:04:00.763989"]]
784178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784179
+  (0.0ms) SAVEPOINT active_record_1
784180
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1305851102 LIMIT 1
784181
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1305851102], ["username", "billy_17"], ["access_token", "d9030bd49c05bb3fa99b28d5b6898059"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.766406"], ["updated_at", "2015-03-20 19:04:00.766406"]]
784182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784183
+  (0.0ms) SAVEPOINT active_record_1
784184
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2026422397 LIMIT 1
784185
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2026422397], ["username", "billy_18"], ["access_token", "c7c843a42ee31c51f2382eae782225f9"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.768851"], ["updated_at", "2015-03-20 19:04:00.768851"]]
784186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784187
+  (0.0ms) SAVEPOINT active_record_1
784188
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1736614852 LIMIT 1
784189
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1736614852], ["username", "billy_19"], ["access_token", "da47b3df3a3fd56a3b07818ce36dfdeb"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.771606"], ["updated_at", "2015-03-20 19:04:00.771606"]]
784190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784191
+  (0.0ms) SAVEPOINT active_record_1
784192
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1138669658 LIMIT 1
784193
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1138669658], ["username", "billy_20"], ["access_token", "c70e7763bb8a9d0a86fac5f220fefdfb"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.774095"], ["updated_at", "2015-03-20 19:04:00.774095"]]
784194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784195
+  (0.1ms) SAVEPOINT active_record_1
784196
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -632499183 LIMIT 1
784197
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -632499183], ["username", "billy_21"], ["access_token", "e73c26b1c6590dff47aeed0b007a3f50"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.776783"], ["updated_at", "2015-03-20 19:04:00.776783"]]
784198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784199
+  (0.0ms) SAVEPOINT active_record_1
784200
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -699823822 LIMIT 1
784201
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -699823822], ["username", "billy_22"], ["access_token", "2eefc15348021f0f586447cd32bb1900"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.779349"], ["updated_at", "2015-03-20 19:04:00.779349"]]
784202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784203
+  (0.0ms) SAVEPOINT active_record_1
784204
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -560299270 LIMIT 1
784205
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -560299270], ["username", "billy_23"], ["access_token", "c6f198e72386a7cfbb7a462f186cda03"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.781981"], ["updated_at", "2015-03-20 19:04:00.781981"]]
784206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784207
+  (0.0ms) SAVEPOINT active_record_1
784208
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -244516696 LIMIT 1
784209
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -244516696], ["username", "billy_24"], ["access_token", "fde8b303bd0d132ea067ccd54548c912"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.784649"], ["updated_at", "2015-03-20 19:04:00.784649"]]
784210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784211
+  (0.0ms) SAVEPOINT active_record_1
784212
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -419959526 LIMIT 1
784213
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -419959526], ["username", "billy_25"], ["access_token", "c496ccedf28907a06b529370a5e1e008"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.787247"], ["updated_at", "2015-03-20 19:04:00.787247"]]
784214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784215
+  (0.0ms) SAVEPOINT active_record_1
784216
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -207187849 LIMIT 1
784217
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -207187849], ["username", "billy_26"], ["access_token", "a213d7916d50a378bc25ecf17a7e1f6b"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.789890"], ["updated_at", "2015-03-20 19:04:00.789890"]]
784218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784219
+  (0.0ms) SAVEPOINT active_record_1
784220
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -407808123 LIMIT 1
784221
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -407808123], ["username", "billy_27"], ["access_token", "fe11293fd9521ad1aea28275b162683e"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.792753"], ["updated_at", "2015-03-20 19:04:00.792753"]]
784222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784223
+  (0.0ms) SAVEPOINT active_record_1
784224
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -256373054 LIMIT 1
784225
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -256373054], ["username", "billy_28"], ["access_token", "43644ff311229f16585c0c00ebfa20b5"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.795449"], ["updated_at", "2015-03-20 19:04:00.795449"]]
784226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784227
+  (0.0ms) SAVEPOINT active_record_1
784228
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1551211299 LIMIT 1
784229
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1551211299], ["username", "billy_29"], ["access_token", "3fd504e578641a6afdfb1f77b8ea730b"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.798143"], ["updated_at", "2015-03-20 19:04:00.798143"]]
784230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784231
+  (0.0ms) SAVEPOINT active_record_1
784232
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2135000113 LIMIT 1
784233
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2135000113], ["username", "billy_30"], ["access_token", "61e45cb0045029d82493516934ea671a"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.800957"], ["updated_at", "2015-03-20 19:04:00.800957"]]
784234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784235
+  (0.0ms) SAVEPOINT active_record_1
784236
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730227713 LIMIT 1
784237
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1730227713], ["username", "billy_31"], ["access_token", "752de0a9c21c3f4fdf95f4b2092f1f87"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.803671"], ["updated_at", "2015-03-20 19:04:00.803671"]]
784238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784239
+  (0.1ms) SAVEPOINT active_record_1
784240
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -500519972 LIMIT 1
784241
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -500519972], ["username", "billy_32"], ["access_token", "a074cb24193808c5148496abc9d8aa30"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.806399"], ["updated_at", "2015-03-20 19:04:00.806399"]]
784242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784243
+  (0.0ms) SAVEPOINT active_record_1
784244
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2116183752 LIMIT 1
784245
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2116183752], ["username", "billy_33"], ["access_token", "e39f30c960dc4da7316dc61ec9bcf154"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.809232"], ["updated_at", "2015-03-20 19:04:00.809232"]]
784246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784247
+  (0.0ms) SAVEPOINT active_record_1
784248
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -415379185 LIMIT 1
784249
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -415379185], ["username", "billy_34"], ["access_token", "095da8c50e14e6f41276fc5980e9e053"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.811609"], ["updated_at", "2015-03-20 19:04:00.811609"]]
784250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784251
+  (0.0ms) SAVEPOINT active_record_1
784252
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1625265920 LIMIT 1
784253
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1625265920], ["username", "billy_35"], ["access_token", "5f9301fc82dc3958b12cf9b30472ae84"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.813942"], ["updated_at", "2015-03-20 19:04:00.813942"]]
784254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784255
+  (0.0ms) SAVEPOINT active_record_1
784256
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219918815 LIMIT 1
784257
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1219918815], ["username", "billy_36"], ["access_token", "185bda891512e9cb10101e13fbf973cc"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.816177"], ["updated_at", "2015-03-20 19:04:00.816177"]]
784258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784259
+  (0.0ms) SAVEPOINT active_record_1
784260
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -224533646 LIMIT 1
784261
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -224533646], ["username", "billy_37"], ["access_token", "21a428759237f2556735960d5148f822"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.818457"], ["updated_at", "2015-03-20 19:04:00.818457"]]
784262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784263
+  (0.0ms) SAVEPOINT active_record_1
784264
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1676985046 LIMIT 1
784265
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1676985046], ["username", "billy_38"], ["access_token", "ef8d5bf16879829efe2be5e2cfd2b563"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.820770"], ["updated_at", "2015-03-20 19:04:00.820770"]]
784266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784267
+  (0.0ms) SAVEPOINT active_record_1
784268
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1816720602 LIMIT 1
784269
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1816720602], ["username", "billy_39"], ["access_token", "7959c82549ae6bc53ac695829d173d6c"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.823061"], ["updated_at", "2015-03-20 19:04:00.823061"]]
784270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784271
+  (0.0ms) SAVEPOINT active_record_1
784272
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1252525447 LIMIT 1
784273
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1252525447], ["username", "billy_40"], ["access_token", "457ba8795638a97285b3e530a1bbcf81"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.825318"], ["updated_at", "2015-03-20 19:04:00.825318"]]
784274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784275
+  (0.0ms) SAVEPOINT active_record_1
784276
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -62549455 LIMIT 1
784277
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -62549455], ["username", "billy_41"], ["access_token", "8ee297d039d85dd14b8c49d7be5341ed"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.827584"], ["updated_at", "2015-03-20 19:04:00.827584"]]
784278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784279
+  (0.0ms) SAVEPOINT active_record_1
784280
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -398567677 LIMIT 1
784281
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -398567677], ["username", "billy_42"], ["access_token", "358ec04da7ffd15405d3a9326be17c56"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.829815"], ["updated_at", "2015-03-20 19:04:00.829815"]]
784282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784283
+  (0.0ms) SAVEPOINT active_record_1
784284
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1303268148 LIMIT 1
784285
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1303268148], ["username", "billy_43"], ["access_token", "f0310968cb5208be00cc8f152019cf6b"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.832069"], ["updated_at", "2015-03-20 19:04:00.832069"]]
784286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784287
+  (0.0ms) SAVEPOINT active_record_1
784288
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1620160644 LIMIT 1
784289
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1620160644], ["username", "billy_44"], ["access_token", "037b794225d0cd968f2541bd9eed531d"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.834344"], ["updated_at", "2015-03-20 19:04:00.834344"]]
784290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784291
+  (0.0ms) SAVEPOINT active_record_1
784292
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -636972004 LIMIT 1
784293
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -636972004], ["username", "billy_45"], ["access_token", "f46c04a7458581a2ba57106e1da94df7"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.836504"], ["updated_at", "2015-03-20 19:04:00.836504"]]
784294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784295
+  (0.0ms) SAVEPOINT active_record_1
784296
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
784297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784298
+ OpenStax::Accounts::Account Load (0.2ms) 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
784299
+ 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
784300
+ 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
784301
+  (0.9ms) rollback transaction
784302
+  (0.1ms) begin transaction
784303
+  (0.0ms) SAVEPOINT active_record_1
784304
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -930967692 LIMIT 1
784305
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -930967692], ["username", "jstrav"], ["access_token", "51f0c03f7aa048a250cb5dd1fcc632a3"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.848092"], ["updated_at", "2015-03-20 19:04:00.848092"]]
784306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784307
+  (0.0ms) SAVEPOINT active_record_1
784308
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -721772601 LIMIT 1
784309
+ 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", -721772601], ["username", "mary"], ["access_token", "52bf8bf58d17b4eabe8f391ffc10dfaa"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.850691"], ["updated_at", "2015-03-20 19:04:00.850691"]]
784310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784311
+  (0.0ms) SAVEPOINT active_record_1
784312
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142322431 LIMIT 1
784313
+ SQL (0.4ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -142322431], ["username", "jstead"], ["access_token", "56eca6a92056f9580b55085e9d6b3ccd"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.853201"], ["updated_at", "2015-03-20 19:04:00.853201"]]
784314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784315
+  (0.0ms) SAVEPOINT active_record_1
784316
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1006460014 LIMIT 1
784317
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1006460014], ["username", "bigbear"], ["access_token", "cb495a29abc01358dd6c98bb1a354665"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.855816"], ["updated_at", "2015-03-20 19:04:00.855816"]]
784318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784319
+  (0.0ms) SAVEPOINT active_record_1
784320
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2076556312 LIMIT 1
784321
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2076556312], ["username", "foo_bb"], ["access_token", "48a50f1402c5a91c2ade54cd6d78bc36"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2015-03-20 19:04:00.858122"], ["updated_at", "2015-03-20 19:04:00.858122"]]
784322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784323
+  (0.0ms) SAVEPOINT active_record_1
784324
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428516781 LIMIT 1
784325
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1428516781], ["username", "foo_bj"], ["access_token", "0dd56f8af471999c71896aa032e9c5b5"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2015-03-20 19:04:00.860585"], ["updated_at", "2015-03-20 19:04:00.860585"]]
784326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784327
+  (0.0ms) SAVEPOINT active_record_1
784328
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647625080 LIMIT 1
784329
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -647625080], ["username", "foo_tj"], ["access_token", "dbb196a7028f10ed1f85fe2bbb711c6b"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2015-03-20 19:04:00.862918"], ["updated_at", "2015-03-20 19:04:00.862918"]]
784330
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784331
+  (0.0ms) SAVEPOINT active_record_1
784332
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
784333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784334
+ 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
784335
+  (0.0ms) SAVEPOINT active_record_1
784336
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
784337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784338
+ 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
784339
+  (0.4ms) rollback transaction
784340
+  (0.1ms) begin transaction
784341
+  (0.0ms) SAVEPOINT active_record_1
784342
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -496297221 LIMIT 1
784343
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -496297221], ["username", "jstrav"], ["access_token", "656b6fa0769b7f6b442ba1e37658ed7c"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.871065"], ["updated_at", "2015-03-20 19:04:00.871065"]]
784344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784345
+  (0.0ms) SAVEPOINT active_record_1
784346
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1388351658 LIMIT 1
784347
+ 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", -1388351658], ["username", "mary"], ["access_token", "a3e7237ef00f24b19df086703c1f225b"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.873924"], ["updated_at", "2015-03-20 19:04:00.873924"]]
784348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784349
+  (0.0ms) SAVEPOINT active_record_1
784350
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -343153084 LIMIT 1
784351
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -343153084], ["username", "jstead"], ["access_token", "283a38215070fd99dcd9da108e1037a4"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.876553"], ["updated_at", "2015-03-20 19:04:00.876553"]]
784352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784353
+  (0.0ms) SAVEPOINT active_record_1
784354
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1858650263 LIMIT 1
784355
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1858650263], ["username", "bigbear"], ["access_token", "6fc27b7f0d9337b31c37ee61c5fe1909"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.879022"], ["updated_at", "2015-03-20 19:04:00.879022"]]
784356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784357
+  (0.0ms) SAVEPOINT active_record_1
784358
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -958517116 LIMIT 1
784359
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -958517116], ["username", "billy_00"], ["access_token", "32d92313a75b5033284caf2d71db65db"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:04:00.881445"], ["updated_at", "2015-03-20 19:04:00.881445"]]
784360
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784361
+  (0.0ms) SAVEPOINT active_record_1
784362
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2084767986 LIMIT 1
784363
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2084767986], ["username", "billy_01"], ["access_token", "df9957b75539492d080f856e9fbd2f6f"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:04:00.883882"], ["updated_at", "2015-03-20 19:04:00.883882"]]
784364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784365
+  (0.0ms) SAVEPOINT active_record_1
784366
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -441843973 LIMIT 1
784367
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -441843973], ["username", "billy_02"], ["access_token", "df4418e54b3ccd211931d08c48e89336"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:04:00.886121"], ["updated_at", "2015-03-20 19:04:00.886121"]]
784368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784369
+  (0.0ms) SAVEPOINT active_record_1
784370
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -523837298 LIMIT 1
784371
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -523837298], ["username", "billy_03"], ["access_token", "099d9ba187cb29f91e9bece019b18320"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:04:00.888294"], ["updated_at", "2015-03-20 19:04:00.888294"]]
784372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784373
+  (0.0ms) SAVEPOINT active_record_1
784374
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -951295814 LIMIT 1
784375
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -951295814], ["username", "billy_04"], ["access_token", "ccaf857682b8dfe0000339146f737d62"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.890522"], ["updated_at", "2015-03-20 19:04:00.890522"]]
784376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784377
+  (0.0ms) SAVEPOINT active_record_1
784378
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2059476837 LIMIT 1
784379
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2059476837], ["username", "billy_05"], ["access_token", "60920b26559c1d941df28e72f2abfc04"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.893440"], ["updated_at", "2015-03-20 19:04:00.893440"]]
784380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784381
+  (0.0ms) SAVEPOINT active_record_1
784382
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1394655290 LIMIT 1
784383
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1394655290], ["username", "billy_06"], ["access_token", "8622c8a03890f808375975baa5b5e953"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.895844"], ["updated_at", "2015-03-20 19:04:00.895844"]]
784384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784385
+  (0.0ms) SAVEPOINT active_record_1
784386
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -519681945 LIMIT 1
784387
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -519681945], ["username", "billy_07"], ["access_token", "5c0643c3c08b28cca9a18a99d3f18f82"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.897975"], ["updated_at", "2015-03-20 19:04:00.897975"]]
784388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784389
+  (0.0ms) SAVEPOINT active_record_1
784390
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1463185493 LIMIT 1
784391
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1463185493], ["username", "billy_08"], ["access_token", "bd93a6171946ddd381397390a7b6a866"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.900077"], ["updated_at", "2015-03-20 19:04:00.900077"]]
784392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784393
+  (0.0ms) SAVEPOINT active_record_1
784394
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1374968576 LIMIT 1
784395
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1374968576], ["username", "billy_09"], ["access_token", "a30c33671c33bfe1eaec406a4938b286"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.902379"], ["updated_at", "2015-03-20 19:04:00.902379"]]
784396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784397
+  (0.0ms) SAVEPOINT active_record_1
784398
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1823838486 LIMIT 1
784399
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1823838486], ["username", "billy_10"], ["access_token", "d95648d007bf63c39873c0eaad28a1fd"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.904677"], ["updated_at", "2015-03-20 19:04:00.904677"]]
784400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784401
+  (0.0ms) SAVEPOINT active_record_1
784402
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488308040 LIMIT 1
784403
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -488308040], ["username", "billy_11"], ["access_token", "72869ab8b2e03ac31f87e3d96f4dee48"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.906998"], ["updated_at", "2015-03-20 19:04:00.906998"]]
784404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784405
+  (0.0ms) SAVEPOINT active_record_1
784406
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -593871545 LIMIT 1
784407
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -593871545], ["username", "billy_12"], ["access_token", "bc9cd8efb7763ead57caf811245a0622"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.909308"], ["updated_at", "2015-03-20 19:04:00.909308"]]
784408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784409
+  (0.0ms) SAVEPOINT active_record_1
784410
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639100456 LIMIT 1
784411
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -639100456], ["username", "billy_13"], ["access_token", "df16a4edf807c4e802a668a93b5b26a2"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.911674"], ["updated_at", "2015-03-20 19:04:00.911674"]]
784412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784413
+  (0.0ms) SAVEPOINT active_record_1
784414
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1103196617 LIMIT 1
784415
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1103196617], ["username", "billy_14"], ["access_token", "a3c9c3274d9eb970672f677e6a98b6bf"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.914029"], ["updated_at", "2015-03-20 19:04:00.914029"]]
784416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784417
+  (0.0ms) SAVEPOINT active_record_1
784418
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -124509459 LIMIT 1
784419
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -124509459], ["username", "billy_15"], ["access_token", "437a8e5dfbcbafc1358607ee85106d3b"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.916399"], ["updated_at", "2015-03-20 19:04:00.916399"]]
784420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784421
+  (0.0ms) SAVEPOINT active_record_1
784422
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1186567356 LIMIT 1
784423
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1186567356], ["username", "billy_16"], ["access_token", "95a13da5caa508f0c16647e0277f33dc"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.918713"], ["updated_at", "2015-03-20 19:04:00.918713"]]
784424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784425
+  (0.0ms) SAVEPOINT active_record_1
784426
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1549453164 LIMIT 1
784427
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1549453164], ["username", "billy_17"], ["access_token", "e1b9655d747848d17a2cbf3f4381e7a1"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.921032"], ["updated_at", "2015-03-20 19:04:00.921032"]]
784428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784429
+  (0.0ms) SAVEPOINT active_record_1
784430
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2047820423 LIMIT 1
784431
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2047820423], ["username", "billy_18"], ["access_token", "a85511a7ea73aeabaf222a7195467286"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.923326"], ["updated_at", "2015-03-20 19:04:00.923326"]]
784432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784433
+  (0.0ms) SAVEPOINT active_record_1
784434
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -651270824 LIMIT 1
784435
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -651270824], ["username", "billy_19"], ["access_token", "82f1f22864470feb0d0bc5f3e20dda51"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.925599"], ["updated_at", "2015-03-20 19:04:00.925599"]]
784436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784437
+  (0.0ms) SAVEPOINT active_record_1
784438
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -912354476 LIMIT 1
784439
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -912354476], ["username", "billy_20"], ["access_token", "a6792a8a2c9b66d580eda0fb8df2679b"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.927881"], ["updated_at", "2015-03-20 19:04:00.927881"]]
784440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784441
+  (0.0ms) SAVEPOINT active_record_1
784442
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -32269478 LIMIT 1
784443
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -32269478], ["username", "billy_21"], ["access_token", "e7e2c9dabd3186ce72047622cc36ff4a"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.930190"], ["updated_at", "2015-03-20 19:04:00.930190"]]
784444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784445
+  (0.0ms) SAVEPOINT active_record_1
784446
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1411800581 LIMIT 1
784447
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1411800581], ["username", "billy_22"], ["access_token", "379cf15edf0dec73af4faa91c3c43c87"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.932397"], ["updated_at", "2015-03-20 19:04:00.932397"]]
784448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784449
+  (0.0ms) SAVEPOINT active_record_1
784450
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -798798938 LIMIT 1
784451
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -798798938], ["username", "billy_23"], ["access_token", "e733f66d0b53fd83e9a512ef71cb5171"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.934594"], ["updated_at", "2015-03-20 19:04:00.934594"]]
784452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784453
+  (0.0ms) SAVEPOINT active_record_1
784454
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -977246546 LIMIT 1
784455
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -977246546], ["username", "billy_24"], ["access_token", "37ea739d7ec466e7010e85152dae6ee0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.936768"], ["updated_at", "2015-03-20 19:04:00.936768"]]
784456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784457
+  (0.0ms) SAVEPOINT active_record_1
784458
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -470086837 LIMIT 1
784459
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -470086837], ["username", "billy_25"], ["access_token", "96e48204afc9770a7e04e740c72539d9"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.938938"], ["updated_at", "2015-03-20 19:04:00.938938"]]
784460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784461
+  (0.0ms) SAVEPOINT active_record_1
784462
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -175750843 LIMIT 1
784463
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -175750843], ["username", "billy_26"], ["access_token", "be792e663062926533c769d2c3e7aa70"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.941206"], ["updated_at", "2015-03-20 19:04:00.941206"]]
784464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784465
+  (0.0ms) SAVEPOINT active_record_1
784466
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1273422656 LIMIT 1
784467
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1273422656], ["username", "billy_27"], ["access_token", "4c87e7fcc914a3a400a43b615c9b57d4"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.943610"], ["updated_at", "2015-03-20 19:04:00.943610"]]
784468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784469
+  (0.0ms) SAVEPOINT active_record_1
784470
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -807587313 LIMIT 1
784471
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -807587313], ["username", "billy_28"], ["access_token", "05f5a8977d72adf80c063ac78bd67420"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.945844"], ["updated_at", "2015-03-20 19:04:00.945844"]]
784472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784473
+  (0.0ms) SAVEPOINT active_record_1
784474
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1204649231 LIMIT 1
784475
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1204649231], ["username", "billy_29"], ["access_token", "47b48359e08124c7c0b342242d86883d"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.948066"], ["updated_at", "2015-03-20 19:04:00.948066"]]
784476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784477
+  (0.0ms) SAVEPOINT active_record_1
784478
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -223678581 LIMIT 1
784479
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -223678581], ["username", "billy_30"], ["access_token", "54033c106060ff7be859e8e8bd04a9b8"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.950359"], ["updated_at", "2015-03-20 19:04:00.950359"]]
784480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784481
+  (0.0ms) SAVEPOINT active_record_1
784482
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1638375636 LIMIT 1
784483
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1638375636], ["username", "billy_31"], ["access_token", "b57308abf7515469d546b6a2f78104db"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.952638"], ["updated_at", "2015-03-20 19:04:00.952638"]]
784484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784485
+  (0.0ms) SAVEPOINT active_record_1
784486
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -888101027 LIMIT 1
784487
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -888101027], ["username", "billy_32"], ["access_token", "0101fb445664b1ba02cbb97c816c7d2a"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.954961"], ["updated_at", "2015-03-20 19:04:00.954961"]]
784488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784489
+  (0.0ms) SAVEPOINT active_record_1
784490
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1514537960 LIMIT 1
784491
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1514537960], ["username", "billy_33"], ["access_token", "c8b8398559c34509498461374fae24bf"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.957257"], ["updated_at", "2015-03-20 19:04:00.957257"]]
784492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784493
+  (0.0ms) SAVEPOINT active_record_1
784494
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -637813307 LIMIT 1
784495
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -637813307], ["username", "billy_34"], ["access_token", "b85ac128f06693e29b3b0ab544e929e0"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.959397"], ["updated_at", "2015-03-20 19:04:00.959397"]]
784496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784497
+  (0.0ms) SAVEPOINT active_record_1
784498
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1687998627 LIMIT 1
784499
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1687998627], ["username", "billy_35"], ["access_token", "3d78252be8f20101ec9da6fe9e01ba01"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.961624"], ["updated_at", "2015-03-20 19:04:00.961624"]]
784500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784501
+  (0.0ms) SAVEPOINT active_record_1
784502
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796315578 LIMIT 1
784503
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -796315578], ["username", "billy_36"], ["access_token", "47cd167ace232c95cea4aa9d3f3231ee"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.963838"], ["updated_at", "2015-03-20 19:04:00.963838"]]
784504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784505
+  (0.0ms) SAVEPOINT active_record_1
784506
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2117856800 LIMIT 1
784507
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2117856800], ["username", "billy_37"], ["access_token", "ac466f883b26aea0e0f0955ebcd0e207"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.966004"], ["updated_at", "2015-03-20 19:04:00.966004"]]
784508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784509
+  (0.0ms) SAVEPOINT active_record_1
784510
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2034704129 LIMIT 1
784511
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2034704129], ["username", "billy_38"], ["access_token", "3fe14a0acde2969032d1283fd719c81f"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.968186"], ["updated_at", "2015-03-20 19:04:00.968186"]]
784512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784513
+  (0.1ms) SAVEPOINT active_record_1
784514
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1810333282 LIMIT 1
784515
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1810333282], ["username", "billy_39"], ["access_token", "c1ba524a5698ec34ed249586a289654a"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.970389"], ["updated_at", "2015-03-20 19:04:00.970389"]]
784516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784517
+  (0.0ms) SAVEPOINT active_record_1
784518
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1094054623 LIMIT 1
784519
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1094054623], ["username", "billy_40"], ["access_token", "86cd6858ed6e26f4088250593138d286"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.972536"], ["updated_at", "2015-03-20 19:04:00.972536"]]
784520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784521
+  (0.0ms) SAVEPOINT active_record_1
784522
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1541285937 LIMIT 1
784523
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1541285937], ["username", "billy_41"], ["access_token", "4b182a7ed1a59560b867454364c3467c"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.974815"], ["updated_at", "2015-03-20 19:04:00.974815"]]
784524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784525
+  (0.0ms) SAVEPOINT active_record_1
784526
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -436299396 LIMIT 1
784527
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -436299396], ["username", "billy_42"], ["access_token", "15889c20e027b13cbe45cb14e975c7c5"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.977112"], ["updated_at", "2015-03-20 19:04:00.977112"]]
784528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784529
+  (0.0ms) SAVEPOINT active_record_1
784530
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561351886 LIMIT 1
784531
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1561351886], ["username", "billy_43"], ["access_token", "e79f67a395ad13f11a713772e6c508e1"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.979203"], ["updated_at", "2015-03-20 19:04:00.979203"]]
784532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784533
+  (0.0ms) SAVEPOINT active_record_1
784534
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1902156492 LIMIT 1
784535
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1902156492], ["username", "billy_44"], ["access_token", "15c1b60a4e6edbe844e7830994a6a153"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.981453"], ["updated_at", "2015-03-20 19:04:00.981453"]]
784536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784537
+  (0.0ms) SAVEPOINT active_record_1
784538
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -224434503 LIMIT 1
784539
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -224434503], ["username", "billy_45"], ["access_token", "8c6510b080b6fac997bdee89e8088397"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.983941"], ["updated_at", "2015-03-20 19:04:00.983941"]]
784540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784541
+  (0.0ms) SAVEPOINT active_record_1
784542
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -149839026 LIMIT 1
784543
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -149839026], ["username", "billy_46"], ["access_token", "310f3afb39c573fb9fafc63a0a6915a4"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.986282"], ["updated_at", "2015-03-20 19:04:00.986282"]]
784544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784545
+  (0.0ms) SAVEPOINT active_record_1
784546
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -687355093 LIMIT 1
784547
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -687355093], ["username", "billy_47"], ["access_token", "4853e522a1bae7dde60bab71de0a1fea"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.988659"], ["updated_at", "2015-03-20 19:04:00.988659"]]
784548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784549
+  (0.0ms) SAVEPOINT active_record_1
784550
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1179202341 LIMIT 1
784551
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1179202341], ["username", "billy_48"], ["access_token", "b40f3a29241e46d2420c1c1367bc7284"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.990975"], ["updated_at", "2015-03-20 19:04:00.990975"]]
784552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784553
+  (0.0ms) SAVEPOINT active_record_1
784554
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -388390643 LIMIT 1
784555
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -388390643], ["username", "billy_49"], ["access_token", "d586316e33a79a686cdeda2ebf20f178"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.993338"], ["updated_at", "2015-03-20 19:04:00.993338"]]
784556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784557
+  (0.0ms) SAVEPOINT active_record_1
784558
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
784559
+ 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
784560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784561
+  (1.1ms) rollback transaction
784562
+  (0.0ms) begin transaction
784563
+  (0.0ms) SAVEPOINT active_record_1
784564
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -525091034 LIMIT 1
784565
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -525091034], ["username", "jstrav"], ["access_token", "89ae4bd085165e6d11b9da49b7d57c14"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:01.004517"], ["updated_at", "2015-03-20 19:04:01.004517"]]
784566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784567
+  (0.0ms) SAVEPOINT active_record_1
784568
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2036337289 LIMIT 1
784569
+ 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", -2036337289], ["username", "mary"], ["access_token", "a5f555c81df317156cc2925e13cb7b01"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:01.007179"], ["updated_at", "2015-03-20 19:04:01.007179"]]
784570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784571
+  (0.0ms) SAVEPOINT active_record_1
784572
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1037743206 LIMIT 1
784573
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1037743206], ["username", "jstead"], ["access_token", "dd7d6f6ec0b91fbdf6687ad2985159a8"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:01.009667"], ["updated_at", "2015-03-20 19:04:01.009667"]]
784574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784575
+  (0.0ms) SAVEPOINT active_record_1
784576
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1814940875 LIMIT 1
784577
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1814940875], ["username", "bigbear"], ["access_token", "447f841f9b7c1d1fc002d132ec1445db"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:01.011935"], ["updated_at", "2015-03-20 19:04:01.011935"]]
784578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784579
+  (0.0ms) SAVEPOINT active_record_1
784580
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2080291163 LIMIT 1
784581
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2080291163], ["username", "billy_00"], ["access_token", "ba4d7481b95507e5f5dfbc40e31e61eb"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:04:01.014315"], ["updated_at", "2015-03-20 19:04:01.014315"]]
784582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784583
+  (0.0ms) SAVEPOINT active_record_1
784584
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1865759028 LIMIT 1
784585
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1865759028], ["username", "billy_01"], ["access_token", "7b9ac1389f5409c4a011d172ecef4b95"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:04:01.016552"], ["updated_at", "2015-03-20 19:04:01.016552"]]
784586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784587
+  (0.0ms) SAVEPOINT active_record_1
784588
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1607557657 LIMIT 1
784589
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1607557657], ["username", "billy_02"], ["access_token", "42c1ef1c2d1f038f4e43f6e08a4cb9c1"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:04:01.018966"], ["updated_at", "2015-03-20 19:04:01.018966"]]
784590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784591
+  (0.0ms) SAVEPOINT active_record_1
784592
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -100084273 LIMIT 1
784593
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -100084273], ["username", "billy_03"], ["access_token", "805398676d4c1f907cf84a23863009a2"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:04:01.021275"], ["updated_at", "2015-03-20 19:04:01.021275"]]
784594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784595
+  (0.0ms) SAVEPOINT active_record_1
784596
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1516251869 LIMIT 1
784597
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1516251869], ["username", "billy_04"], ["access_token", "ba68f5248b0c36c78736eff9c77d0c51"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:01.023509"], ["updated_at", "2015-03-20 19:04:01.023509"]]
784598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784599
+  (0.0ms) SAVEPOINT active_record_1
784600
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1366065379 LIMIT 1
784601
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1366065379], ["username", "billy_05"], ["access_token", "830acb579ed49b5dc9b3272530a55ae6"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:01.025895"], ["updated_at", "2015-03-20 19:04:01.025895"]]
784602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784603
+  (0.0ms) SAVEPOINT active_record_1
784604
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1422399033 LIMIT 1
784605
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1422399033], ["username", "billy_06"], ["access_token", "f742a06aef39b6a676d909c5a67f8560"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:01.028075"], ["updated_at", "2015-03-20 19:04:01.028075"]]
784606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784607
+  (0.0ms) SAVEPOINT active_record_1
784608
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1711404637 LIMIT 1
784609
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1711404637], ["username", "billy_07"], ["access_token", "9f2a13d6c4462322c367bb2de97d1707"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:01.030253"], ["updated_at", "2015-03-20 19:04:01.030253"]]
784610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784611
+  (0.0ms) SAVEPOINT active_record_1
784612
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -251595563 LIMIT 1
784613
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -251595563], ["username", "billy_08"], ["access_token", "fe3663dac2817884c120d104c244eb8d"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:01.032513"], ["updated_at", "2015-03-20 19:04:01.032513"]]
784614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784615
+  (0.0ms) SAVEPOINT active_record_1
784616
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1951058696 LIMIT 1
784617
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1951058696], ["username", "billy_09"], ["access_token", "f3f4a513c539b6183df5f10301f3c3fd"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:01.034749"], ["updated_at", "2015-03-20 19:04:01.034749"]]
784618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784619
+  (0.0ms) SAVEPOINT active_record_1
784620
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -818238205 LIMIT 1
784621
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -818238205], ["username", "billy_10"], ["access_token", "db4303fc9d60c51a626ea08390607ae2"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:01.037000"], ["updated_at", "2015-03-20 19:04:01.037000"]]
784622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784623
+  (0.0ms) SAVEPOINT active_record_1
784624
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -563612824 LIMIT 1
784625
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -563612824], ["username", "billy_11"], ["access_token", "eb19860d8ecddea12923f05d840b094a"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:01.039422"], ["updated_at", "2015-03-20 19:04:01.039422"]]
784626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784627
+  (0.0ms) SAVEPOINT active_record_1
784628
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1395206726 LIMIT 1
784629
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1395206726], ["username", "billy_12"], ["access_token", "b3466cbc22f1ae7f0683aa19601b33dd"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:01.041752"], ["updated_at", "2015-03-20 19:04:01.041752"]]
784630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784631
+  (0.0ms) SAVEPOINT active_record_1
784632
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -841319187 LIMIT 1
784633
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -841319187], ["username", "billy_13"], ["access_token", "1324ac007e2e997cf6543e1d0594b47f"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:01.044234"], ["updated_at", "2015-03-20 19:04:01.044234"]]
784634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784635
+  (0.0ms) SAVEPOINT active_record_1
784636
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2133546501 LIMIT 1
784637
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2133546501], ["username", "billy_14"], ["access_token", "57529dec75672df1c6c679fb999efd7b"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:01.047164"], ["updated_at", "2015-03-20 19:04:01.047164"]]
784638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784639
+  (0.0ms) SAVEPOINT active_record_1
784640
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1726852450 LIMIT 1
784641
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1726852450], ["username", "billy_15"], ["access_token", "89d2722d694cf55d3fd6ef7f59c87dc3"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:01.049700"], ["updated_at", "2015-03-20 19:04:01.049700"]]
784642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784643
+  (0.0ms) SAVEPOINT active_record_1
784644
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -448440126 LIMIT 1
784645
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -448440126], ["username", "billy_16"], ["access_token", "4cbc9d8093ebd88b3b3d8e4d23bcd8da"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:01.052233"], ["updated_at", "2015-03-20 19:04:01.052233"]]
784646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784647
+  (0.0ms) SAVEPOINT active_record_1
784648
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071881621 LIMIT 1
784649
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1071881621], ["username", "billy_17"], ["access_token", "ce54de9d4e67861a9dfc87499e2c3b84"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:01.054766"], ["updated_at", "2015-03-20 19:04:01.054766"]]
784650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784651
+  (0.0ms) SAVEPOINT active_record_1
784652
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -146536142 LIMIT 1
784653
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -146536142], ["username", "billy_18"], ["access_token", "e5231f52f47e300edf4dcbe7df7032a0"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:01.057159"], ["updated_at", "2015-03-20 19:04:01.057159"]]
784654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784655
+  (0.0ms) SAVEPOINT active_record_1
784656
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1489140716 LIMIT 1
784657
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1489140716], ["username", "billy_19"], ["access_token", "a08010be61b7bd616eccc7d63f2240fa"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:01.059612"], ["updated_at", "2015-03-20 19:04:01.059612"]]
784658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784659
+  (0.0ms) SAVEPOINT active_record_1
784660
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -827040302 LIMIT 1
784661
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -827040302], ["username", "billy_20"], ["access_token", "ab7b77e5707ce1944aa921e114ed6ef0"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:01.062133"], ["updated_at", "2015-03-20 19:04:01.062133"]]
784662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784663
+  (0.0ms) SAVEPOINT active_record_1
784664
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -996211392 LIMIT 1
784665
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -996211392], ["username", "billy_21"], ["access_token", "be3a1b426a3b039a86e6590060748350"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:01.064613"], ["updated_at", "2015-03-20 19:04:01.064613"]]
784666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784667
+  (0.1ms) SAVEPOINT active_record_1
784668
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -301456868 LIMIT 1
784669
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -301456868], ["username", "billy_22"], ["access_token", "ae2090f5fded6993349f53ba9c6dccd5"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:01.067003"], ["updated_at", "2015-03-20 19:04:01.067003"]]
784670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784671
+  (0.0ms) SAVEPOINT active_record_1
784672
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -759401213 LIMIT 1
784673
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -759401213], ["username", "billy_23"], ["access_token", "e8e1806c3ec54aa8a98081b607b3dbff"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:01.077125"], ["updated_at", "2015-03-20 19:04:01.077125"]]
784674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784675
+  (0.0ms) SAVEPOINT active_record_1
784676
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927104943 LIMIT 1
784677
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -927104943], ["username", "billy_24"], ["access_token", "68e2a9e1f81a0562a6e21dfabbc913c0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:01.079835"], ["updated_at", "2015-03-20 19:04:01.079835"]]
784678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784679
+  (0.0ms) SAVEPOINT active_record_1
784680
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205881602 LIMIT 1
784681
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -205881602], ["username", "billy_25"], ["access_token", "0b14bd1c7bf60d3e09c7baa7e820d3f1"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:01.082566"], ["updated_at", "2015-03-20 19:04:01.082566"]]
784682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784683
+  (0.0ms) SAVEPOINT active_record_1
784684
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1035911028 LIMIT 1
784685
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1035911028], ["username", "billy_26"], ["access_token", "04521b836f494b7308de178ef13e0ea5"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:01.085308"], ["updated_at", "2015-03-20 19:04:01.085308"]]
784686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784687
+  (0.0ms) SAVEPOINT active_record_1
784688
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96040034 LIMIT 1
784689
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -96040034], ["username", "billy_27"], ["access_token", "58846740c2055daa68d3c0aad60fbd5b"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:01.087999"], ["updated_at", "2015-03-20 19:04:01.087999"]]
784690
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784691
+  (0.0ms) SAVEPOINT active_record_1
784692
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -323084828 LIMIT 1
784693
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -323084828], ["username", "billy_28"], ["access_token", "26d36e78081291ab5a888d55e5828592"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:01.090612"], ["updated_at", "2015-03-20 19:04:01.090612"]]
784694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784695
+  (0.0ms) SAVEPOINT active_record_1
784696
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1559910613 LIMIT 1
784697
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1559910613], ["username", "billy_29"], ["access_token", "e2ed74dcf614efb23ddbd612c1745389"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:01.093427"], ["updated_at", "2015-03-20 19:04:01.093427"]]
784698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784699
+  (0.0ms) SAVEPOINT active_record_1
784700
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2071194258 LIMIT 1
784701
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2071194258], ["username", "billy_30"], ["access_token", "9e884527efad5c40dbccd4df10b89644"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:01.096268"], ["updated_at", "2015-03-20 19:04:01.096268"]]
784702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784703
+  (0.0ms) SAVEPOINT active_record_1
784704
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -298635063 LIMIT 1
784705
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -298635063], ["username", "billy_31"], ["access_token", "82761fd19fad9a251e6b9816b6fd6cac"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:01.098886"], ["updated_at", "2015-03-20 19:04:01.098886"]]
784706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784707
+  (0.0ms) SAVEPOINT active_record_1
784708
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -802802216 LIMIT 1
784709
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -802802216], ["username", "billy_32"], ["access_token", "024d0acd94dcf6f2e2c860f2a580e634"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:01.101584"], ["updated_at", "2015-03-20 19:04:01.101584"]]
784710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784711
+  (0.0ms) SAVEPOINT active_record_1
784712
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1067487473 LIMIT 1
784713
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1067487473], ["username", "billy_33"], ["access_token", "9cf9584de93855f9c7fd4e3f35fdf749"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:01.104154"], ["updated_at", "2015-03-20 19:04:01.104154"]]
784714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784715
+  (0.0ms) SAVEPOINT active_record_1
784716
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -875245245 LIMIT 1
784717
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -875245245], ["username", "billy_34"], ["access_token", "09cb0ad1cdc6c205f03aa48a5954bd73"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:01.106749"], ["updated_at", "2015-03-20 19:04:01.106749"]]
784718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784719
+  (0.0ms) SAVEPOINT active_record_1
784720
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1851840160 LIMIT 1
784721
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1851840160], ["username", "billy_35"], ["access_token", "2b5b9c686ec23f4e3fa91a520b7e6d6c"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:01.109523"], ["updated_at", "2015-03-20 19:04:01.109523"]]
784722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784723
+  (0.0ms) SAVEPOINT active_record_1
784724
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108893577 LIMIT 1
784725
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2108893577], ["username", "billy_36"], ["access_token", "eedb3c075609ac80aefafaf6c0aeae28"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:01.112545"], ["updated_at", "2015-03-20 19:04:01.112545"]]
784726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784727
+  (0.0ms) SAVEPOINT active_record_1
784728
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1521910 LIMIT 1
784729
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1521910], ["username", "billy_37"], ["access_token", "497d5a5d26087470979ff609ce3a697b"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:01.115096"], ["updated_at", "2015-03-20 19:04:01.115096"]]
784730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784731
+  (0.0ms) SAVEPOINT active_record_1
784732
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1842268484 LIMIT 1
784733
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1842268484], ["username", "billy_38"], ["access_token", "c40d0ff6db7246e134a8fa26ba9b1647"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:01.117571"], ["updated_at", "2015-03-20 19:04:01.117571"]]
784734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784735
+  (0.0ms) SAVEPOINT active_record_1
784736
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184580958 LIMIT 1
784737
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1184580958], ["username", "billy_39"], ["access_token", "8b8848b22760478aa36d1718d6c51ccf"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:01.119811"], ["updated_at", "2015-03-20 19:04:01.119811"]]
784738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784739
+  (0.0ms) SAVEPOINT active_record_1
784740
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -696490899 LIMIT 1
784741
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -696490899], ["username", "billy_40"], ["access_token", "569d900abd605e99a7e3b9ba162fcc7a"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:01.122153"], ["updated_at", "2015-03-20 19:04:01.122153"]]
784742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784743
+  (0.0ms) SAVEPOINT active_record_1
784744
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1534399411 LIMIT 1
784745
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1534399411], ["username", "billy_41"], ["access_token", "8fbb35b84c867996bd000249c4dbcce3"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:01.124282"], ["updated_at", "2015-03-20 19:04:01.124282"]]
784746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784747
+  (0.0ms) SAVEPOINT active_record_1
784748
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -570264810 LIMIT 1
784749
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -570264810], ["username", "billy_42"], ["access_token", "afde5e863ce3ca97a614fbfca4172089"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:01.126544"], ["updated_at", "2015-03-20 19:04:01.126544"]]
784750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784751
+  (0.0ms) SAVEPOINT active_record_1
784752
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -640142716 LIMIT 1
784753
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -640142716], ["username", "billy_43"], ["access_token", "618e7d9112efb5e4410232d4804244a4"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:01.129135"], ["updated_at", "2015-03-20 19:04:01.129135"]]
784754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784755
+  (0.0ms) SAVEPOINT active_record_1
784756
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1427013104 LIMIT 1
784757
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1427013104], ["username", "billy_44"], ["access_token", "7ff3bf0c2b0f52a464d417e69d19ee29"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:01.131516"], ["updated_at", "2015-03-20 19:04:01.131516"]]
784758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784759
+  (0.0ms) SAVEPOINT active_record_1
784760
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2024628567 LIMIT 1
784761
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2024628567], ["username", "billy_45"], ["access_token", "0d50fdce1ebfe2a1b7e36ed1bbe32d8a"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:01.133878"], ["updated_at", "2015-03-20 19:04:01.133878"]]
784762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784763
+  (0.0ms) SAVEPOINT active_record_1
784764
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1115697318 LIMIT 1
784765
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1115697318], ["username", "billy_46"], ["access_token", "6550d20dc1855dd4be949242704ceafc"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:01.136480"], ["updated_at", "2015-03-20 19:04:01.136480"]]
784766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784767
+  (0.0ms) SAVEPOINT active_record_1
784768
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -136237628 LIMIT 1
784769
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -136237628], ["username", "billy_47"], ["access_token", "bb5daa7e6ca5c3e88041118766992d4d"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:01.138850"], ["updated_at", "2015-03-20 19:04:01.138850"]]
784770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784771
+  (0.0ms) SAVEPOINT active_record_1
784772
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1814065395 LIMIT 1
784773
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1814065395], ["username", "billy_48"], ["access_token", "b30a799ede7e8c239d6035a2e62b00b7"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:01.141240"], ["updated_at", "2015-03-20 19:04:01.141240"]]
784774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784775
+  (0.0ms) SAVEPOINT active_record_1
784776
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -138686129 LIMIT 1
784777
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -138686129], ["username", "billy_49"], ["access_token", "b3b53664cb353f1da6b340eb652ebaf8"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:01.143892"], ["updated_at", "2015-03-20 19:04:01.143892"]]
784778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784779
+  (0.0ms) SAVEPOINT active_record_1
784780
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
784781
+ OpenStax::Accounts::Account Load (1.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
784782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784783
+  (0.4ms) rollback transaction
784784
+  (0.0ms) begin transaction
784785
+  (0.0ms) SAVEPOINT active_record_1
784786
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
784787
+ 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", "464c14f8a54cbf2cb8f3a8a95f8259ef"], ["created_at", "2015-03-20 19:04:01.167888"], ["updated_at", "2015-03-20 19:04:01.167888"]]
784788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784789
+  (0.0ms) SAVEPOINT active_record_1
784790
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:04:01.169624"], ["updated_at", "2015-03-20 19:04:01.169624"]]
784791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784792
+  (0.0ms) SAVEPOINT active_record_1
784793
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
784794
+ 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", "c2980d142469cbeac520796defe9bf43"], ["created_at", "2015-03-20 19:04:01.171963"], ["updated_at", "2015-03-20 19:04:01.171963"]]
784795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784796
+  (0.0ms) SAVEPOINT active_record_1
784797
+ SQL (0.1ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 2], ["created_at", "2015-03-20 19:04:01.173688"], ["updated_at", "2015-03-20 19:04:01.173688"]]
784798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784799
+  (0.1ms) SAVEPOINT active_record_1
784800
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1524116186 LIMIT 1
784801
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1524116186], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.185319"], ["updated_at", "2015-03-20 19:04:01.185319"]]
784802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784803
+  (0.1ms) SAVEPOINT active_record_1
784804
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1976169108 LIMIT 1
784805
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1976169108], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.190015"], ["updated_at", "2015-03-20 19:04:01.190015"]]
784806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784807
+  (0.1ms) SAVEPOINT active_record_1
784808
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1976169108 LIMIT 1
784809
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
784810
+ 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", -1976169108]]
784811
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
784812
+ - -1976169108
784813
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
784814
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
784815
+ 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", -1524116186]]
784816
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
784817
+ - -1524116186
784818
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
784819
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1976169108
784820
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1524116186
784821
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -1524116186], ["member_group_id", -1976169108], ["created_at", "2015-03-20 19:04:01.196073"], ["updated_at", "2015-03-20 19:04:01.196073"]]
784822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784823
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."group_id" = -1976169108) LIMIT 1
784824
+  (0.0ms) SAVEPOINT active_record_1
784825
+ 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" = -1976169108) LIMIT 1
784826
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -1976169108], ["user_id", 1], ["created_at", "2015-03-20 19:04:01.217619"], ["updated_at", "2015-03-20 19:04:01.217619"]]
784827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784828
+  (0.0ms) SAVEPOINT active_record_1
784829
+ OpenStax::Accounts::GroupMember Exists (0.1ms) 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" = -1976169108) LIMIT 1
784830
+ SQL (0.1ms) UPDATE "openstax_accounts_group_members" SET "group_id" = ?, "updated_at" = ? WHERE "openstax_accounts_group_members"."id" = ? [["group_id", -1976169108], ["updated_at", "2015-03-20 19:04:01.225137"], ["id", 1]]
784831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784832
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
784833
+ OpenStax::Accounts::Group Load (0.2ms) 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]]
784834
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
784835
+ 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", -1976169108]]
784836
+ SQL (0.2ms) 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", -1976169108]]
784837
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
784838
+ - -1976169108
784839
+ - -1524116186
784840
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
784841
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784842
+ Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784843
+  (0.1ms) SAVEPOINT active_record_1
784844
+ SQL (0.2ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "User"], ["created_at", "2015-03-20 19:04:01.255524"], ["updated_at", "2015-03-20 19:04:01.255524"]]
784845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784846
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
784847
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
784848
+ 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]]
784849
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784850
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784851
+  (0.0ms) SAVEPOINT active_record_1
784852
+ SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "User"], ["created_at", "2015-03-20 19:04:01.262404"], ["updated_at", "2015-03-20 19:04:01.262404"]]
784853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784854
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
784855
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
784856
+ 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]]
784857
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784858
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784859
+  (0.0ms) SAVEPOINT active_record_1
784860
+ SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-03-20 19:04:01.269141"], ["updated_at", "2015-03-20 19:04:01.269141"]]
784861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784862
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
784863
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
784864
+ 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]]
784865
+ OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784866
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784867
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784868
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784869
+  (0.0ms) SAVEPOINT active_record_1
784870
+ SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-03-20 19:04:01.277689"], ["updated_at", "2015-03-20 19:04:01.277689"]]
784871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784872
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
784873
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
784874
+ 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]]
784875
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784876
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784877
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784878
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784879
+ OpenStax::Accounts::Group Load (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)
784880
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
784881
+  (0.5ms) rollback transaction
784882
+  (0.0ms) begin transaction
784883
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1
784884
+  (0.1ms) SAVEPOINT active_record_1
784885
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
784886
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2015-03-20 19:04:01.298645"], ["updated_at", "2015-03-20 19:04:01.298645"]]
784887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784888
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
784889
+  (0.3ms) rollback transaction
784890
+  (0.1ms) begin transaction
784891
+  (0.0ms) SAVEPOINT active_record_1
784892
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
784893
+ 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-03-20 19:04:01.304871"], ["updated_at", "2015-03-20 19:04:01.304871"]]
784894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784895
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784896
+ Processing by OauthController#token as */*
784897
+ Parameters: {"grant_type"=>"client_credentials"}
784898
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
784899
+ Started POST "/api/dummy?test=true" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784900
+ Processing by Api::DummyController#dummy as */*
784901
+ Parameters: {"test"=>"true"}
784902
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
784903
+  (0.5ms) rollback transaction
784904
+  (0.3ms) begin transaction
784905
+  (0.0ms) SAVEPOINT active_record_1
784906
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -961527898 LIMIT 1
784907
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -961527898], ["username", "152ae27fe174d789b25451622dcb3f19"], ["access_token", "8fc63093d05204115939d24e5c39e117"], ["created_at", "2015-03-20 19:04:01.354801"], ["updated_at", "2015-03-20 19:04:01.354801"]]
784908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784909
+  (0.0ms) SAVEPOINT active_record_1
784910
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2077803864 LIMIT 1
784911
+ SQL (0.3ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -2077803864], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.357673"], ["updated_at", "2015-03-20 19:04:01.357673"]]
784912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784913
+  (0.0ms) SAVEPOINT active_record_1
784914
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -2077803864 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
784915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784916
+ Started DELETE "/api/groups/-2077803864" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784917
+ Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1
784918
+ Parameters: {"id"=>"-2077803864"}
784919
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
784920
+  (0.5ms) rollback transaction
784921
+  (0.1ms) begin transaction
784922
+  (0.0ms) SAVEPOINT active_record_1
784923
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -635451453 LIMIT 1
784924
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -635451453], ["username", "b4b3a3663583542804c409f9857654b2"], ["access_token", "eceb0edc60a3d22d3578cefb74de0733"], ["created_at", "2015-03-20 19:04:01.373890"], ["updated_at", "2015-03-20 19:04:01.373890"]]
784925
+  (0.1ms) RELEASE SAVEPOINT active_record_1
784926
+  (0.1ms) SAVEPOINT active_record_1
784927
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1380853142 LIMIT 1
784928
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1380853142], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.376761"], ["updated_at", "2015-03-20 19:04:01.376761"]]
784929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784930
+ Started POST "/api/groups" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784931
+ Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1
784932
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil}
784933
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
784934
+  (0.5ms) rollback transaction
784935
+  (0.0ms) begin transaction
784936
+  (0.0ms) SAVEPOINT active_record_1
784937
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1143775111 LIMIT 1
784938
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1143775111], ["username", "461634036d31dabca37d294ccc454642"], ["access_token", "06ff33114d341e8652d03a96de279821"], ["created_at", "2015-03-20 19:04:01.386379"], ["updated_at", "2015-03-20 19:04:01.386379"]]
784939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784940
+  (0.0ms) SAVEPOINT active_record_1
784941
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -75220187 LIMIT 1
784942
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -75220187], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.388888"], ["updated_at", "2015-03-20 19:04:01.388888"]]
784943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784944
+  (0.0ms) SAVEPOINT active_record_1
784945
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -75220187 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
784946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784947
+ Started PUT "/api/groups/-75220187" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784948
+ Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1
784949
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil, "id"=>"-75220187"}
784950
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
784951
+  (0.4ms) rollback transaction
784952
+  (0.0ms) begin transaction
784953
+  (0.0ms) SAVEPOINT active_record_1
784954
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1943165105 LIMIT 1
784955
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1943165105], ["username", "64601fdf1cbda41d5b06d59fb3a4bace"], ["access_token", "d5470a10cd2528d799611394766c7d7e"], ["created_at", "2015-03-20 19:04:01.399708"], ["updated_at", "2015-03-20 19:04:01.399708"]]
784956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784957
+  (0.0ms) SAVEPOINT active_record_1
784958
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -380013051 LIMIT 1
784959
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -380013051], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.402370"], ["updated_at", "2015-03-20 19:04:01.402370"]]
784960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784961
+  (0.0ms) SAVEPOINT active_record_1
784962
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1999851045 LIMIT 1
784963
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1999851045], ["username", "495699b26001ed7127ef02d131ea1ba7"], ["access_token", "26eee6bce10e18a6587c0ff7f4571cf8"], ["created_at", "2015-03-20 19:04:01.404725"], ["updated_at", "2015-03-20 19:04:01.404725"]]
784964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784965
+ Started POST "/api/groups/-380013051/members/-1999851045" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784966
+ Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1
784967
+ Parameters: {"group_id"=>"-380013051", "user_id"=>"-1999851045"}
784968
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
784969
+  (0.6ms) rollback transaction
784970
+  (0.0ms) begin transaction
784971
+  (0.0ms) SAVEPOINT active_record_1
784972
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -835432254 LIMIT 1
784973
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -835432254], ["username", "9b9be463e82fa50115abd367852423a7"], ["access_token", "b4cd96885291cffc0ed27af876bb7432"], ["created_at", "2015-03-20 19:04:01.421137"], ["updated_at", "2015-03-20 19:04:01.421137"]]
784974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784975
+  (0.0ms) SAVEPOINT active_record_1
784976
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -708977092 LIMIT 1
784977
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -708977092], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.423720"], ["updated_at", "2015-03-20 19:04:01.423720"]]
784978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784979
+  (0.0ms) SAVEPOINT active_record_1
784980
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474318065 LIMIT 1
784981
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -474318065], ["username", "14ace4b87ea9b28ca87137633a558d22"], ["access_token", "e82a4b4f00a4a1ddcad7113f4e073b32"], ["created_at", "2015-03-20 19:04:01.426435"], ["updated_at", "2015-03-20 19:04:01.426435"]]
784982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784983
+  (0.0ms) SAVEPOINT active_record_1
784984
+ OpenStax::Accounts::GroupMember Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = -474318065 AND "openstax_accounts_group_members"."group_id" = -708977092) LIMIT 1
784985
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -708977092], ["user_id", -474318065], ["created_at", "2015-03-20 19:04:01.429037"], ["updated_at", "2015-03-20 19:04:01.429037"]]
784986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784987
+ Started DELETE "/api/groups/-708977092/members/-474318065" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
784988
+ Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1
784989
+ Parameters: {"group_id"=>"-708977092", "user_id"=>"-474318065"}
784990
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
784991
+  (0.5ms) rollback transaction
784992
+  (0.0ms) begin transaction
784993
+  (0.0ms) SAVEPOINT active_record_1
784994
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1208563093 LIMIT 1
784995
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1208563093], ["username", "46617ebb2bc77a25e681b405f730600e"], ["access_token", "df969a45b8fb8ffbf4fc8c577df96685"], ["created_at", "2015-03-20 19:04:01.438728"], ["updated_at", "2015-03-20 19:04:01.438728"]]
784996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784997
+  (0.1ms) SAVEPOINT active_record_1
784998
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2114816084 LIMIT 1
784999
+ SQL (0.3ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -2114816084], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.444560"], ["updated_at", "2015-03-20 19:04:01.444560"]]
785000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785001
+  (0.0ms) SAVEPOINT active_record_1
785002
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992055268 LIMIT 1
785003
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -992055268], ["username", "9ca38c261c5aea9e5327d9df7a9e44df"], ["access_token", "d4e857d661d12aef0e60fc71bbf52a7d"], ["created_at", "2015-03-20 19:04:01.449100"], ["updated_at", "2015-03-20 19:04:01.449100"]]
785004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785005
+ Started POST "/api/groups/-2114816084/owners/-992055268" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785006
+ Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1
785007
+ Parameters: {"group_id"=>"-2114816084", "user_id"=>"-992055268"}
785008
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785009
+  (0.5ms) rollback transaction
785010
+  (0.0ms) begin transaction
785011
+  (0.0ms) SAVEPOINT active_record_1
785012
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1690729305 LIMIT 1
785013
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1690729305], ["username", "3b4ab7e276498eaee630521757e4c056"], ["access_token", "64d4ceb3b27d051ca7d5994f8700f069"], ["created_at", "2015-03-20 19:04:01.465148"], ["updated_at", "2015-03-20 19:04:01.465148"]]
785014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785015
+  (0.0ms) SAVEPOINT active_record_1
785016
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -396716980 LIMIT 1
785017
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -396716980], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.468139"], ["updated_at", "2015-03-20 19:04:01.468139"]]
785018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
785019
+  (0.1ms) SAVEPOINT active_record_1
785020
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -359605276 LIMIT 1
785021
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -359605276], ["username", "48cda86b5d50ddf07377248ae2245172"], ["access_token", "36bdefc3a22cacb99eaab167c67928cd"], ["created_at", "2015-03-20 19:04:01.471057"], ["updated_at", "2015-03-20 19:04:01.471057"]]
785022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785023
+  (0.0ms) SAVEPOINT active_record_1
785024
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = -359605276 AND "openstax_accounts_group_owners"."group_id" = -396716980) LIMIT 1
785025
+ SQL (0.4ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -396716980], ["user_id", -359605276], ["created_at", "2015-03-20 19:04:01.474279"], ["updated_at", "2015-03-20 19:04:01.474279"]]
785026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
785027
+ Started DELETE "/api/groups/-396716980/owners/-359605276" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785028
+ Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1
785029
+ Parameters: {"group_id"=>"-396716980", "user_id"=>"-359605276"}
785030
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785031
+  (0.4ms) rollback transaction
785032
+  (0.0ms) begin transaction
785033
+  (0.0ms) SAVEPOINT active_record_1
785034
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785035
+ 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-03-20 19:04:01.485025"], ["updated_at", "2015-03-20 19:04:01.485025"]]
785036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785037
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785038
+ Processing by OauthController#token as */*
785039
+ Parameters: {"grant_type"=>"client_credentials"}
785040
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
785041
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785042
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
785043
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
785044
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785045
+  (0.5ms) rollback transaction
785046
+  (0.1ms) begin transaction
785047
+  (0.0ms) SAVEPOINT active_record_1
785048
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785049
+ 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-03-20 19:04:01.509170"], ["updated_at", "2015-03-20 19:04:01.509170"]]
785050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785051
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785052
+ Processing by OauthController#token as */*
785053
+ Parameters: {"grant_type"=>"client_credentials"}
785054
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785055
+ Started GET "/api/application_users?q=something" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785056
+ Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1
785057
+ Parameters: {"q"=>"something"}
785058
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785059
+  (0.6ms) rollback transaction
785060
+  (0.0ms) begin transaction
785061
+  (0.0ms) SAVEPOINT active_record_1
785062
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785063
+ 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-03-20 19:04:01.522995"], ["updated_at", "2015-03-20 19:04:01.522995"]]
785064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785065
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785066
+ Processing by OauthController#token as */*
785067
+ Parameters: {"grant_type"=>"client_credentials"}
785068
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785069
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785070
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
785071
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785072
+  (0.5ms) rollback transaction
785073
+  (0.0ms) begin transaction
785074
+  (0.1ms) SAVEPOINT active_record_1
785075
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785076
+ 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-03-20 19:04:01.537500"], ["updated_at", "2015-03-20 19:04:01.537500"]]
785077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785078
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785079
+ Processing by OauthController#token as */*
785080
+ Parameters: {"grant_type"=>"client_credentials"}
785081
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785082
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785083
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
785084
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785085
+  (0.4ms) rollback transaction
785086
+  (0.0ms) begin transaction
785087
+  (0.0ms) SAVEPOINT active_record_1
785088
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785089
+ SQL (0.3ms) 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-03-20 19:04:01.558280"], ["updated_at", "2015-03-20 19:04:01.558280"]]
785090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785091
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785092
+ Processing by OauthController#token as */*
785093
+ Parameters: {"grant_type"=>"client_credentials"}
785094
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785095
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785096
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
785097
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
785098
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785099
+  (0.4ms) rollback transaction
785100
+  (0.0ms) begin transaction
785101
+  (0.0ms) SAVEPOINT active_record_1
785102
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -562499291 LIMIT 1
785103
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -562499291], ["username", "1b6c9c13ad6e2716926769254d5e6f18"], ["access_token", "d5d9d5aeefeff58d55475a04673faa02"], ["created_at", "2015-03-20 19:04:01.573212"], ["updated_at", "2015-03-20 19:04:01.573212"]]
785104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785105
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785106
+ Processing by OauthController#token as */*
785107
+ Parameters: {"grant_type"=>"client_credentials"}
785108
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785109
+ Started GET "/api/users?q=something" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785110
+ Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1
785111
+ Parameters: {"q"=>"something"}
785112
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785113
+  (0.4ms) rollback transaction
785114
+  (0.1ms) begin transaction
785115
+  (0.0ms) SAVEPOINT active_record_1
785116
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1791865057 LIMIT 1
785117
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1791865057], ["username", "fe0df719c07762f0f6f1dab1a8dc75f4"], ["access_token", "a9cc49f7c8c0dcc4b0c832de786b3c85"], ["created_at", "2015-03-20 19:04:01.592852"], ["updated_at", "2015-03-20 19:04:01.592852"]]
785118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785119
+ Started PUT "/api/user" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785120
+ Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1
785121
+ Parameters: {"{\"username\":\"fe0df719c07762f0f6f1dab1a8dc75f4\",\"first_name\":null,\"last_name\":null,\"full_name\":null,\"title\":null}"=>nil}
785122
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785123
+  (0.7ms) rollback transaction
785124
+  (0.1ms) begin transaction
785125
+  (0.0ms) SAVEPOINT active_record_1
785126
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -749698999 LIMIT 1
785127
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -749698999], ["username", "bc381c552efb9a63941a52d5eaaf6cd8"], ["access_token", "d1c0e8897c50d5965b75f3bbfa9d9027"], ["created_at", "2015-03-20 19:04:01.602659"], ["updated_at", "2015-03-20 19:04:01.602659"]]
785128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785129
+  (0.0ms) SAVEPOINT active_record_1
785130
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -516699697 LIMIT 1
785131
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -516699697], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.605541"], ["updated_at", "2015-03-20 19:04:01.605541"]]
785132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785133
+  (0.0ms) SAVEPOINT active_record_1
785134
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1971301895 LIMIT 1
785135
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1971301895], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.608046"], ["updated_at", "2015-03-20 19:04:01.608046"]]
785136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785137
+ Started POST "/api/groups/-516699697/nestings/-1971301895" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785138
+ Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1
785139
+ Parameters: {"group_id"=>"-516699697", "member_group_id"=>"-1971301895"}
785140
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785141
+  (0.8ms) rollback transaction
785142
+  (0.0ms) begin transaction
785143
+  (0.0ms) SAVEPOINT active_record_1
785144
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -652042034 LIMIT 1
785145
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -652042034], ["username", "736a2cc9b8d0ab25cfff44b531042907"], ["access_token", "f83d340a4a357b4453df15804840f2be"], ["created_at", "2015-03-20 19:04:01.622921"], ["updated_at", "2015-03-20 19:04:01.622921"]]
785146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785147
+  (0.0ms) SAVEPOINT active_record_1
785148
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -953538207 LIMIT 1
785149
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -953538207], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.625734"], ["updated_at", "2015-03-20 19:04:01.625734"]]
785150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785151
+  (0.0ms) SAVEPOINT active_record_1
785152
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -473821671 LIMIT 1
785153
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -473821671], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.628278"], ["updated_at", "2015-03-20 19:04:01.628278"]]
785154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785155
+  (0.0ms) SAVEPOINT active_record_1
785156
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -473821671 LIMIT 1
785157
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
785158
+ 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", -473821671]]
785159
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
785160
+ - -473821671
785161
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
785162
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
785163
+ 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", -953538207]]
785164
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
785165
+ - -953538207
785166
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
785167
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -473821671
785168
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -953538207
785169
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -953538207], ["member_group_id", -473821671], ["created_at", "2015-03-20 19:04:01.630713"], ["updated_at", "2015-03-20 19:04:01.630713"]]
785170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
785171
+ Started DELETE "/api/groups/-953538207/nestings/-473821671" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785172
+ Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1
785173
+ Parameters: {"group_id"=>"-953538207", "member_group_id"=>"-473821671"}
785174
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785175
+  (0.5ms) rollback transaction
785176
+  (0.1ms) begin transaction
785177
+  (0.0ms) SAVEPOINT active_record_1
785178
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
785179
+ 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", "85e6a29b6a3e84c821953fe12cecd528"], ["created_at", "2015-03-20 19:04:01.649656"], ["updated_at", "2015-03-20 19:04:01.649656"]]
785180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785181
+ Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML
785182
+ Parameters: {"id"=>"10"}
785183
+ 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]]
785184
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
785185
+ Redirected to http://test.host/
785186
+ Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
785187
+  (0.8ms) rollback transaction
785188
+  (0.0ms) begin transaction
785189
+  (0.1ms) SAVEPOINT active_record_1
785190
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
785191
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["username", "u"], ["openstax_uid", 2], ["created_at", "2015-03-20 19:04:01.675026"], ["updated_at", "2015-03-20 19:04:01.675026"]]
785192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785193
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
785194
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785195
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785196
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785197
+ Processing by OauthController#token as */*
785198
+ Parameters: {"grant_type"=>"client_credentials"}
785199
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785200
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785201
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
785202
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785203
+ 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]]
785204
+  (0.0ms) SAVEPOINT active_record_1
785205
+ 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
785206
+ SQL (0.3ms) UPDATE "openstax_accounts_accounts" SET "username" = ?, "updated_at" = ? WHERE "openstax_accounts_accounts"."id" = ? [["username", "user"], ["updated_at", "2015-03-20 19:04:01.706507"], ["id", 1]]
785207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785208
+ 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]]
785209
+  (0.0ms) SAVEPOINT active_record_1
785210
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1
785211
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "fuego"], ["created_at", "2015-03-20 19:04:01.708978"], ["updated_at", "2015-03-20 19:04:01.708978"]]
785212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785213
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785214
+ Processing by OauthController#token as */*
785215
+ Parameters: {"grant_type"=>"client_credentials"}
785216
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785217
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785218
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
785219
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
785220
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785221
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
785222
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785223
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785224
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785225
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785226
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785227
+ Processing by OauthController#token as */*
785228
+ Parameters: {"grant_type"=>"client_credentials"}
785229
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785230
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785231
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
785232
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785233
+ 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]]
785234
+  (0.0ms) SAVEPOINT active_record_1
785235
+ 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
785236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785237
+ 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]]
785238
+  (0.0ms) SAVEPOINT active_record_1
785239
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 2) LIMIT 1
785240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785241
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785242
+ Processing by OauthController#token as */*
785243
+ Parameters: {"grant_type"=>"client_credentials"}
785244
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785245
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785246
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
785247
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
785248
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785249
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
785250
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785251
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785252
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785253
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785254
+  (0.4ms) rollback transaction
785255
+  (0.0ms) begin transaction
785256
+  (0.0ms) SAVEPOINT active_record_1
785257
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
785258
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "User"], ["created_at", "2015-03-20 19:04:01.755563"], ["updated_at", "2015-03-20 19:04:01.755563"]]
785259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785260
+  (0.0ms) SAVEPOINT active_record_1
785261
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1
785262
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "Fuego"], ["created_at", "2015-03-20 19:04:01.757645"], ["updated_at", "2015-03-20 19:04:01.757645"]]
785263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785264
+  (0.0ms) SAVEPOINT active_record_1
785265
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1
785266
+ 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-03-20 19:04:01.759852"], ["updated_at", "2015-03-20 19:04:01.759852"]]
785267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785268
+  (0.0ms) SAVEPOINT active_record_1
785269
+ 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
785270
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 2], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.762174"], ["updated_at", "2015-03-20 19:04:01.762174"]]
785271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785272
+  (0.0ms) SAVEPOINT active_record_1
785273
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1
785274
+ 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-03-20 19:04:01.764061"], ["updated_at", "2015-03-20 19:04:01.764061"]]
785275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785276
+  (0.0ms) SAVEPOINT active_record_1
785277
+ 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
785278
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 4], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.766294"], ["updated_at", "2015-03-20 19:04:01.766294"]]
785279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785280
+  (0.0ms) SAVEPOINT active_record_1
785281
+ 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
785282
+ SQL (0.2ms) 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-03-20 19:04:01.779364"], ["updated_at", "2015-03-20 19:04:01.779364"]]
785283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785284
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
785285
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785286
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785287
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785288
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 2], ["id", 1]]
785289
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785290
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785291
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785292
+ OpenStax::Accounts::Group Exists (0.2ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 4], ["id", 1]]
785293
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785294
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 4], ["id", 1]]
785295
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785296
+ Processing by OauthController#token as */*
785297
+ Parameters: {"grant_type"=>"client_credentials"}
785298
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785299
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785300
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
785301
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
785302
+ 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]]
785303
+ 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]]
785304
+  (0.0ms) SAVEPOINT active_record_1
785305
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 1]]
785306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785307
+ 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]]
785308
+ 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]]
785309
+ 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", 3]]
785310
+ 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]]
785311
+ 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]]
785312
+ 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]]
785313
+ 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]]
785314
+ 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]]
785315
+  (0.0ms) SAVEPOINT active_record_1
785316
+ 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
785317
+ SQL (0.2ms) 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-03-20 19:04:01.831499"], ["updated_at", "2015-03-20 19:04:01.831499"]]
785318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785319
+  (0.0ms) SAVEPOINT active_record_1
785320
+ 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
785321
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "name" = ?, "updated_at" = ? WHERE "openstax_accounts_groups"."id" = ? [["name", "M"], ["updated_at", "2015-03-20 19:04:01.834098"], ["id", 1]]
785322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785323
+ 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]]
785324
+  (0.2ms) SAVEPOINT active_record_1
785325
+ 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
785326
+ 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
785327
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1
785328
+ 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-03-20 19:04:01.839642"], ["updated_at", "2015-03-20 19:04:01.839642"]]
785329
+ 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
785330
+ 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-03-20 19:04:01.841709"], ["updated_at", "2015-03-20 19:04:01.841709"]]
785331
+ 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
785332
+ 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-03-20 19:04:01.843744"], ["updated_at", "2015-03-20 19:04:01.843744"]]
785333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785334
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785335
+ Processing by OauthController#token as */*
785336
+ Parameters: {"grant_type"=>"client_credentials"}
785337
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785338
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785339
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
785340
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
785341
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785342
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
785343
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785344
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785345
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785346
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785347
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 2], ["id", 3]]
785348
+ 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
785349
+ 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
785350
+ 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
785351
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785352
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 4], ["id", 1]]
785353
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785354
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785355
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785356
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785357
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 2]]
785358
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785359
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785360
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 1]]
785361
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785362
+ Processing by OauthController#token as */*
785363
+ Parameters: {"grant_type"=>"client_credentials"}
785364
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
785365
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785366
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
785367
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
785368
+ 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]]
785369
+ 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]]
785370
+ 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]]
785371
+  (0.1ms) SAVEPOINT active_record_1
785372
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = ? [["id", 2]]
785373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785374
+ 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", 3]]
785375
+  (0.0ms) SAVEPOINT active_record_1
785376
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = ? [["id", 2]]
785377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785378
+ 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]]
785379
+  (0.0ms) SAVEPOINT active_record_1
785380
+ SQL (0.0ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 2]]
785381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785382
+ 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]]
785383
+ 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]]
785384
+ 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]]
785385
+ 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]]
785386
+ 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]]
785387
+  (0.0ms) SAVEPOINT active_record_1
785388
+ 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
785389
+ 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-03-20 19:04:01.897189"], ["updated_at", "2015-03-20 19:04:01.897189"]]
785390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785391
+  (0.0ms) SAVEPOINT active_record_1
785392
+ 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
785393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
785394
+ 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]]
785395
+ 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]]
785396
+  (0.0ms) SAVEPOINT active_record_1
785397
+ 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
785398
+ 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-03-20 19:04:01.902721"], ["updated_at", "2015-03-20 19:04:01.902721"]]
785399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785400
+ 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]]
785401
+  (0.0ms) SAVEPOINT active_record_1
785402
+ 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
785403
+ 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-03-20 19:04:01.905910"], ["updated_at", "2015-03-20 19:04:01.905910"]]
785404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785405
+ 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]]
785406
+  (0.0ms) SAVEPOINT active_record_1
785407
+ 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
785408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785409
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785410
+ Processing by OauthController#token as */*
785411
+ Parameters: {"grant_type"=>"client_credentials"}
785412
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785413
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
785414
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
785415
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
785416
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
785417
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
785418
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785419
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785420
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785421
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785422
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 2], ["id", 3]]
785423
+ 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
785424
+ 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
785425
+ 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
785426
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
785427
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 4], ["id", 1]]
785428
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785429
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785430
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785431
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
785432
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 2]]
785433
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
785434
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
785435
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 1]]
785436
+  (0.6ms) rollback transaction
785437
+  (0.0ms) begin transaction
785438
+  (0.0ms) rollback transaction
785439
+  (0.0ms) begin transaction
785440
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" IS NULL LIMIT 1
785441
+  (0.0ms) SAVEPOINT active_record_1
785442
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785443
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "access_token", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["username", "211bb63095092120a1fbfcc41b8a5c12"], ["access_token", "6201fc58973013d55c48f6cbb09d9075"], ["openstax_uid", 1], ["created_at", "2015-03-20 19:04:01.937071"], ["updated_at", "2015-03-20 19:04:01.937071"]]
785444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
785445
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
785446
+  (0.9ms) rollback transaction