openstax_accounts 6.1.6 → 6.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5beebee0de217b106421803ab055d8632a96b8d6
4
- data.tar.gz: 124993a9487a71890a67af0b718dc6445e2bc9c4
3
+ metadata.gz: d5baab38c25cc2d119bc67c65740b6fa40a99056
4
+ data.tar.gz: 63ae3554c50de33b42dfabd0c7781ca4e5d10ea6
5
5
  SHA512:
6
- metadata.gz: a86203036903980de862c4b3f2573f9028c92010d9c36e489d33e657cf2a5144045e67360ed599f2ae9c2d1b3d9e91a477cad7131c67508d0a6d16ea21e5ff0f
7
- data.tar.gz: 9a8b57a17b33e03c94bac00ebe3d71837ec7d73459d45b191c252442b8ee1be103377a3b3d9c1a32410e80db633f4ccc731a62e739782366c8a6b4681ae83088
6
+ metadata.gz: bed53557a3e3179ce6dea7f0382571d9f7e3a6e4b073f30faa6f331e21644088b812f947b29f6dede5ae875d6e36231d55fbe4b16ffcdd5537871467ec12fd51
7
+ data.tar.gz: e18a4a56e5e93a5b65a61abf5cff7675aaf6d73620a8d6187953ba25580f4f2055a5e6a37253dd81d2f4da3ef88a523347700a7c545baa36e0768eff1599c785
@@ -9,11 +9,11 @@ module OpenStax
9
9
  def exec(owner:, name: nil, is_public: false)
10
10
  group = OpenStax::Accounts::Group.new(name: name, is_public: is_public)
11
11
  group.requestor = owner
12
- member = group.add_member(owner)
13
- owner = group.add_owner(owner)
12
+ group.add_member(owner)
13
+ group.add_owner(owner)
14
14
 
15
15
  group.openstax_uid = -SecureRandom.hex(4).to_i(16)/2 \
16
- if OpenStax::Accounts.configuration.enable_stubbing
16
+ if OpenStax::Accounts.configuration.enable_stubbing? || !owner.has_authenticated?
17
17
 
18
18
  group.save
19
19
 
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Accounts
3
- VERSION = "6.1.6"
3
+ VERSION = "6.1.7"
4
4
  end
5
5
  end
@@ -1077080,3 +1077080,3052 @@ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077080
1077080
  OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-877132123, -1095023366)
1077081
1077081
  Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1077082
1077082
   (0.8ms) rollback transaction
1077083
+  (1.1ms) 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) 
1077084
+  (0.1ms) select sqlite_version(*)
1077085
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
1077086
+  (0.1ms) SELECT sql
1077087
+ FROM sqlite_master
1077088
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077089
+ UNION ALL
1077090
+ SELECT sql
1077091
+ FROM sqlite_temp_master
1077092
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077093
+
1077094
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
1077095
+  (0.1ms) SELECT sql
1077096
+ FROM sqlite_master
1077097
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077098
+ UNION ALL
1077099
+ SELECT sql
1077100
+ FROM sqlite_temp_master
1077101
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077102
+
1077103
+  (0.1ms)  SELECT sql
1077104
+ FROM sqlite_master
1077105
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077106
+ UNION ALL
1077107
+ SELECT sql
1077108
+ FROM sqlite_temp_master
1077109
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077110
+ 
1077111
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
1077112
+  (0.1ms)  SELECT sql
1077113
+ FROM sqlite_master
1077114
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077115
+ UNION ALL
1077116
+ SELECT sql
1077117
+ FROM sqlite_temp_master
1077118
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077119
+ 
1077120
+  (0.1ms) SELECT sql
1077121
+ FROM sqlite_master
1077122
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077123
+ UNION ALL
1077124
+ SELECT sql
1077125
+ FROM sqlite_temp_master
1077126
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077127
+
1077128
+  (0.1ms)  SELECT sql
1077129
+ FROM sqlite_master
1077130
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077131
+ UNION ALL
1077132
+ SELECT sql
1077133
+ FROM sqlite_temp_master
1077134
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077135
+ 
1077136
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
1077137
+  (0.1ms)  SELECT sql
1077138
+ FROM sqlite_master
1077139
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1077140
+ UNION ALL
1077141
+ SELECT sql
1077142
+ FROM sqlite_temp_master
1077143
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1077144
+ 
1077145
+  (0.1ms) SELECT sql
1077146
+ FROM sqlite_master
1077147
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077148
+ UNION ALL
1077149
+ SELECT sql
1077150
+ FROM sqlite_temp_master
1077151
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077152
+
1077153
+  (0.1ms)  SELECT sql
1077154
+ FROM sqlite_master
1077155
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077156
+ UNION ALL
1077157
+ SELECT sql
1077158
+ FROM sqlite_temp_master
1077159
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077160
+ 
1077161
+  (0.1ms) SELECT sql
1077162
+ FROM sqlite_master
1077163
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077164
+ UNION ALL
1077165
+ SELECT sql
1077166
+ FROM sqlite_temp_master
1077167
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077168
+
1077169
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
1077170
+  (0.1ms) SELECT sql
1077171
+ FROM sqlite_master
1077172
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
1077173
+ UNION ALL
1077174
+ SELECT sql
1077175
+ FROM sqlite_temp_master
1077176
+ WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
1077177
+
1077178
+  (0.1ms)  SELECT sql
1077179
+ FROM sqlite_master
1077180
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1077181
+ UNION ALL
1077182
+ SELECT sql
1077183
+ FROM sqlite_temp_master
1077184
+ WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
1077185
+ 
1077186
+  (0.1ms) SELECT sql
1077187
+ FROM sqlite_master
1077188
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077189
+ UNION ALL
1077190
+ SELECT sql
1077191
+ FROM sqlite_temp_master
1077192
+ WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
1077193
+
1077194
+  (0.1ms)  SELECT sql
1077195
+ FROM sqlite_master
1077196
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077197
+ UNION ALL
1077198
+ SELECT sql
1077199
+ FROM sqlite_temp_master
1077200
+ WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
1077201
+ 
1077202
+  (0.1ms) SELECT sql
1077203
+ FROM sqlite_master
1077204
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077205
+ UNION ALL
1077206
+ SELECT sql
1077207
+ FROM sqlite_temp_master
1077208
+ WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
1077209
+
1077210
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
1077211
+  (0.9ms) 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)
1077212
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" ("group_id", "user_id")
1077213
+  (0.1ms) SELECT sql
1077214
+ FROM sqlite_master
1077215
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
1077216
+ UNION ALL
1077217
+ SELECT sql
1077218
+ FROM sqlite_temp_master
1077219
+ WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
1077220
+
1077221
+  (0.8ms) CREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" ("user_id")
1077222
+  (0.9ms) 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)
1077223
+  (0.9ms) CREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" ("container_group_id")
1077224
+  (0.1ms) SELECT sql
1077225
+ FROM sqlite_master
1077226
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
1077227
+ UNION ALL
1077228
+ SELECT sql
1077229
+ FROM sqlite_temp_master
1077230
+ WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
1077231
+
1077232
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" ("member_group_id")
1077233
+  (0.9ms) 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)
1077234
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" ("group_id", "user_id")
1077235
+  (0.1ms) SELECT sql
1077236
+ FROM sqlite_master
1077237
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
1077238
+ UNION ALL
1077239
+ SELECT sql
1077240
+ FROM sqlite_temp_master
1077241
+ WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
1077242
+
1077243
+  (0.8ms) CREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" ("user_id")
1077244
+  (0.8ms) CREATE TABLE "openstax_accounts_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" varchar, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" datetime, "updated_at" datetime)
1077245
+  (0.8ms) CREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" ("is_public")
1077246
+  (0.1ms) SELECT sql
1077247
+ FROM sqlite_master
1077248
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
1077249
+ UNION ALL
1077250
+ SELECT sql
1077251
+ FROM sqlite_temp_master
1077252
+ WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
1077253
+
1077254
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" ("openstax_uid")
1077255
+  (0.8ms) CREATE TABLE "ownerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer NOT NULL, "owner_type" varchar NOT NULL, "created_at" datetime, "updated_at" datetime)
1077256
+  (0.7ms) CREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" ("owner_id", "owner_type")
1077257
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
1077258
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_account_id" ON "users" ("account_id")
1077259
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1077260
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1077261
+  (0.1ms) SELECT version FROM "schema_migrations"
1077262
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('6')
1077263
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('5')
1077264
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1077265
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
1077266
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('2')
1077267
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('3')
1077268
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('4')
1077269
+  (0.4ms) begin transaction
1077270
+  (0.1ms) SAVEPOINT active_record_1
1077271
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077272
+ SQL (0.4ms) 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-11-18 21:17:21.956137"], ["updated_at", "2015-11-18 21:17:21.956137"]]
1077273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077274
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:21 -0600
1077275
+ Processing by OauthController#token as */*
1077276
+ Parameters: {"grant_type"=>"client_credentials"}
1077277
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1077278
+ Started POST "/api/dummy?test=true" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077279
+ Processing by Api::DummyController#dummy as application/vnd.accounts.openstax.v1
1077280
+ Parameters: {"test"=>"true"}
1077281
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077282
+  (0.5ms) rollback transaction
1077283
+  (0.4ms) begin transaction
1077284
+  (0.0ms) SAVEPOINT active_record_1
1077285
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1998581612 LIMIT 1
1077286
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1998581612], ["username", "2ffcc5aa713a83446fb6e12111149c9a"], ["access_token", "2df49aabb466d4f72b4d0ae89bbc0e2c"], ["created_at", "2015-11-18 21:17:22.016404"], ["updated_at", "2015-11-18 21:17:22.016404"]]
1077287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077288
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077289
+ Processing by OauthController#token as */*
1077290
+ Parameters: {"grant_type"=>"client_credentials"}
1077291
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077292
+ Started GET "/api/users?q=something" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077293
+ Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1
1077294
+ Parameters: {"q"=>"something"}
1077295
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077296
+  (0.5ms) rollback transaction
1077297
+  (0.0ms) begin transaction
1077298
+  (0.0ms) SAVEPOINT active_record_1
1077299
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -388614801 LIMIT 1
1077300
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -388614801], ["username", "791a9ec036fbb94a8e63c27d8a9525c1"], ["access_token", "63af060eef26d6c225cffb15a3b9b1fa"], ["created_at", "2015-11-18 21:17:22.038642"], ["updated_at", "2015-11-18 21:17:22.038642"]]
1077301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077302
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077303
+ Processing by OauthController#token as */*
1077304
+ Parameters: {"grant_type"=>"client_credentials"}
1077305
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077306
+ Started POST "/api/user/find-or-create" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077307
+ Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1
1077308
+ Parameters: {"{\"email\":\"dummy@dum.my\"}"=>nil}
1077309
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077310
+  (0.5ms) rollback transaction
1077311
+  (0.0ms) begin transaction
1077312
+  (0.0ms) SAVEPOINT active_record_1
1077313
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -179834116 LIMIT 1
1077314
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -179834116], ["username", "11f0624be67b2acb4a6b0d04398390a7"], ["access_token", "b2f4cb04c0ddbdac22ea31434826390c"], ["created_at", "2015-11-18 21:17:22.057299"], ["updated_at", "2015-11-18 21:17:22.057299"]]
1077315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077316
+ Started PUT "/api/user" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077317
+ Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1
1077318
+ Parameters: {"{\"username\":\"11f0624be67b2acb4a6b0d04398390a7\",\"first_name\":null,\"last_name\":null,\"full_name\":null,\"title\":null}"=>nil}
1077319
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077320
+  (0.4ms) rollback transaction
1077321
+  (0.0ms) begin transaction
1077322
+  (0.0ms) SAVEPOINT active_record_1
1077323
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1499706753 LIMIT 1
1077324
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1499706753], ["username", "895f3eed0c37ef6cfe80f28ffab3eca7"], ["access_token", "21ec21f18a1deb0dc5768c8248b8c345"], ["created_at", "2015-11-18 21:17:22.067186"], ["updated_at", "2015-11-18 21:17:22.067186"]]
1077325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077326
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077327
+ Processing by OauthController#token as */*
1077328
+ Parameters: {"grant_type"=>"client_credentials"}
1077329
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077330
+ Started POST "/api/user/find-or-create" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077331
+ Processing by Api::UsersController#create as application/vnd.accounts.openstax.v1
1077332
+ Parameters: {"{\"username\":\"dummy\"}"=>nil}
1077333
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077334
+  (0.5ms) rollback transaction
1077335
+  (0.0ms) begin transaction
1077336
+  (0.0ms) SAVEPOINT active_record_1
1077337
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1173159777 LIMIT 1
1077338
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1173159777], ["username", "36f2e454552722a550697ecf9feab3e6"], ["access_token", "73913cc1fb245de274afe9bbd5ca136a"], ["created_at", "2015-11-18 21:17:22.083629"], ["updated_at", "2015-11-18 21:17:22.083629"]]
1077339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077340
+  (0.0ms) SAVEPOINT active_record_1
1077341
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1516272788 LIMIT 1
1077342
+ SQL (0.8ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1516272788], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.093554"], ["updated_at", "2015-11-18 21:17:22.093554"]]
1077343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077344
+  (0.0ms) SAVEPOINT active_record_1
1077345
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -408960827 LIMIT 1
1077346
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -408960827], ["username", "9bb22b7bf0ef2e0cf3f010dbbd76062e"], ["access_token", "1cab601c802c21282b11a13c5b631aea"], ["created_at", "2015-11-18 21:17:22.103483"], ["updated_at", "2015-11-18 21:17:22.103483"]]
1077347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077348
+ Started POST "/api/groups/-1516272788/owners/-408960827" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077349
+ Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1
1077350
+ Parameters: {"group_id"=>"-1516272788", "user_id"=>"-408960827"}
1077351
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077352
+  (0.6ms) rollback transaction
1077353
+  (0.1ms) begin transaction
1077354
+  (0.0ms) SAVEPOINT active_record_1
1077355
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -813659679 LIMIT 1
1077356
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -813659679], ["username", "eee2adf3e440021248b07d06d2b7dee2"], ["access_token", "8e7805b019873e3952559e12e8c42a59"], ["created_at", "2015-11-18 21:17:22.122213"], ["updated_at", "2015-11-18 21:17:22.122213"]]
1077357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077358
+  (0.0ms) SAVEPOINT active_record_1
1077359
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1607555450 LIMIT 1
1077360
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1607555450], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.124795"], ["updated_at", "2015-11-18 21:17:22.124795"]]
1077361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077362
+  (0.0ms) SAVEPOINT active_record_1
1077363
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -658482346 LIMIT 1
1077364
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -658482346], ["username", "f80f2bc16013c55b7bd7d9591d59c7a9"], ["access_token", "4b24e9f824ff21929288f8ecec45fc8e"], ["created_at", "2015-11-18 21:17:22.126889"], ["updated_at", "2015-11-18 21:17:22.126889"]]
1077365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077366
+  (0.0ms) SAVEPOINT active_record_1
1077367
+ 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" = -1607555450) LIMIT 1
1077368
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -1607555450], ["user_id", -658482346], ["created_at", "2015-11-18 21:17:22.129277"], ["updated_at", "2015-11-18 21:17:22.129277"]]
1077369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077370
+ Started DELETE "/api/groups/-1607555450/owners/-658482346" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077371
+ Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1
1077372
+ Parameters: {"group_id"=>"-1607555450", "user_id"=>"-658482346"}
1077373
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077374
+  (0.6ms) rollback transaction
1077375
+  (0.0ms) begin transaction
1077376
+  (0.0ms) SAVEPOINT active_record_1
1077377
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077378
+ 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-11-18 21:17:22.141005"], ["updated_at", "2015-11-18 21:17:22.141005"]]
1077379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077380
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077381
+ Processing by OauthController#token as */*
1077382
+ Parameters: {"grant_type"=>"client_credentials"}
1077383
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077384
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077385
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1077386
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077387
+  (0.5ms) rollback transaction
1077388
+  (0.1ms) begin transaction
1077389
+  (0.0ms) SAVEPOINT active_record_1
1077390
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077391
+ 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-11-18 21:17:22.162656"], ["updated_at", "2015-11-18 21:17:22.162656"]]
1077392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077393
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077394
+ Processing by OauthController#token as */*
1077395
+ Parameters: {"grant_type"=>"client_credentials"}
1077396
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077397
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077398
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1077399
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
1077400
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077401
+  (0.6ms) rollback transaction
1077402
+  (0.0ms) begin transaction
1077403
+  (0.0ms) SAVEPOINT active_record_1
1077404
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185833173 LIMIT 1
1077405
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1185833173], ["username", "c1c5c3c31cf96b7372adae577d355d50"], ["access_token", "6a6f37fae5b0191faef13c72c38eb8f2"], ["created_at", "2015-11-18 21:17:22.180292"], ["updated_at", "2015-11-18 21:17:22.180292"]]
1077406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077407
+  (0.0ms) SAVEPOINT active_record_1
1077408
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1857019199 LIMIT 1
1077409
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1857019199], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.182469"], ["updated_at", "2015-11-18 21:17:22.182469"]]
1077410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077411
+ Started POST "/api/groups" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077412
+ Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1
1077413
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil}
1077414
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077415
+  (0.7ms) rollback transaction
1077416
+  (0.1ms) begin transaction
1077417
+  (0.0ms) SAVEPOINT active_record_1
1077418
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1453521088 LIMIT 1
1077419
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1453521088], ["username", "a615c868e573f471728a5dc6fd62b3de"], ["access_token", "7701c79a5d260194447c15e6be4eb979"], ["created_at", "2015-11-18 21:17:22.197236"], ["updated_at", "2015-11-18 21:17:22.197236"]]
1077420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077421
+  (0.1ms) SAVEPOINT active_record_1
1077422
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -359668276 LIMIT 1
1077423
+ SQL (0.3ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -359668276], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.200577"], ["updated_at", "2015-11-18 21:17:22.200577"]]
1077424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077425
+  (0.0ms) SAVEPOINT active_record_1
1077426
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -359668276 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1077427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077428
+ Started DELETE "/api/groups/-359668276" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077429
+ Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1
1077430
+ Parameters: {"id"=>"-359668276"}
1077431
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077432
+  (0.6ms) rollback transaction
1077433
+  (0.1ms) begin transaction
1077434
+  (0.0ms) SAVEPOINT active_record_1
1077435
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -760924951 LIMIT 1
1077436
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -760924951], ["username", "934a7d2611797f87725c698516917044"], ["access_token", "1a3f835692c3789d938c91b661959e07"], ["created_at", "2015-11-18 21:17:22.214753"], ["updated_at", "2015-11-18 21:17:22.214753"]]
1077437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077438
+  (0.0ms) SAVEPOINT active_record_1
1077439
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -834657079 LIMIT 1
1077440
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -834657079], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.217075"], ["updated_at", "2015-11-18 21:17:22.217075"]]
1077441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077442
+  (0.0ms) SAVEPOINT active_record_1
1077443
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -834657079 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
1077444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077445
+ Started PUT "/api/groups/-834657079" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077446
+ Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1
1077447
+ Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil, "id"=>"-834657079"}
1077448
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077449
+  (0.6ms) rollback transaction
1077450
+  (0.1ms) begin transaction
1077451
+  (0.0ms) SAVEPOINT active_record_1
1077452
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -433676634 LIMIT 1
1077453
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -433676634], ["username", "e315405aa4e1780de6141ccaf33f276f"], ["access_token", "ef2d3bf168dfbc39739a0e37d9d86c7e"], ["created_at", "2015-11-18 21:17:22.230165"], ["updated_at", "2015-11-18 21:17:22.230165"]]
1077454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077455
+  (0.0ms) SAVEPOINT active_record_1
1077456
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1342732054 LIMIT 1
1077457
+ SQL (0.4ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1342732054], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.235602"], ["updated_at", "2015-11-18 21:17:22.235602"]]
1077458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077459
+  (0.0ms) SAVEPOINT active_record_1
1077460
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -745912586 LIMIT 1
1077461
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -745912586], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.240026"], ["updated_at", "2015-11-18 21:17:22.240026"]]
1077462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077463
+ Started POST "/api/groups/-1342732054/nestings/-745912586" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077464
+ Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1
1077465
+ Parameters: {"group_id"=>"-1342732054", "member_group_id"=>"-745912586"}
1077466
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077467
+  (0.6ms) rollback transaction
1077468
+  (0.0ms) begin transaction
1077469
+  (0.0ms) SAVEPOINT active_record_1
1077470
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1002003538 LIMIT 1
1077471
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1002003538], ["username", "3f298fd1d715ed8523321f93ef70e6e5"], ["access_token", "631670e76abd68396312a2c1e806b448"], ["created_at", "2015-11-18 21:17:22.260281"], ["updated_at", "2015-11-18 21:17:22.260281"]]
1077472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077473
+  (0.0ms) SAVEPOINT active_record_1
1077474
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1482034554 LIMIT 1
1077475
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1482034554], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.263079"], ["updated_at", "2015-11-18 21:17:22.263079"]]
1077476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077477
+  (0.0ms) SAVEPOINT active_record_1
1077478
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1107628846 LIMIT 1
1077479
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1107628846], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.265264"], ["updated_at", "2015-11-18 21:17:22.265264"]]
1077480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077481
+  (0.0ms) SAVEPOINT active_record_1
1077482
+ 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
1077483
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1077484
+ 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"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", -1107628846]]
1077485
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
1077486
+ - -1107628846
1077487
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1077488
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
1077489
+ 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", -1482034554]]
1077490
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1077491
+ - -1482034554
1077492
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
1077493
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1107628846
1077494
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1482034554
1077495
+ SQL (0.2ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -1482034554], ["member_group_id", -1107628846], ["created_at", "2015-11-18 21:17:22.267917"], ["updated_at", "2015-11-18 21:17:22.267917"]]
1077496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077497
+ Started DELETE "/api/groups/-1482034554/nestings/-1107628846" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077498
+ Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1
1077499
+ Parameters: {"group_id"=>"-1482034554", "member_group_id"=>"-1107628846"}
1077500
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077501
+  (0.5ms) rollback transaction
1077502
+  (0.0ms) begin transaction
1077503
+  (0.0ms) SAVEPOINT active_record_1
1077504
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077505
+ 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-11-18 21:17:22.296311"], ["updated_at", "2015-11-18 21:17:22.296311"]]
1077506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077507
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077508
+ Processing by OauthController#token as */*
1077509
+ Parameters: {"grant_type"=>"client_credentials"}
1077510
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077511
+ Started GET "/api/application_users?q=something" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077512
+ Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1
1077513
+ Parameters: {"q"=>"something"}
1077514
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077515
+  (0.6ms) rollback transaction
1077516
+  (0.0ms) begin transaction
1077517
+  (0.0ms) SAVEPOINT active_record_1
1077518
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077519
+ 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-11-18 21:17:22.318572"], ["updated_at", "2015-11-18 21:17:22.318572"]]
1077520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077521
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077522
+ Processing by OauthController#token as */*
1077523
+ Parameters: {"grant_type"=>"client_credentials"}
1077524
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077525
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077526
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1077527
+ Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
1077528
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077529
+  (0.5ms) rollback transaction
1077530
+  (0.0ms) begin transaction
1077531
+  (0.0ms) SAVEPOINT active_record_1
1077532
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077533
+ 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-11-18 21:17:22.336221"], ["updated_at", "2015-11-18 21:17:22.336221"]]
1077534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077535
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077536
+ Processing by OauthController#token as */*
1077537
+ Parameters: {"grant_type"=>"client_credentials"}
1077538
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077539
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077540
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1077541
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077542
+  (0.6ms) rollback transaction
1077543
+  (0.0ms) begin transaction
1077544
+  (0.0ms) SAVEPOINT active_record_1
1077545
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1421484324 LIMIT 1
1077546
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1421484324], ["username", "be28511d30ec9fdc548994e7bf15bbf3"], ["access_token", "a48ac1b53860a44c0daf01d317e49d9e"], ["created_at", "2015-11-18 21:17:22.354666"], ["updated_at", "2015-11-18 21:17:22.354666"]]
1077547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077548
+  (0.0ms) SAVEPOINT active_record_1
1077549
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -806681745 LIMIT 1
1077550
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -806681745], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.359672"], ["updated_at", "2015-11-18 21:17:22.359672"]]
1077551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077552
+  (0.1ms) SAVEPOINT active_record_1
1077553
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -236166583 LIMIT 1
1077554
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -236166583], ["username", "e2fc92597ede1461be7e2d23b8ecf002"], ["access_token", "67f41672725d94ded794eca2587ac1dd"], ["created_at", "2015-11-18 21:17:22.363135"], ["updated_at", "2015-11-18 21:17:22.363135"]]
1077555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077556
+ Started POST "/api/groups/-806681745/members/-236166583" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077557
+ Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1
1077558
+ Parameters: {"group_id"=>"-806681745", "user_id"=>"-236166583"}
1077559
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077560
+  (0.6ms) rollback transaction
1077561
+  (0.1ms) begin transaction
1077562
+  (0.0ms) SAVEPOINT active_record_1
1077563
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1412146068 LIMIT 1
1077564
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1412146068], ["username", "106a0a55d27fb91ab6b6aa72da4ec485"], ["access_token", "fb11a437603fdb384cf8077e5256f544"], ["created_at", "2015-11-18 21:17:22.379604"], ["updated_at", "2015-11-18 21:17:22.379604"]]
1077565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077566
+  (0.0ms) SAVEPOINT active_record_1
1077567
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -498133793 LIMIT 1
1077568
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -498133793], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:22.382242"], ["updated_at", "2015-11-18 21:17:22.382242"]]
1077569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077570
+  (0.0ms) SAVEPOINT active_record_1
1077571
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -466137510 LIMIT 1
1077572
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -466137510], ["username", "96bbb4d7e9b884f13428309d3409fc8b"], ["access_token", "78658c5b9df09ccd384447288c150422"], ["created_at", "2015-11-18 21:17:22.384364"], ["updated_at", "2015-11-18 21:17:22.384364"]]
1077573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077574
+  (0.0ms) SAVEPOINT active_record_1
1077575
+ 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" = -498133793) LIMIT 1
1077576
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -498133793], ["user_id", -466137510], ["created_at", "2015-11-18 21:17:22.386724"], ["updated_at", "2015-11-18 21:17:22.386724"]]
1077577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077578
+ Started DELETE "/api/groups/-498133793/members/-466137510" for 127.0.0.1 at 2015-11-18 15:17:22 -0600
1077579
+ Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1
1077580
+ Parameters: {"group_id"=>"-498133793", "user_id"=>"-466137510"}
1077581
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077582
+  (0.7ms) rollback transaction
1077583
+  (0.1ms) begin transaction
1077584
+  (0.0ms) SAVEPOINT active_record_1
1077585
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077586
+ 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", "c6c8b1ad12e0cca3d581591128e38a1d"], ["created_at", "2015-11-18 21:17:22.398828"], ["updated_at", "2015-11-18 21:17:22.398828"]]
1077587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077588
+  (0.0ms) SAVEPOINT active_record_1
1077589
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:22.403575"], ["updated_at", "2015-11-18 21:17:22.403575"]]
1077590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077591
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077592
+  (0.6ms) rollback transaction
1077593
+  (0.1ms) begin transaction
1077594
+  (0.0ms) SAVEPOINT active_record_1
1077595
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077596
+ 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", "72504878a0e0ab17e1daa4a57d9577bb"], ["created_at", "2015-11-18 21:17:22.781657"], ["updated_at", "2015-11-18 21:17:22.781657"]]
1077597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077598
+  (0.0ms) SAVEPOINT active_record_1
1077599
+ SQL (0.3ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:22.783461"], ["updated_at", "2015-11-18 21:17:22.783461"]]
1077600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077601
+  (0.5ms) rollback transaction
1077602
+  (0.1ms) begin transaction
1077603
+  (0.0ms) SAVEPOINT active_record_1
1077604
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077605
+ 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", "0163b9d1751894abe81aafb46af759d8"], ["created_at", "2015-11-18 21:17:23.158852"], ["updated_at", "2015-11-18 21:17:23.158852"]]
1077606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077607
+  (0.0ms) SAVEPOINT active_record_1
1077608
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:23.160397"], ["updated_at", "2015-11-18 21:17:23.160397"]]
1077609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077610
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077611
+  (1.1ms) rollback transaction
1077612
+  (0.1ms) begin transaction
1077613
+  (0.0ms) SAVEPOINT active_record_1
1077614
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077615
+ 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", "a669bd354a88825ea82c8c04e9d6a9f6"], ["created_at", "2015-11-18 21:17:23.516502"], ["updated_at", "2015-11-18 21:17:23.516502"]]
1077616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077617
+  (0.0ms) SAVEPOINT active_record_1
1077618
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:23.518061"], ["updated_at", "2015-11-18 21:17:23.518061"]]
1077619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077620
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077621
+ 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]]
1077622
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077623
+ 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]]
1077624
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077625
+  (1.1ms) rollback transaction
1077626
+  (0.1ms) begin transaction
1077627
+  (0.0ms) SAVEPOINT active_record_1
1077628
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1077629
+ 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", "6400058eb218b15219f13dddd4434520"], ["created_at", "2015-11-18 21:17:23.883233"], ["updated_at", "2015-11-18 21:17:23.883233"]]
1077630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077631
+  (0.0ms) SAVEPOINT active_record_1
1077632
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:23.884778"], ["updated_at", "2015-11-18 21:17:23.884778"]]
1077633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077634
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077635
+ 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]]
1077636
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077637
+  (1.1ms) rollback transaction
1077638
+  (0.1ms) begin transaction
1077639
+  (0.1ms) SAVEPOINT active_record_1
1077640
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1077641
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "User"], ["created_at", "2015-11-18 21:17:24.277035"], ["updated_at", "2015-11-18 21:17:24.277035"]]
1077642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077643
+  (0.0ms) SAVEPOINT active_record_1
1077644
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1
1077645
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "Fuego"], ["created_at", "2015-11-18 21:17:24.278967"], ["updated_at", "2015-11-18 21:17:24.278967"]]
1077646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077647
+  (0.0ms) SAVEPOINT active_record_1
1077648
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1
1077649
+ 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-11-18 21:17:24.280686"], ["updated_at", "2015-11-18 21:17:24.280686"]]
1077650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077651
+  (0.0ms) SAVEPOINT active_record_1
1077652
+ 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" = 2) LIMIT 1
1077653
+ 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-11-18 21:17:24.282630"], ["updated_at", "2015-11-18 21:17:24.282630"]]
1077654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077655
+  (0.0ms) SAVEPOINT active_record_1
1077656
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1
1077657
+ 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-11-18 21:17:24.284316"], ["updated_at", "2015-11-18 21:17:24.284316"]]
1077658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077659
+  (0.0ms) SAVEPOINT active_record_1
1077660
+ OpenStax::Accounts::GroupOwner Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 1 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1
1077661
+ 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-11-18 21:17:24.286111"], ["updated_at", "2015-11-18 21:17:24.286111"]]
1077662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077663
+  (0.0ms) SAVEPOINT active_record_1
1077664
+ OpenStax::Accounts::GroupNesting Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 1 LIMIT 1
1077665
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2015-11-18 21:17:24.287866"], ["updated_at", "2015-11-18 21:17:24.287866"]]
1077666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077667
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1077668
+ OpenStax::Accounts::Group Load (11.4ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077669
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077670
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077671
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 2], ["id", 1]]
1077672
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077673
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077674
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077675
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1077676
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077677
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 4], ["id", 1]]
1077678
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077679
+ Processing by OauthController#token as */*
1077680
+ Parameters: {"grant_type"=>"client_credentials"}
1077681
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077682
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077683
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1077684
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1077685
+ 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]]
1077686
+ 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]]
1077687
+  (0.0ms) SAVEPOINT active_record_1
1077688
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 1]]
1077689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077690
+ 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]]
1077691
+ 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]]
1077692
+ 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]]
1077693
+ 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]]
1077694
+ 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]]
1077695
+ 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]]
1077696
+  (0.0ms) SAVEPOINT active_record_1
1077697
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1077698
+ 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" = 3) LIMIT 1
1077699
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 2]]
1077700
+ 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" = 3) LIMIT 1
1077701
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1
1077702
+ 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-11-18 21:17:24.359924"], ["updated_at", "2015-11-18 21:17:24.359924"]]
1077703
+ 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" = 3) LIMIT 1
1077704
+ 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-11-18 21:17:24.361656"], ["updated_at", "2015-11-18 21:17:24.361656"]]
1077705
+ 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" = 3) LIMIT 1
1077706
+ 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-11-18 21:17:24.363203"], ["updated_at", "2015-11-18 21:17:24.363203"]]
1077707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077708
+ 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]]
1077709
+ 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]]
1077710
+ 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]]
1077711
+  (0.0ms) SAVEPOINT active_record_1
1077712
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1077713
+ OpenStax::Accounts::GroupNesting Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1
1077714
+ 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-11-18 21:17:24.368567"], ["updated_at", "2015-11-18 21:17:24.368567"]]
1077715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077716
+  (0.0ms) SAVEPOINT active_record_1
1077717
+ 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
1077718
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "name" = ?, "updated_at" = ? WHERE "openstax_accounts_groups"."id" = ? [["name", "M"], ["updated_at", "2015-11-18 21:17:24.370949"], ["id", 1]]
1077719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077720
+  (0.0ms) SAVEPOINT active_record_1
1077721
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1
1077722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077723
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077724
+ Processing by OauthController#token as */*
1077725
+ Parameters: {"grant_type"=>"client_credentials"}
1077726
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077727
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077728
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1077729
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
1077730
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077731
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1077732
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077733
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077734
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077735
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077736
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 2], ["id", 3]]
1077737
+ 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
1077738
+ 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
1077739
+ 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
1077740
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077741
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1077742
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077743
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077744
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077745
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1077746
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 2]]
1077747
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077748
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1077749
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 1]]
1077750
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077751
+ Processing by OauthController#token as */*
1077752
+ Parameters: {"grant_type"=>"client_credentials"}
1077753
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077754
+ Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077755
+ Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
1077756
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1077757
+ 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]]
1077758
+ 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]]
1077759
+ 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]]
1077760
+  (0.0ms) SAVEPOINT active_record_1
1077761
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = ? [["id", 2]]
1077762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077763
+ 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]]
1077764
+  (0.0ms) SAVEPOINT active_record_1
1077765
+ SQL (0.1ms) DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = ? [["id", 2]]
1077766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077767
+ 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]]
1077768
+  (0.0ms) SAVEPOINT active_record_1
1077769
+ SQL (0.0ms) DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 2]]
1077770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077771
+ 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]]
1077772
+ 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]]
1077773
+ 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]]
1077774
+ 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]]
1077775
+ 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]]
1077776
+ 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]]
1077777
+  (0.0ms) SAVEPOINT active_record_1
1077778
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1077779
+ 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
1077780
+ 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-11-18 21:17:24.427696"], ["updated_at", "2015-11-18 21:17:24.427696"]]
1077781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077782
+  (0.0ms) SAVEPOINT active_record_1
1077783
+ 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
1077784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077785
+ 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]]
1077786
+  (0.0ms) SAVEPOINT active_record_1
1077787
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 2]]
1077788
+ 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" = 3) LIMIT 1
1077789
+ 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-11-18 21:17:24.432487"], ["updated_at", "2015-11-18 21:17:24.432487"]]
1077790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077791
+ 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]]
1077792
+  (0.0ms) SAVEPOINT active_record_1
1077793
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1077794
+ 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" = 3) LIMIT 1
1077795
+ 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-11-18 21:17:24.436332"], ["updated_at", "2015-11-18 21:17:24.436332"]]
1077796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077797
+ 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]]
1077798
+  (0.0ms) SAVEPOINT active_record_1
1077799
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1
1077800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077801
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077802
+ Processing by OauthController#token as */*
1077803
+ Parameters: {"grant_type"=>"client_credentials"}
1077804
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1077805
+ Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-11-18 15:17:24 -0600
1077806
+ Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
1077807
+ Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
1077808
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1077809
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_groups"
1077810
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077811
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077812
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077813
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077814
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 2], ["id", 3]]
1077815
+ 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
1077816
+ 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
1077817
+ 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
1077818
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
1077819
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? LIMIT 1 [["container_group_id", 4], ["id", 1]]
1077820
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077821
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077822
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077823
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1077824
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 2]]
1077825
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
1077826
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1077827
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? LIMIT 1 [["group_id", 3], ["id", 1]]
1077828
+  (1.3ms) rollback transaction
1077829
+  (0.1ms) begin transaction
1077830
+  (0.0ms) SAVEPOINT active_record_1
1077831
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1077832
+ 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", "ff0e4fe23d0cd69d385f38a39d95dabd"], ["created_at", "2015-11-18 21:17:24.471222"], ["updated_at", "2015-11-18 21:17:24.471222"]]
1077833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077834
+ Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML
1077835
+ Parameters: {"id"=>"10"}
1077836
+ OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 10]]
1077837
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1077838
+ Redirected to http://test.host/
1077839
+ Completed 302 Found in 12ms (ActiveRecord: 0.2ms)
1077840
+  (0.6ms) rollback transaction
1077841
+  (0.1ms) begin transaction
1077842
+  (0.0ms) SAVEPOINT active_record_1
1077843
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1077844
+ 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", "ced2951a01ae39fac6a8100ab47ee953"], ["created_at", "2015-11-18 21:17:24.493524"], ["updated_at", "2015-11-18 21:17:24.493524"]]
1077845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077846
+ Processing by OpenStax::Accounts::Dev::AccountsController#index as HTML
1077847
+ Rendered /Users/dante/Desktop/accounts-rails/app/views/openstax/accounts/dev/accounts/index.html.erb within layouts/openstax/accounts/application (0.3ms)
1077848
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
1077849
+  (0.5ms) rollback transaction
1077850
+  (0.0ms) begin transaction
1077851
+  (0.0ms) SAVEPOINT active_record_1
1077852
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1059290890 LIMIT 1
1077853
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1059290890], ["username", "jstrav"], ["access_token", "04334138caad9a9f4a5844e6abd266b3"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.514843"], ["updated_at", "2015-11-18 21:17:24.514843"]]
1077854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077855
+  (0.0ms) SAVEPOINT active_record_1
1077856
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -555381400 LIMIT 1
1077857
+ 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", -555381400], ["username", "mary"], ["access_token", "230fa0bab10d6116a117bcb5d3dc1760"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.517310"], ["updated_at", "2015-11-18 21:17:24.517310"]]
1077858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077859
+  (0.0ms) SAVEPOINT active_record_1
1077860
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -504021211 LIMIT 1
1077861
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -504021211], ["username", "jstead"], ["access_token", "7aa6e750f63b6ff6033f4f225bcf6b18"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.519282"], ["updated_at", "2015-11-18 21:17:24.519282"]]
1077862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077863
+  (0.0ms) SAVEPOINT active_record_1
1077864
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927123094 LIMIT 1
1077865
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -927123094], ["username", "bigbear"], ["access_token", "775c6ad96194deacf5864a6554ec920e"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.521113"], ["updated_at", "2015-11-18 21:17:24.521113"]]
1077866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077867
+  (0.0ms) SAVEPOINT active_record_1
1077868
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -844852645 LIMIT 1
1077869
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -844852645], ["username", "billy_00"], ["access_token", "6b215c767897d9e9333bd57bded162fc"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-11-18 21:17:24.523056"], ["updated_at", "2015-11-18 21:17:24.523056"]]
1077870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077871
+  (0.0ms) SAVEPOINT active_record_1
1077872
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -40650828 LIMIT 1
1077873
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -40650828], ["username", "billy_01"], ["access_token", "30050371d2784a16997b10196a0875c8"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-11-18 21:17:24.525160"], ["updated_at", "2015-11-18 21:17:24.525160"]]
1077874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077875
+  (0.0ms) SAVEPOINT active_record_1
1077876
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1036481993 LIMIT 1
1077877
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1036481993], ["username", "billy_02"], ["access_token", "41c626fe6c0239ba5430fa05a5dcdc7c"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-11-18 21:17:24.527100"], ["updated_at", "2015-11-18 21:17:24.527100"]]
1077878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077879
+  (0.0ms) SAVEPOINT active_record_1
1077880
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -310525445 LIMIT 1
1077881
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -310525445], ["username", "billy_03"], ["access_token", "930ca718529ecd5cfe65e28eca1cc683"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-11-18 21:17:24.529043"], ["updated_at", "2015-11-18 21:17:24.529043"]]
1077882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077883
+  (0.0ms) SAVEPOINT active_record_1
1077884
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -908907822 LIMIT 1
1077885
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -908907822], ["username", "billy_04"], ["access_token", "153a410ff489b9bc6579f8b4c9adb52e"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:24.530884"], ["updated_at", "2015-11-18 21:17:24.530884"]]
1077886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077887
+  (0.0ms) SAVEPOINT active_record_1
1077888
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2054457110 LIMIT 1
1077889
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2054457110], ["username", "billy_05"], ["access_token", "7b723a15f88fe6c813f7ce35b237d9bd"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:24.532687"], ["updated_at", "2015-11-18 21:17:24.532687"]]
1077890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077891
+  (0.0ms) SAVEPOINT active_record_1
1077892
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -72597523 LIMIT 1
1077893
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -72597523], ["username", "billy_06"], ["access_token", "ff8a34abd7eb08fb6eb185edf484e17d"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:24.534454"], ["updated_at", "2015-11-18 21:17:24.534454"]]
1077894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077895
+  (0.0ms) SAVEPOINT active_record_1
1077896
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -190448975 LIMIT 1
1077897
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -190448975], ["username", "billy_07"], ["access_token", "606c456d114181ee7ffc7a41e22bab38"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:24.536239"], ["updated_at", "2015-11-18 21:17:24.536239"]]
1077898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077899
+  (0.0ms) SAVEPOINT active_record_1
1077900
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -645142738 LIMIT 1
1077901
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -645142738], ["username", "billy_08"], ["access_token", "57ae06126ba685ef931d51025f6fc882"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:24.538192"], ["updated_at", "2015-11-18 21:17:24.538192"]]
1077902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077903
+  (0.0ms) SAVEPOINT active_record_1
1077904
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1272442056 LIMIT 1
1077905
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1272442056], ["username", "billy_09"], ["access_token", "fe335169a39fbd14e5d3b83e434f161c"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:24.539967"], ["updated_at", "2015-11-18 21:17:24.539967"]]
1077906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077907
+  (0.0ms) SAVEPOINT active_record_1
1077908
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1052991580 LIMIT 1
1077909
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1052991580], ["username", "billy_10"], ["access_token", "9bd8618f9895a5d2e015eb2c41b7d2da"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:24.541654"], ["updated_at", "2015-11-18 21:17:24.541654"]]
1077910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077911
+  (0.0ms) SAVEPOINT active_record_1
1077912
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -162757153 LIMIT 1
1077913
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -162757153], ["username", "billy_11"], ["access_token", "0fb1619c7ced124879291ea0ac4bbf63"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:24.543368"], ["updated_at", "2015-11-18 21:17:24.543368"]]
1077914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077915
+  (0.0ms) SAVEPOINT active_record_1
1077916
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -874225483 LIMIT 1
1077917
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -874225483], ["username", "billy_12"], ["access_token", "b2347df7ce5e25df65a57e901d160fa7"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:24.545138"], ["updated_at", "2015-11-18 21:17:24.545138"]]
1077918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077919
+  (0.0ms) SAVEPOINT active_record_1
1077920
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1051085626 LIMIT 1
1077921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1051085626], ["username", "billy_13"], ["access_token", "af7adcaae1c4c7011f906e2784e4cec1"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:24.546926"], ["updated_at", "2015-11-18 21:17:24.546926"]]
1077922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077923
+  (0.0ms) SAVEPOINT active_record_1
1077924
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1102427958 LIMIT 1
1077925
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1102427958], ["username", "billy_14"], ["access_token", "b93e03dff2cab506c93e12d8bdb18ac7"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:24.548880"], ["updated_at", "2015-11-18 21:17:24.548880"]]
1077926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077927
+  (0.0ms) SAVEPOINT active_record_1
1077928
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -951945240 LIMIT 1
1077929
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -951945240], ["username", "billy_15"], ["access_token", "469b064b97cde5476fbb3e2e0a2ce92b"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:24.550606"], ["updated_at", "2015-11-18 21:17:24.550606"]]
1077930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077931
+  (0.0ms) SAVEPOINT active_record_1
1077932
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1570874267 LIMIT 1
1077933
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1570874267], ["username", "billy_16"], ["access_token", "1a48284b7850347dd64151fee7054fee"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:24.552632"], ["updated_at", "2015-11-18 21:17:24.552632"]]
1077934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077935
+  (0.0ms) SAVEPOINT active_record_1
1077936
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1622324218 LIMIT 1
1077937
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1622324218], ["username", "billy_17"], ["access_token", "8d4e5525a55418170e6a57cdde8d4d18"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:24.555105"], ["updated_at", "2015-11-18 21:17:24.555105"]]
1077938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077939
+  (0.0ms) SAVEPOINT active_record_1
1077940
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -744170579 LIMIT 1
1077941
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -744170579], ["username", "billy_18"], ["access_token", "955ac89e4b960d728d98fbb7f8ebba11"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:24.556954"], ["updated_at", "2015-11-18 21:17:24.556954"]]
1077942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077943
+  (0.0ms) SAVEPOINT active_record_1
1077944
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -430085511 LIMIT 1
1077945
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -430085511], ["username", "billy_19"], ["access_token", "5652c1775a075187a7484cdac1ce4273"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:24.558826"], ["updated_at", "2015-11-18 21:17:24.558826"]]
1077946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077947
+  (0.0ms) SAVEPOINT active_record_1
1077948
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2067062582 LIMIT 1
1077949
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2067062582], ["username", "billy_20"], ["access_token", "c78ba4cbfd962db0ccc5f03e6682d50a"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:24.560550"], ["updated_at", "2015-11-18 21:17:24.560550"]]
1077950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077951
+  (0.0ms) SAVEPOINT active_record_1
1077952
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1244869595 LIMIT 1
1077953
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1244869595], ["username", "billy_21"], ["access_token", "2e8a6e30cb38d8589f30e53940cfc532"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:24.562291"], ["updated_at", "2015-11-18 21:17:24.562291"]]
1077954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077955
+  (0.0ms) SAVEPOINT active_record_1
1077956
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -207281504 LIMIT 1
1077957
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -207281504], ["username", "billy_22"], ["access_token", "5ca38c043527610ba592540fd443a618"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:24.564005"], ["updated_at", "2015-11-18 21:17:24.564005"]]
1077958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1077959
+  (0.0ms) SAVEPOINT active_record_1
1077960
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -236468018 LIMIT 1
1077961
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -236468018], ["username", "billy_23"], ["access_token", "3483d14e91c687ad5cd2e50c2949f378"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:24.565785"], ["updated_at", "2015-11-18 21:17:24.565785"]]
1077962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077963
+  (0.0ms) SAVEPOINT active_record_1
1077964
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1095883689 LIMIT 1
1077965
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1095883689], ["username", "billy_24"], ["access_token", "77cae88701c561e08b60b8f1f06c08bb"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:24.567509"], ["updated_at", "2015-11-18 21:17:24.567509"]]
1077966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077967
+  (0.0ms) SAVEPOINT active_record_1
1077968
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -499260457 LIMIT 1
1077969
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -499260457], ["username", "billy_25"], ["access_token", "15b81e528337b33fe714836438345a94"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:24.569437"], ["updated_at", "2015-11-18 21:17:24.569437"]]
1077970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077971
+  (0.0ms) SAVEPOINT active_record_1
1077972
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -323157395 LIMIT 1
1077973
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -323157395], ["username", "billy_26"], ["access_token", "1fea571f75047656ec7fff4d485cbf09"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:24.571258"], ["updated_at", "2015-11-18 21:17:24.571258"]]
1077974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077975
+  (0.0ms) SAVEPOINT active_record_1
1077976
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -455308244 LIMIT 1
1077977
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -455308244], ["username", "billy_27"], ["access_token", "faaf78644873b19817062943e8e18724"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:24.573001"], ["updated_at", "2015-11-18 21:17:24.573001"]]
1077978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077979
+  (0.0ms) SAVEPOINT active_record_1
1077980
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -263020122 LIMIT 1
1077981
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -263020122], ["username", "billy_28"], ["access_token", "ba04db3065fbe1ff43f689901127f71e"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:24.574746"], ["updated_at", "2015-11-18 21:17:24.574746"]]
1077982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077983
+  (0.0ms) SAVEPOINT active_record_1
1077984
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1628699826 LIMIT 1
1077985
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1628699826], ["username", "billy_29"], ["access_token", "1bf8f712ceec4e0a19340dd1c45afa47"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:24.576456"], ["updated_at", "2015-11-18 21:17:24.576456"]]
1077986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077987
+  (0.0ms) SAVEPOINT active_record_1
1077988
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -252050576 LIMIT 1
1077989
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -252050576], ["username", "billy_30"], ["access_token", "297525cf352ba94d64e207f9ee25c9b7"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:24.578276"], ["updated_at", "2015-11-18 21:17:24.578276"]]
1077990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077991
+  (0.0ms) SAVEPOINT active_record_1
1077992
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -105981775 LIMIT 1
1077993
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -105981775], ["username", "billy_31"], ["access_token", "0b6e355f4b261dd712ed90982185c592"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:24.580078"], ["updated_at", "2015-11-18 21:17:24.580078"]]
1077994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077995
+  (0.0ms) SAVEPOINT active_record_1
1077996
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1560653573 LIMIT 1
1077997
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1560653573], ["username", "billy_32"], ["access_token", "f80685200f2ee8b2dea46c50dbc0a4dc"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:24.581815"], ["updated_at", "2015-11-18 21:17:24.581815"]]
1077998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077999
+  (0.0ms) SAVEPOINT active_record_1
1078000
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2036657469 LIMIT 1
1078001
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2036657469], ["username", "billy_33"], ["access_token", "2ce6f5ec65225bc84e3c6b0f209a3033"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:24.583601"], ["updated_at", "2015-11-18 21:17:24.583601"]]
1078002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078003
+  (0.0ms) SAVEPOINT active_record_1
1078004
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1487214070 LIMIT 1
1078005
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1487214070], ["username", "billy_34"], ["access_token", "e8876a3c5e7d99b9dd91bb0650c57116"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:24.585357"], ["updated_at", "2015-11-18 21:17:24.585357"]]
1078006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078007
+  (0.0ms) SAVEPOINT active_record_1
1078008
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -87336568 LIMIT 1
1078009
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -87336568], ["username", "billy_35"], ["access_token", "327554bfe66333bfa479a836cd421476"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:24.587030"], ["updated_at", "2015-11-18 21:17:24.587030"]]
1078010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078011
+  (0.0ms) SAVEPOINT active_record_1
1078012
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -801512060 LIMIT 1
1078013
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -801512060], ["username", "billy_36"], ["access_token", "8143c76cdd5dceae139e5b65a9c25710"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:24.588823"], ["updated_at", "2015-11-18 21:17:24.588823"]]
1078014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078015
+  (0.0ms) SAVEPOINT active_record_1
1078016
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -495783834 LIMIT 1
1078017
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -495783834], ["username", "billy_37"], ["access_token", "fbb327e07dbadc945f039a0b04b405a7"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:24.590459"], ["updated_at", "2015-11-18 21:17:24.590459"]]
1078018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078019
+  (0.0ms) SAVEPOINT active_record_1
1078020
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -939151779 LIMIT 1
1078021
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -939151779], ["username", "billy_38"], ["access_token", "03eb7ac5e3b159c70abc9e3c4c93069d"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:24.592229"], ["updated_at", "2015-11-18 21:17:24.592229"]]
1078022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078023
+  (0.0ms) SAVEPOINT active_record_1
1078024
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1601098106 LIMIT 1
1078025
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1601098106], ["username", "billy_39"], ["access_token", "3c6f8c163d74ab93a198e51f3e338d67"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:24.593940"], ["updated_at", "2015-11-18 21:17:24.593940"]]
1078026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078027
+  (0.0ms) SAVEPOINT active_record_1
1078028
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1558819713 LIMIT 1
1078029
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1558819713], ["username", "billy_40"], ["access_token", "71a6f03c5aa6ba87c2396c2fcd03734e"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:24.595714"], ["updated_at", "2015-11-18 21:17:24.595714"]]
1078030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078031
+  (0.0ms) SAVEPOINT active_record_1
1078032
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -782173558 LIMIT 1
1078033
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -782173558], ["username", "billy_41"], ["access_token", "384eefe5f6f15d4027d6cabca31d1e42"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:24.597489"], ["updated_at", "2015-11-18 21:17:24.597489"]]
1078034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078035
+  (0.0ms) SAVEPOINT active_record_1
1078036
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1176298869 LIMIT 1
1078037
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1176298869], ["username", "billy_42"], ["access_token", "d842834d5f7c61d77561b59aff0d185b"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:24.599290"], ["updated_at", "2015-11-18 21:17:24.599290"]]
1078038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078039
+  (0.0ms) SAVEPOINT active_record_1
1078040
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -283809223 LIMIT 1
1078041
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -283809223], ["username", "billy_43"], ["access_token", "5b1dda5dddb8c5818d2d57e057dbae9a"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:24.601236"], ["updated_at", "2015-11-18 21:17:24.601236"]]
1078042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078043
+  (0.0ms) SAVEPOINT active_record_1
1078044
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1431690925 LIMIT 1
1078045
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1431690925], ["username", "billy_44"], ["access_token", "a4c0a9a7313e643a067ce6757a4b90cd"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:24.603109"], ["updated_at", "2015-11-18 21:17:24.603109"]]
1078046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078047
+  (0.0ms) SAVEPOINT active_record_1
1078048
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -768376589 LIMIT 1
1078049
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -768376589], ["username", "billy_45"], ["access_token", "dd7f8d044c92b5cfb97185dac9ec1bd3"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:24.604857"], ["updated_at", "2015-11-18 21:17:24.604857"]]
1078050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078051
+  (0.0ms) SAVEPOINT active_record_1
1078052
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -599458012 LIMIT 1
1078053
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -599458012], ["username", "billy_46"], ["access_token", "b03035006411fd2795fc70c023f92343"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:24.606602"], ["updated_at", "2015-11-18 21:17:24.606602"]]
1078054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078055
+  (0.0ms) SAVEPOINT active_record_1
1078056
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -666856694 LIMIT 1
1078057
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -666856694], ["username", "billy_47"], ["access_token", "fb8533c93b8474ef167e7b53afc001b3"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:24.608426"], ["updated_at", "2015-11-18 21:17:24.608426"]]
1078058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078059
+  (0.0ms) SAVEPOINT active_record_1
1078060
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2065106197 LIMIT 1
1078061
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2065106197], ["username", "billy_48"], ["access_token", "07f4d956ab4db64305648df535ae8117"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:24.610196"], ["updated_at", "2015-11-18 21:17:24.610196"]]
1078062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078063
+  (0.0ms) SAVEPOINT active_record_1
1078064
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -422114533 LIMIT 1
1078065
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -422114533], ["username", "billy_49"], ["access_token", "c6da16a928d4310e29d6181aa76e0c0e"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:24.611990"], ["updated_at", "2015-11-18 21:17:24.611990"]]
1078066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078067
+  (0.0ms) SAVEPOINT active_record_1
1078068
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1078069
+ 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
1078070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078071
+  (0.6ms) rollback transaction
1078072
+  (0.0ms) begin transaction
1078073
+  (0.0ms) SAVEPOINT active_record_1
1078074
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -447973497 LIMIT 1
1078075
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -447973497], ["username", "jstrav"], ["access_token", "20351b52697447c49fcc3c4639b37335"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.620401"], ["updated_at", "2015-11-18 21:17:24.620401"]]
1078076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078077
+  (0.0ms) SAVEPOINT active_record_1
1078078
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -367930321 LIMIT 1
1078079
+ 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", -367930321], ["username", "mary"], ["access_token", "ee90256d913ba710fcb2441199a8a0c8"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.622534"], ["updated_at", "2015-11-18 21:17:24.622534"]]
1078080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078081
+  (0.0ms) SAVEPOINT active_record_1
1078082
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -818014269 LIMIT 1
1078083
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -818014269], ["username", "jstead"], ["access_token", "82d7889f5e3436a2cdd3858b2a46cd96"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.624452"], ["updated_at", "2015-11-18 21:17:24.624452"]]
1078084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078085
+  (0.0ms) SAVEPOINT active_record_1
1078086
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -932550508 LIMIT 1
1078087
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -932550508], ["username", "bigbear"], ["access_token", "0544351096fbab66e82e8a15aec64321"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.626134"], ["updated_at", "2015-11-18 21:17:24.626134"]]
1078088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078089
+  (0.0ms) SAVEPOINT active_record_1
1078090
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1939219297 LIMIT 1
1078091
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1939219297], ["username", "billy_00"], ["access_token", "c49c06c9e4f15d542acf8fb5a8d76322"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-11-18 21:17:24.627817"], ["updated_at", "2015-11-18 21:17:24.627817"]]
1078092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078093
+  (0.0ms) SAVEPOINT active_record_1
1078094
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -762801282 LIMIT 1
1078095
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -762801282], ["username", "billy_01"], ["access_token", "ceda97f61478aa4f105b0382c560ad63"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-11-18 21:17:24.629428"], ["updated_at", "2015-11-18 21:17:24.629428"]]
1078096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078097
+  (0.0ms) SAVEPOINT active_record_1
1078098
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1366097303 LIMIT 1
1078099
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1366097303], ["username", "billy_02"], ["access_token", "b1e215b716612da79e5f521ffa420b96"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-11-18 21:17:24.631058"], ["updated_at", "2015-11-18 21:17:24.631058"]]
1078100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078101
+  (0.0ms) SAVEPOINT active_record_1
1078102
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -251319212 LIMIT 1
1078103
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -251319212], ["username", "billy_03"], ["access_token", "b06657535a3655692845034b0ef9541f"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-11-18 21:17:24.632844"], ["updated_at", "2015-11-18 21:17:24.632844"]]
1078104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078105
+  (0.0ms) SAVEPOINT active_record_1
1078106
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -997548419 LIMIT 1
1078107
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -997548419], ["username", "billy_04"], ["access_token", "00b07e46ef4728466160b76f99e0ccfd"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:24.634459"], ["updated_at", "2015-11-18 21:17:24.634459"]]
1078108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078109
+  (0.0ms) SAVEPOINT active_record_1
1078110
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1036674078 LIMIT 1
1078111
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1036674078], ["username", "billy_05"], ["access_token", "fdf22a4f4826fc739c6920c906b9121f"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:24.636144"], ["updated_at", "2015-11-18 21:17:24.636144"]]
1078112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078113
+  (0.0ms) SAVEPOINT active_record_1
1078114
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -166992451 LIMIT 1
1078115
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -166992451], ["username", "billy_06"], ["access_token", "d7cd5f405d57ac5f946b633626c5f78e"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:24.637732"], ["updated_at", "2015-11-18 21:17:24.637732"]]
1078116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078117
+  (0.0ms) SAVEPOINT active_record_1
1078118
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1998263297 LIMIT 1
1078119
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1998263297], ["username", "billy_07"], ["access_token", "7f902f2e4dee3668db35f11204634813"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:24.639321"], ["updated_at", "2015-11-18 21:17:24.639321"]]
1078120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078121
+  (0.0ms) SAVEPOINT active_record_1
1078122
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -26226496 LIMIT 1
1078123
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -26226496], ["username", "billy_08"], ["access_token", "7df83849e0f1fbf6ce008ae155cbc375"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:24.640914"], ["updated_at", "2015-11-18 21:17:24.640914"]]
1078124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078125
+  (0.0ms) SAVEPOINT active_record_1
1078126
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -593341301 LIMIT 1
1078127
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -593341301], ["username", "billy_09"], ["access_token", "c5171bac54c1f584f7d27e0a5ece4d9e"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:24.642532"], ["updated_at", "2015-11-18 21:17:24.642532"]]
1078128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078129
+  (0.0ms) SAVEPOINT active_record_1
1078130
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1494600592 LIMIT 1
1078131
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1494600592], ["username", "billy_10"], ["access_token", "37b6d969c9525b94e18a288df07bc635"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:24.644111"], ["updated_at", "2015-11-18 21:17:24.644111"]]
1078132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078133
+  (0.0ms) SAVEPOINT active_record_1
1078134
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -116661714 LIMIT 1
1078135
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -116661714], ["username", "billy_11"], ["access_token", "ba632672b630e416932f79c428c56968"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:24.645707"], ["updated_at", "2015-11-18 21:17:24.645707"]]
1078136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078137
+  (0.0ms) SAVEPOINT active_record_1
1078138
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1425543871 LIMIT 1
1078139
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1425543871], ["username", "billy_12"], ["access_token", "accbe488b7556351010ba5de8130f539"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:24.647340"], ["updated_at", "2015-11-18 21:17:24.647340"]]
1078140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078141
+  (0.0ms) SAVEPOINT active_record_1
1078142
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1492108260 LIMIT 1
1078143
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1492108260], ["username", "billy_13"], ["access_token", "f3d686b61628bf7cb46a610f76c3a352"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:24.648922"], ["updated_at", "2015-11-18 21:17:24.648922"]]
1078144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078145
+  (0.0ms) SAVEPOINT active_record_1
1078146
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2106790515 LIMIT 1
1078147
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2106790515], ["username", "billy_14"], ["access_token", "8a4416a3a13fcc3f396260e506b234e2"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:24.650563"], ["updated_at", "2015-11-18 21:17:24.650563"]]
1078148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078149
+  (0.0ms) SAVEPOINT active_record_1
1078150
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2123115874 LIMIT 1
1078151
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2123115874], ["username", "billy_15"], ["access_token", "24b2ad2e599c5112e69a5373caaec341"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:24.652141"], ["updated_at", "2015-11-18 21:17:24.652141"]]
1078152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078153
+  (0.0ms) SAVEPOINT active_record_1
1078154
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -36538522 LIMIT 1
1078155
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -36538522], ["username", "billy_16"], ["access_token", "1056aa9ec048696cd049b255642359cc"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:24.653864"], ["updated_at", "2015-11-18 21:17:24.653864"]]
1078156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078157
+  (0.0ms) SAVEPOINT active_record_1
1078158
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -311944680 LIMIT 1
1078159
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -311944680], ["username", "billy_17"], ["access_token", "587e969be19d9fa46626a4561281d846"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:24.655620"], ["updated_at", "2015-11-18 21:17:24.655620"]]
1078160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078161
+  (0.0ms) SAVEPOINT active_record_1
1078162
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -678360359 LIMIT 1
1078163
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -678360359], ["username", "billy_18"], ["access_token", "daffa3745f904104274c508e76ae6aec"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:24.657209"], ["updated_at", "2015-11-18 21:17:24.657209"]]
1078164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078165
+  (0.0ms) SAVEPOINT active_record_1
1078166
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -686735944 LIMIT 1
1078167
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -686735944], ["username", "billy_19"], ["access_token", "f822cf7b262207259c16fedcc3c4fc2a"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:24.658829"], ["updated_at", "2015-11-18 21:17:24.658829"]]
1078168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078169
+  (0.0ms) SAVEPOINT active_record_1
1078170
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -348656785 LIMIT 1
1078171
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -348656785], ["username", "billy_20"], ["access_token", "2dfa871979eacf57aa24c8e3042ddeca"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:24.660420"], ["updated_at", "2015-11-18 21:17:24.660420"]]
1078172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078173
+  (0.0ms) SAVEPOINT active_record_1
1078174
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1506008250 LIMIT 1
1078175
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1506008250], ["username", "billy_21"], ["access_token", "2609a09e0d7acdc75cfc846fa139060e"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:24.662662"], ["updated_at", "2015-11-18 21:17:24.662662"]]
1078176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078177
+  (0.0ms) SAVEPOINT active_record_1
1078178
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -238058593 LIMIT 1
1078179
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -238058593], ["username", "billy_22"], ["access_token", "1b7e54033389aacd48f181e6358f4cf5"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:24.664595"], ["updated_at", "2015-11-18 21:17:24.664595"]]
1078180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078181
+  (0.0ms) SAVEPOINT active_record_1
1078182
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -999385856 LIMIT 1
1078183
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -999385856], ["username", "billy_23"], ["access_token", "e15415966b010a768214f70f04a609d6"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:24.666261"], ["updated_at", "2015-11-18 21:17:24.666261"]]
1078184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078185
+  (0.0ms) SAVEPOINT active_record_1
1078186
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1694380000 LIMIT 1
1078187
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1694380000], ["username", "billy_24"], ["access_token", "48471325827f965f5d8a65d79874fde9"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:24.667858"], ["updated_at", "2015-11-18 21:17:24.667858"]]
1078188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078189
+  (0.0ms) SAVEPOINT active_record_1
1078190
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1095241253 LIMIT 1
1078191
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1095241253], ["username", "billy_25"], ["access_token", "144a094a1ebd7dfda73038fbc145a1f8"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:24.669450"], ["updated_at", "2015-11-18 21:17:24.669450"]]
1078192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078193
+  (0.0ms) SAVEPOINT active_record_1
1078194
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -195813769 LIMIT 1
1078195
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -195813769], ["username", "billy_26"], ["access_token", "75ae02e9935c76dd865660d11e906fc0"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:24.671041"], ["updated_at", "2015-11-18 21:17:24.671041"]]
1078196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078197
+  (0.0ms) SAVEPOINT active_record_1
1078198
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -536206418 LIMIT 1
1078199
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -536206418], ["username", "billy_27"], ["access_token", "5e116ea94585b33d5275bd804310b9fe"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:24.672643"], ["updated_at", "2015-11-18 21:17:24.672643"]]
1078200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078201
+  (0.0ms) SAVEPOINT active_record_1
1078202
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1624702801 LIMIT 1
1078203
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1624702801], ["username", "billy_28"], ["access_token", "3997de1e5af802b6813a5deaf44ee398"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:24.674293"], ["updated_at", "2015-11-18 21:17:24.674293"]]
1078204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078205
+  (0.0ms) SAVEPOINT active_record_1
1078206
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1925526628 LIMIT 1
1078207
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1925526628], ["username", "billy_29"], ["access_token", "e555342f08d8ab9ebaa078642e8b245b"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:24.675911"], ["updated_at", "2015-11-18 21:17:24.675911"]]
1078208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078209
+  (0.0ms) SAVEPOINT active_record_1
1078210
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -31617937 LIMIT 1
1078211
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -31617937], ["username", "billy_30"], ["access_token", "9af43f882deba57260d96300767b5391"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:24.677546"], ["updated_at", "2015-11-18 21:17:24.677546"]]
1078212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078213
+  (0.0ms) SAVEPOINT active_record_1
1078214
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -641367703 LIMIT 1
1078215
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -641367703], ["username", "billy_31"], ["access_token", "bb16f5c00680b5b14d1874dc596b53f8"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:24.679133"], ["updated_at", "2015-11-18 21:17:24.679133"]]
1078216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078217
+  (0.0ms) SAVEPOINT active_record_1
1078218
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2116499823 LIMIT 1
1078219
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2116499823], ["username", "billy_32"], ["access_token", "c9aa66e39674a7d093f2958ed8dc1fac"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:24.680747"], ["updated_at", "2015-11-18 21:17:24.680747"]]
1078220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078221
+  (0.0ms) SAVEPOINT active_record_1
1078222
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -177637176 LIMIT 1
1078223
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -177637176], ["username", "billy_33"], ["access_token", "cbbf28acc2fd5ea98b603b1c9b6c1845"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:24.682331"], ["updated_at", "2015-11-18 21:17:24.682331"]]
1078224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078225
+  (0.0ms) SAVEPOINT active_record_1
1078226
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -15502013 LIMIT 1
1078227
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -15502013], ["username", "billy_34"], ["access_token", "2746ea7bfb1a260fc65f3047c9cdb4e3"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:24.683921"], ["updated_at", "2015-11-18 21:17:24.683921"]]
1078228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078229
+  (0.0ms) SAVEPOINT active_record_1
1078230
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -97735298 LIMIT 1
1078231
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -97735298], ["username", "billy_35"], ["access_token", "f509d10ddcab070eb000af86894906c1"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:24.685506"], ["updated_at", "2015-11-18 21:17:24.685506"]]
1078232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078233
+  (0.0ms) SAVEPOINT active_record_1
1078234
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864119001 LIMIT 1
1078235
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1864119001], ["username", "billy_36"], ["access_token", "41e20a409e445e9d949129db8fbc3f55"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:24.687086"], ["updated_at", "2015-11-18 21:17:24.687086"]]
1078236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078237
+  (0.0ms) SAVEPOINT active_record_1
1078238
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1283609664 LIMIT 1
1078239
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1283609664], ["username", "billy_37"], ["access_token", "35d4ce3afc5887c32d649c7a37c42f8b"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:24.688668"], ["updated_at", "2015-11-18 21:17:24.688668"]]
1078240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078241
+  (0.0ms) SAVEPOINT active_record_1
1078242
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1544115336 LIMIT 1
1078243
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1544115336], ["username", "billy_38"], ["access_token", "4e2a052f1dea6fd922bc82781bada95d"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:24.690257"], ["updated_at", "2015-11-18 21:17:24.690257"]]
1078244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078245
+  (0.0ms) SAVEPOINT active_record_1
1078246
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1772596430 LIMIT 1
1078247
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1772596430], ["username", "billy_39"], ["access_token", "74945238f69766138733a697569d9930"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:24.691838"], ["updated_at", "2015-11-18 21:17:24.691838"]]
1078248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078249
+  (0.0ms) SAVEPOINT active_record_1
1078250
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -257027303 LIMIT 1
1078251
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -257027303], ["username", "billy_40"], ["access_token", "0f4b33efa0caf035f2d1993ba5f83197"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:24.693456"], ["updated_at", "2015-11-18 21:17:24.693456"]]
1078252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078253
+  (0.0ms) SAVEPOINT active_record_1
1078254
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -964691717 LIMIT 1
1078255
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -964691717], ["username", "billy_41"], ["access_token", "fa7b68962f04c6959133bdb78c328dec"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:24.695102"], ["updated_at", "2015-11-18 21:17:24.695102"]]
1078256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078257
+  (0.0ms) SAVEPOINT active_record_1
1078258
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -735552165 LIMIT 1
1078259
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -735552165], ["username", "billy_42"], ["access_token", "a27b4c70d107314eb5f7438fba411831"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:24.696875"], ["updated_at", "2015-11-18 21:17:24.696875"]]
1078260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078261
+  (0.0ms) SAVEPOINT active_record_1
1078262
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -618074540 LIMIT 1
1078263
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -618074540], ["username", "billy_43"], ["access_token", "1cfbe4001ec2a4d82411992a7951e2bc"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:24.698544"], ["updated_at", "2015-11-18 21:17:24.698544"]]
1078264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078265
+  (0.0ms) SAVEPOINT active_record_1
1078266
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -917326888 LIMIT 1
1078267
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -917326888], ["username", "billy_44"], ["access_token", "33e6c3be37635425bf45dcbd1cb80269"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:24.700130"], ["updated_at", "2015-11-18 21:17:24.700130"]]
1078268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078269
+  (0.0ms) SAVEPOINT active_record_1
1078270
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -841415324 LIMIT 1
1078271
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -841415324], ["username", "billy_45"], ["access_token", "d6444a5192a5a94b3b5a2eb3000ba987"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:24.701720"], ["updated_at", "2015-11-18 21:17:24.701720"]]
1078272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078273
+  (0.0ms) SAVEPOINT active_record_1
1078274
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1543986944 LIMIT 1
1078275
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1543986944], ["username", "billy_46"], ["access_token", "2a5129f2de1c41c6c95d7ad9cf1b8709"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:24.703302"], ["updated_at", "2015-11-18 21:17:24.703302"]]
1078276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078277
+  (0.0ms) SAVEPOINT active_record_1
1078278
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -895283690 LIMIT 1
1078279
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -895283690], ["username", "billy_47"], ["access_token", "3373b61ad06ca3dd76bfecc6196a7f8b"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:24.704882"], ["updated_at", "2015-11-18 21:17:24.704882"]]
1078280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078281
+  (0.0ms) SAVEPOINT active_record_1
1078282
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1518859896 LIMIT 1
1078283
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1518859896], ["username", "billy_48"], ["access_token", "889fbc26995d6970a670fc6261a72fd2"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:24.706475"], ["updated_at", "2015-11-18 21:17:24.706475"]]
1078284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078285
+  (0.0ms) SAVEPOINT active_record_1
1078286
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1132853367 LIMIT 1
1078287
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1132853367], ["username", "billy_49"], ["access_token", "513b7886ca8794c6fdc8efe7089fa75f"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:24.708067"], ["updated_at", "2015-11-18 21:17:24.708067"]]
1078288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078289
+  (0.0ms) SAVEPOINT active_record_1
1078290
+  (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))
1078291
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1078292
+  (0.9ms) rollback transaction
1078293
+  (0.0ms) begin transaction
1078294
+  (0.0ms) SAVEPOINT active_record_1
1078295
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1446183310 LIMIT 1
1078296
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1446183310], ["username", "jstrav"], ["access_token", "fd98343c7a801c3c33579eed17823a88"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.716804"], ["updated_at", "2015-11-18 21:17:24.716804"]]
1078297
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078298
+  (0.0ms) SAVEPOINT active_record_1
1078299
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1854124957 LIMIT 1
1078300
+ 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", -1854124957], ["username", "mary"], ["access_token", "82e73d84b6a98f9a6feb38516a847526"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.719110"], ["updated_at", "2015-11-18 21:17:24.719110"]]
1078301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078302
+  (0.0ms) SAVEPOINT active_record_1
1078303
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1688339665 LIMIT 1
1078304
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1688339665], ["username", "jstead"], ["access_token", "f5780e551591701567861c6e83cf2461"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.720930"], ["updated_at", "2015-11-18 21:17:24.720930"]]
1078305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078306
+  (0.0ms) SAVEPOINT active_record_1
1078307
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -365661718 LIMIT 1
1078308
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -365661718], ["username", "bigbear"], ["access_token", "09a34b25e153ccbc0bfdb94c635984f8"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.722606"], ["updated_at", "2015-11-18 21:17:24.722606"]]
1078309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078310
+  (0.0ms) SAVEPOINT active_record_1
1078311
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -88249837 LIMIT 1
1078312
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -88249837], ["username", "billy_00"], ["access_token", "16b4539ddcfdf0340c59739c04ee3956"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-11-18 21:17:24.724300"], ["updated_at", "2015-11-18 21:17:24.724300"]]
1078313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078314
+  (0.0ms) SAVEPOINT active_record_1
1078315
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1163507048 LIMIT 1
1078316
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1163507048], ["username", "billy_01"], ["access_token", "aedd5b3ef1cc45865f7886e1cebc831c"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-11-18 21:17:24.725900"], ["updated_at", "2015-11-18 21:17:24.725900"]]
1078317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078318
+  (0.0ms) SAVEPOINT active_record_1
1078319
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -248016446 LIMIT 1
1078320
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -248016446], ["username", "billy_02"], ["access_token", "521753fa2fa93b9e0fc9bdb11ff04529"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-11-18 21:17:24.727706"], ["updated_at", "2015-11-18 21:17:24.727706"]]
1078321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078322
+  (0.0ms) SAVEPOINT active_record_1
1078323
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1234087475 LIMIT 1
1078324
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1234087475], ["username", "billy_03"], ["access_token", "ecad4286f5c57f8ba64a1703174af084"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-11-18 21:17:24.729398"], ["updated_at", "2015-11-18 21:17:24.729398"]]
1078325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078326
+  (0.0ms) SAVEPOINT active_record_1
1078327
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -881186426 LIMIT 1
1078328
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -881186426], ["username", "billy_04"], ["access_token", "606ec4d1592c92b0c5aafa47abcd8a41"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:24.731023"], ["updated_at", "2015-11-18 21:17:24.731023"]]
1078329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078330
+  (0.0ms) SAVEPOINT active_record_1
1078331
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1965470800 LIMIT 1
1078332
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1965470800], ["username", "billy_05"], ["access_token", "b20bf4c4acc5a46c348af5296b61b446"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:24.732633"], ["updated_at", "2015-11-18 21:17:24.732633"]]
1078333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078334
+  (0.0ms) SAVEPOINT active_record_1
1078335
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -881373915 LIMIT 1
1078336
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -881373915], ["username", "billy_06"], ["access_token", "7581172d5238afeba9f05eb0708770c4"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:24.734287"], ["updated_at", "2015-11-18 21:17:24.734287"]]
1078337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078338
+  (0.0ms) SAVEPOINT active_record_1
1078339
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -628957612 LIMIT 1
1078340
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -628957612], ["username", "billy_07"], ["access_token", "ec7e20a569ac1ee49242202fbec38544"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:24.735899"], ["updated_at", "2015-11-18 21:17:24.735899"]]
1078341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078342
+  (0.0ms) SAVEPOINT active_record_1
1078343
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -223113260 LIMIT 1
1078344
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -223113260], ["username", "billy_08"], ["access_token", "5c54d09357468ebd0b5305de6b85737b"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:24.737508"], ["updated_at", "2015-11-18 21:17:24.737508"]]
1078345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078346
+  (0.0ms) SAVEPOINT active_record_1
1078347
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -823469592 LIMIT 1
1078348
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -823469592], ["username", "billy_09"], ["access_token", "a7d8368cf3f50f4251bcc3201dde4d29"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:24.739111"], ["updated_at", "2015-11-18 21:17:24.739111"]]
1078349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078350
+  (0.0ms) SAVEPOINT active_record_1
1078351
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2143359689 LIMIT 1
1078352
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2143359689], ["username", "billy_10"], ["access_token", "e7e8eca40e1647a3275f15b01f139aab"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:24.740784"], ["updated_at", "2015-11-18 21:17:24.740784"]]
1078353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078354
+  (0.0ms) SAVEPOINT active_record_1
1078355
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2059304441 LIMIT 1
1078356
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2059304441], ["username", "billy_11"], ["access_token", "7116b4155b9f5e77b33a5ddc5ed230cb"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:24.742394"], ["updated_at", "2015-11-18 21:17:24.742394"]]
1078357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078358
+  (0.0ms) SAVEPOINT active_record_1
1078359
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1120224194 LIMIT 1
1078360
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1120224194], ["username", "billy_12"], ["access_token", "e8ca2e1c659fb71bf1c7bbf51e7d387c"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:24.744027"], ["updated_at", "2015-11-18 21:17:24.744027"]]
1078361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078362
+  (0.0ms) SAVEPOINT active_record_1
1078363
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -951193062 LIMIT 1
1078364
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -951193062], ["username", "billy_13"], ["access_token", "0dd274f3d69966b3085817daf082226f"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:24.745682"], ["updated_at", "2015-11-18 21:17:24.745682"]]
1078365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078366
+  (0.0ms) SAVEPOINT active_record_1
1078367
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1655489367 LIMIT 1
1078368
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1655489367], ["username", "billy_14"], ["access_token", "74765bbc5d80b115fefff1e0c6c5d7fe"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:24.747289"], ["updated_at", "2015-11-18 21:17:24.747289"]]
1078369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078370
+  (0.0ms) SAVEPOINT active_record_1
1078371
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -325238499 LIMIT 1
1078372
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -325238499], ["username", "billy_15"], ["access_token", "839bcca84255019b83531d9f83cc4122"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:24.748956"], ["updated_at", "2015-11-18 21:17:24.748956"]]
1078373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078374
+  (0.0ms) SAVEPOINT active_record_1
1078375
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -664293631 LIMIT 1
1078376
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -664293631], ["username", "billy_16"], ["access_token", "be2884d27044dd0e844f29b8a1bcaf43"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:24.750821"], ["updated_at", "2015-11-18 21:17:24.750821"]]
1078377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078378
+  (0.0ms) SAVEPOINT active_record_1
1078379
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1100762948 LIMIT 1
1078380
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1100762948], ["username", "billy_17"], ["access_token", "c80e610af83247478ea8d50920115b98"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:24.752579"], ["updated_at", "2015-11-18 21:17:24.752579"]]
1078381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078382
+  (0.0ms) SAVEPOINT active_record_1
1078383
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1130194511 LIMIT 1
1078384
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1130194511], ["username", "billy_18"], ["access_token", "41c6358e8a5357567cbc7b2e70556d31"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:24.755071"], ["updated_at", "2015-11-18 21:17:24.755071"]]
1078385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078386
+  (0.0ms) SAVEPOINT active_record_1
1078387
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -452555873 LIMIT 1
1078388
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -452555873], ["username", "billy_19"], ["access_token", "7f7659f624b28d4d9c37c152bd3abd35"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:24.756748"], ["updated_at", "2015-11-18 21:17:24.756748"]]
1078389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078390
+  (0.0ms) SAVEPOINT active_record_1
1078391
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1435610720 LIMIT 1
1078392
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1435610720], ["username", "billy_20"], ["access_token", "8eedd217f99fd0ea6b34be55a1cefcf0"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:24.758788"], ["updated_at", "2015-11-18 21:17:24.758788"]]
1078393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078394
+  (0.0ms) SAVEPOINT active_record_1
1078395
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1458145877 LIMIT 1
1078396
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1458145877], ["username", "billy_21"], ["access_token", "20524a43c864c36a0258e076c4298d66"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:24.761096"], ["updated_at", "2015-11-18 21:17:24.761096"]]
1078397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078398
+  (0.0ms) SAVEPOINT active_record_1
1078399
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1925077282 LIMIT 1
1078400
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1925077282], ["username", "billy_22"], ["access_token", "fe918ab5d9246182c99d4eaedfc4e2f7"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:24.763474"], ["updated_at", "2015-11-18 21:17:24.763474"]]
1078401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078402
+  (0.0ms) SAVEPOINT active_record_1
1078403
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -956119699 LIMIT 1
1078404
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -956119699], ["username", "billy_23"], ["access_token", "d731c30c50b23e6e80af615b01191f7d"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:24.766025"], ["updated_at", "2015-11-18 21:17:24.766025"]]
1078405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078406
+  (0.0ms) SAVEPOINT active_record_1
1078407
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -803106170 LIMIT 1
1078408
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -803106170], ["username", "billy_24"], ["access_token", "c27300ce64c01ed1248cd6f0ef281399"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:24.768258"], ["updated_at", "2015-11-18 21:17:24.768258"]]
1078409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078410
+  (0.0ms) SAVEPOINT active_record_1
1078411
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1473524444 LIMIT 1
1078412
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1473524444], ["username", "billy_25"], ["access_token", "e65d21363fb88137ffcbedd183ed7f36"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:24.770326"], ["updated_at", "2015-11-18 21:17:24.770326"]]
1078413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078414
+  (0.0ms) SAVEPOINT active_record_1
1078415
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -903894140 LIMIT 1
1078416
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -903894140], ["username", "billy_26"], ["access_token", "68a96eba03d17451af6bb17fad284990"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:24.772246"], ["updated_at", "2015-11-18 21:17:24.772246"]]
1078417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078418
+  (0.0ms) SAVEPOINT active_record_1
1078419
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1257781117 LIMIT 1
1078420
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1257781117], ["username", "billy_27"], ["access_token", "a805d15c783d03ee72e2b3560a4ea100"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:24.773930"], ["updated_at", "2015-11-18 21:17:24.773930"]]
1078421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078422
+  (0.0ms) SAVEPOINT active_record_1
1078423
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1726459437 LIMIT 1
1078424
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1726459437], ["username", "billy_28"], ["access_token", "3b1b2710f58236fda0106d60aba904c9"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:24.785885"], ["updated_at", "2015-11-18 21:17:24.785885"]]
1078425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078426
+  (0.0ms) SAVEPOINT active_record_1
1078427
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1403456300 LIMIT 1
1078428
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1403456300], ["username", "billy_29"], ["access_token", "d9db5d21651773f5b0188bbeca2cb383"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:24.788215"], ["updated_at", "2015-11-18 21:17:24.788215"]]
1078429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078430
+  (0.0ms) SAVEPOINT active_record_1
1078431
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -629342537 LIMIT 1
1078432
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -629342537], ["username", "billy_30"], ["access_token", "6089901e3c22630856b008b81dc27de1"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:24.790012"], ["updated_at", "2015-11-18 21:17:24.790012"]]
1078433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078434
+  (0.0ms) SAVEPOINT active_record_1
1078435
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1760904644 LIMIT 1
1078436
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1760904644], ["username", "billy_31"], ["access_token", "59b20bc0093b56f25bdd12a276487777"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:24.791985"], ["updated_at", "2015-11-18 21:17:24.791985"]]
1078437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078438
+  (0.1ms) SAVEPOINT active_record_1
1078439
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083658927 LIMIT 1
1078440
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1083658927], ["username", "billy_32"], ["access_token", "0c9ca8cfbee419c3c9c25277f530c580"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:24.793839"], ["updated_at", "2015-11-18 21:17:24.793839"]]
1078441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078442
+  (0.0ms) SAVEPOINT active_record_1
1078443
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -154572061 LIMIT 1
1078444
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -154572061], ["username", "billy_33"], ["access_token", "e6adc4d8a6a43f5245862cae3331442b"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:24.795596"], ["updated_at", "2015-11-18 21:17:24.795596"]]
1078445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078446
+  (0.0ms) SAVEPOINT active_record_1
1078447
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -728178228 LIMIT 1
1078448
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -728178228], ["username", "billy_34"], ["access_token", "8481f322b110109c7a7ae60a8d7071e0"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:24.797275"], ["updated_at", "2015-11-18 21:17:24.797275"]]
1078449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078450
+  (0.0ms) SAVEPOINT active_record_1
1078451
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -459669861 LIMIT 1
1078452
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -459669861], ["username", "billy_35"], ["access_token", "89335e243f6c3fba80b58565367f44a4"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:24.799007"], ["updated_at", "2015-11-18 21:17:24.799007"]]
1078453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078454
+  (0.0ms) SAVEPOINT active_record_1
1078455
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1849717887 LIMIT 1
1078456
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1849717887], ["username", "billy_36"], ["access_token", "611e9230d5047714e43fb1ee091afec0"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:24.800738"], ["updated_at", "2015-11-18 21:17:24.800738"]]
1078457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078458
+  (0.0ms) SAVEPOINT active_record_1
1078459
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1319960297 LIMIT 1
1078460
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1319960297], ["username", "billy_37"], ["access_token", "fd57b444176e423521283329dd43c65c"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:24.802468"], ["updated_at", "2015-11-18 21:17:24.802468"]]
1078461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078462
+  (0.0ms) SAVEPOINT active_record_1
1078463
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2007572398 LIMIT 1
1078464
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2007572398], ["username", "billy_38"], ["access_token", "941d21d52da02896b67297f5e71d3288"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:24.804183"], ["updated_at", "2015-11-18 21:17:24.804183"]]
1078465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078466
+  (0.0ms) SAVEPOINT active_record_1
1078467
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -710259756 LIMIT 1
1078468
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -710259756], ["username", "billy_39"], ["access_token", "551876d283756ce9c801a581775045c1"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:24.805869"], ["updated_at", "2015-11-18 21:17:24.805869"]]
1078469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078470
+  (0.0ms) SAVEPOINT active_record_1
1078471
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1135440549 LIMIT 1
1078472
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1135440549], ["username", "billy_40"], ["access_token", "efc1c91ab9a63687d3991509a0a28bf0"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:24.807569"], ["updated_at", "2015-11-18 21:17:24.807569"]]
1078473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078474
+  (0.0ms) SAVEPOINT active_record_1
1078475
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1821429292 LIMIT 1
1078476
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1821429292], ["username", "billy_41"], ["access_token", "777b499a15b384780c91213a1b7efd6f"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:24.809264"], ["updated_at", "2015-11-18 21:17:24.809264"]]
1078477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078478
+  (0.1ms) SAVEPOINT active_record_1
1078479
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1179443037 LIMIT 1
1078480
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1179443037], ["username", "billy_42"], ["access_token", "c3229ba67775b1cebaafc7ca1332901e"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:24.810996"], ["updated_at", "2015-11-18 21:17:24.810996"]]
1078481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078482
+  (0.0ms) SAVEPOINT active_record_1
1078483
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -35262088 LIMIT 1
1078484
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -35262088], ["username", "billy_43"], ["access_token", "79cd6a674ded9b611d9dadd97fbed933"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:24.812694"], ["updated_at", "2015-11-18 21:17:24.812694"]]
1078485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078486
+  (0.0ms) SAVEPOINT active_record_1
1078487
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -478103680 LIMIT 1
1078488
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -478103680], ["username", "billy_44"], ["access_token", "79ed7176b94f8693daaa011018dca0d0"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:24.814362"], ["updated_at", "2015-11-18 21:17:24.814362"]]
1078489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078490
+  (0.0ms) SAVEPOINT active_record_1
1078491
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -937612775 LIMIT 1
1078492
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -937612775], ["username", "billy_45"], ["access_token", "51d6b8b38a34158c39dd3c16737a0659"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:24.816060"], ["updated_at", "2015-11-18 21:17:24.816060"]]
1078493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078494
+  (0.0ms) SAVEPOINT active_record_1
1078495
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1333792635 LIMIT 1
1078496
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1333792635], ["username", "billy_46"], ["access_token", "0298ade94a94d38960cb02e7282fd54b"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:24.817838"], ["updated_at", "2015-11-18 21:17:24.817838"]]
1078497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078498
+  (0.0ms) SAVEPOINT active_record_1
1078499
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -56918396 LIMIT 1
1078500
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -56918396], ["username", "billy_47"], ["access_token", "24824d1beb64c63c963d370a754be6a0"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:24.819547"], ["updated_at", "2015-11-18 21:17:24.819547"]]
1078501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078502
+  (0.0ms) SAVEPOINT active_record_1
1078503
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1148346223 LIMIT 1
1078504
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1148346223], ["username", "billy_48"], ["access_token", "a4e41da3b16f92e6c65f1d39d26f19f1"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:24.821253"], ["updated_at", "2015-11-18 21:17:24.821253"]]
1078505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078506
+  (0.0ms) SAVEPOINT active_record_1
1078507
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -606421046 LIMIT 1
1078508
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -606421046], ["username", "billy_49"], ["access_token", "82f991fc1c5feec1b587ab28dcdc726e"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:24.823044"], ["updated_at", "2015-11-18 21:17:24.823044"]]
1078509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078510
+  (0.0ms) SAVEPOINT active_record_1
1078511
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1078512
+  (1.1ms) rollback transaction
1078513
+  (0.1ms) begin transaction
1078514
+  (0.0ms) rollback transaction
1078515
+  (0.0ms) begin transaction
1078516
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" IS NULL LIMIT 1
1078517
+  (0.0ms) SAVEPOINT active_record_1
1078518
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1078519
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("username", "access_token", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["username", "40773e4dadf800fb0c0b4c1eded80438"], ["access_token", "f9125d581d8da932bd9444d9aaa1797e"], ["openstax_uid", 1], ["created_at", "2015-11-18 21:17:24.839907"], ["updated_at", "2015-11-18 21:17:24.839907"]]
1078520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078521
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1078522
+  (0.4ms) rollback transaction
1078523
+  (0.0ms) begin transaction
1078524
+  (0.0ms) SAVEPOINT active_record_1
1078525
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -611469331 LIMIT 1
1078526
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -611469331], ["username", "93f5859983a7c0eb3eadcf696127900f"], ["access_token", "accd86e42c6f63a5f745b6085b69c1b9"], ["created_at", "2015-11-18 21:17:24.844597"], ["updated_at", "2015-11-18 21:17:24.844597"]]
1078527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078528
+  (0.0ms) SAVEPOINT active_record_1
1078529
+ 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" IS NULL) LIMIT 1
1078530
+ OpenStax::Accounts::GroupOwner Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 1 AND "openstax_accounts_group_owners"."group_id" IS NULL) LIMIT 1
1078531
+ OpenStax::Accounts::GroupOwner Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 1 AND "openstax_accounts_group_owners"."group_id" IS NULL) LIMIT 1
1078532
+ 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" IS NULL) LIMIT 1
1078533
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1803518223 LIMIT 1
1078534
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "is_public", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Test"], ["is_public", "t"], ["openstax_uid", -1803518223], ["created_at", "2015-11-18 21:17:24.850075"], ["updated_at", "2015-11-18 21:17:24.850075"]]
1078535
+ OpenStax::Accounts::GroupOwner Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 1 AND "openstax_accounts_group_owners"."group_id" = -1803518223) LIMIT 1
1078536
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_owners" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", -611469331], ["group_id", -1803518223], ["created_at", "2015-11-18 21:17:24.852098"], ["updated_at", "2015-11-18 21:17:24.852098"]]
1078537
+ 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" = -1803518223) LIMIT 1
1078538
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("user_id", "group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", -611469331], ["group_id", -1803518223], ["created_at", "2015-11-18 21:17:24.854028"], ["updated_at", "2015-11-18 21:17:24.854028"]]
1078539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078540
+ OpenStax::Accounts::Account Load (0.2ms) 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" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["group_id", -1803518223]]
1078541
+ OpenStax::Accounts::Account Load (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" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["group_id", -1803518223]]
1078542
+  (0.7ms) rollback transaction
1078543
+  (0.1ms) begin transaction
1078544
+  (0.0ms) rollback transaction
1078545
+  (0.0ms) begin transaction
1078546
+  (0.0ms) SAVEPOINT active_record_1
1078547
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1078548
+ 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", "10928d7c48980104b7e2ba8b82433df1"], ["created_at", "2015-11-18 21:17:24.867595"], ["updated_at", "2015-11-18 21:17:24.867595"]]
1078549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078550
+ Processing by OpenStax::Accounts::SessionsController#new as HTML
1078551
+ Redirected to http://test.host/accounts/dev/accounts
1078552
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1078553
+  (0.5ms) rollback transaction
1078554
+  (0.0ms) begin transaction
1078555
+  (0.0ms) SAVEPOINT active_record_1
1078556
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1078557
+ 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", "5e2484ad5eb2e0253852efb142daf282"], ["created_at", "2015-11-18 21:17:24.873806"], ["updated_at", "2015-11-18 21:17:24.873806"]]
1078558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078559
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
1078560
+ Processing by OpenStax::Accounts::SessionsController#destroy as HTML
1078561
+ Redirected to http://test.host/
1078562
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1078563
+  (0.4ms) rollback transaction
1078564
+  (0.0ms) begin transaction
1078565
+  (0.0ms) SAVEPOINT active_record_1
1078566
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
1078567
+ 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", "04b22c770cdef51851745ed025c6c119"], ["created_at", "2015-11-18 21:17:24.879732"], ["updated_at", "2015-11-18 21:17:24.879732"]]
1078568
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078569
+  (0.4ms) rollback transaction
1078570
+  (0.0ms) begin transaction
1078571
+  (0.0ms) SAVEPOINT active_record_1
1078572
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -613549889 LIMIT 1
1078573
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -613549889], ["username", "jstrav"], ["access_token", "24ad9bb7e15a357137c5903a993ab9be"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.883374"], ["updated_at", "2015-11-18 21:17:24.883374"]]
1078574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078575
+  (0.0ms) SAVEPOINT active_record_1
1078576
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1360856 LIMIT 1
1078577
+ 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", -1360856], ["username", "mary"], ["access_token", "7a6bb0f2a20cbbe9c44ab65cfb142cad"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.885328"], ["updated_at", "2015-11-18 21:17:24.885328"]]
1078578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078579
+  (0.0ms) SAVEPOINT active_record_1
1078580
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -951566953 LIMIT 1
1078581
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -951566953], ["username", "jstead"], ["access_token", "8fd74bae5d0991ad5c4ed2e4d8968050"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.887511"], ["updated_at", "2015-11-18 21:17:24.887511"]]
1078582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078583
+  (0.0ms) SAVEPOINT active_record_1
1078584
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1687035253 LIMIT 1
1078585
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1687035253], ["username", "bigbear"], ["access_token", "539ecbad717cae71dd2eac192497a202"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.889363"], ["updated_at", "2015-11-18 21:17:24.889363"]]
1078586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078587
+  (0.0ms) SAVEPOINT active_record_1
1078588
+  (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))
1078589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078590
+ 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
1078591
+  (0.5ms) rollback transaction
1078592
+  (0.0ms) begin transaction
1078593
+  (0.0ms) SAVEPOINT active_record_1
1078594
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -820343532 LIMIT 1
1078595
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -820343532], ["username", "jstrav"], ["access_token", "7a4022a9e509a2fb9a9fd8272bf6a6b8"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.895460"], ["updated_at", "2015-11-18 21:17:24.895460"]]
1078596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078597
+  (0.0ms) SAVEPOINT active_record_1
1078598
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1968517171 LIMIT 1
1078599
+ 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", -1968517171], ["username", "mary"], ["access_token", "25f2cf820ecc4379f8b9d0dc9a6bfba8"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.897445"], ["updated_at", "2015-11-18 21:17:24.897445"]]
1078600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078601
+  (0.0ms) SAVEPOINT active_record_1
1078602
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1096898442 LIMIT 1
1078603
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1096898442], ["username", "jstead"], ["access_token", "e695df1f9635d72734099fcebc5663dc"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.899364"], ["updated_at", "2015-11-18 21:17:24.899364"]]
1078604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078605
+  (0.0ms) SAVEPOINT active_record_1
1078606
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -22078646 LIMIT 1
1078607
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -22078646], ["username", "bigbear"], ["access_token", "cc26169b6f7b42240c0b8e6cfc93c978"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.901334"], ["updated_at", "2015-11-18 21:17:24.901334"]]
1078608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078609
+  (0.0ms) SAVEPOINT active_record_1
1078610
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1078611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078612
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
1078613
+  (0.5ms) rollback transaction
1078614
+  (0.0ms) begin transaction
1078615
+  (0.0ms) SAVEPOINT active_record_1
1078616
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1019246349 LIMIT 1
1078617
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1019246349], ["username", "jstrav"], ["access_token", "28aafeef2ac4bde56fb5402e508b54ed"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.906975"], ["updated_at", "2015-11-18 21:17:24.906975"]]
1078618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078619
+  (0.0ms) SAVEPOINT active_record_1
1078620
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1688257975 LIMIT 1
1078621
+ 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", -1688257975], ["username", "mary"], ["access_token", "3e2f192f5e4c3d53e397af2af236f6ab"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.909088"], ["updated_at", "2015-11-18 21:17:24.909088"]]
1078622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078623
+  (0.0ms) SAVEPOINT active_record_1
1078624
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -825004800 LIMIT 1
1078625
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -825004800], ["username", "jstead"], ["access_token", "294c78c73507489e219bc1b61b8c63aa"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.911086"], ["updated_at", "2015-11-18 21:17:24.911086"]]
1078626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078627
+  (0.0ms) SAVEPOINT active_record_1
1078628
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1391761484 LIMIT 1
1078629
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1391761484], ["username", "bigbear"], ["access_token", "97a1d57fe37b1d7999de4ceac417c67e"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.912825"], ["updated_at", "2015-11-18 21:17:24.912825"]]
1078630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078631
+  (0.0ms) SAVEPOINT active_record_1
1078632
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1078633
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078634
+ 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
1078635
+  (0.6ms) rollback transaction
1078636
+  (0.0ms) begin transaction
1078637
+  (0.0ms) SAVEPOINT active_record_1
1078638
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1635185559 LIMIT 1
1078639
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1635185559], ["username", "jstrav"], ["access_token", "b7c7e75208dce6e8fb67ea3269877ada"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.918833"], ["updated_at", "2015-11-18 21:17:24.918833"]]
1078640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078641
+  (0.1ms) SAVEPOINT active_record_1
1078642
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -723475462 LIMIT 1
1078643
+ 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", -723475462], ["username", "mary"], ["access_token", "8f3edae3daa3002720f7f5f8b2490e04"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.920852"], ["updated_at", "2015-11-18 21:17:24.920852"]]
1078644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078645
+  (0.0ms) SAVEPOINT active_record_1
1078646
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -608354719 LIMIT 1
1078647
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -608354719], ["username", "jstead"], ["access_token", "c8f04746a7d907cb10fec1ad2420e64f"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.922757"], ["updated_at", "2015-11-18 21:17:24.922757"]]
1078648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078649
+  (0.0ms) SAVEPOINT active_record_1
1078650
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -76908077 LIMIT 1
1078651
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -76908077], ["username", "bigbear"], ["access_token", "141d580c21c328f4ce4b21a8bb91996d"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.924467"], ["updated_at", "2015-11-18 21:17:24.924467"]]
1078652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078653
+  (0.0ms) SAVEPOINT active_record_1
1078654
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%')
1078655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078656
+ 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
1078657
+  (0.5ms) rollback transaction
1078658
+  (0.0ms) begin transaction
1078659
+  (0.0ms) SAVEPOINT active_record_1
1078660
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864595767 LIMIT 1
1078661
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1864595767], ["username", "jstrav"], ["access_token", "74c08fabbf670a7cdad67b2a72d6731d"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.929861"], ["updated_at", "2015-11-18 21:17:24.929861"]]
1078662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078663
+  (0.0ms) SAVEPOINT active_record_1
1078664
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1326727394 LIMIT 1
1078665
+ 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", -1326727394], ["username", "mary"], ["access_token", "5bd16b0ca99350bf5db367f43690c28f"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.931799"], ["updated_at", "2015-11-18 21:17:24.931799"]]
1078666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078667
+  (0.1ms) SAVEPOINT active_record_1
1078668
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -211323175 LIMIT 1
1078669
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -211323175], ["username", "jstead"], ["access_token", "3c37cbef718e1ddf6601d2916ff30ac0"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.933650"], ["updated_at", "2015-11-18 21:17:24.933650"]]
1078670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078671
+  (0.0ms) SAVEPOINT active_record_1
1078672
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -105246780 LIMIT 1
1078673
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -105246780], ["username", "bigbear"], ["access_token", "a6c5475c47630f0746f1e342a6e9f0f1"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.935359"], ["updated_at", "2015-11-18 21:17:24.935359"]]
1078674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078675
+  (0.1ms) SAVEPOINT active_record_1
1078676
+  (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))
1078677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078678
+ 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
1078679
+  (0.6ms) rollback transaction
1078680
+  (0.1ms) begin transaction
1078681
+  (0.1ms) SAVEPOINT active_record_1
1078682
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -69568439 LIMIT 1
1078683
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -69568439], ["username", "jstrav"], ["access_token", "cec15f84a0d5dbb4bd74a0da5a950ab0"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.942167"], ["updated_at", "2015-11-18 21:17:24.942167"]]
1078684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078685
+  (0.0ms) SAVEPOINT active_record_1
1078686
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -880506115 LIMIT 1
1078687
+ 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", -880506115], ["username", "mary"], ["access_token", "cd65ad50d66cc17359fdb8e1ab036a81"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.945508"], ["updated_at", "2015-11-18 21:17:24.945508"]]
1078688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078689
+  (0.0ms) SAVEPOINT active_record_1
1078690
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1988227726 LIMIT 1
1078691
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1988227726], ["username", "jstead"], ["access_token", "c298513c28284b2273821dafbf3f0143"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.948828"], ["updated_at", "2015-11-18 21:17:24.948828"]]
1078692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078693
+  (0.0ms) SAVEPOINT active_record_1
1078694
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2093050806 LIMIT 1
1078695
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2093050806], ["username", "bigbear"], ["access_token", "228b23af83c342dd8011fcab6116df8c"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.951448"], ["updated_at", "2015-11-18 21:17:24.951448"]]
1078696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078697
+  (0.0ms) SAVEPOINT active_record_1
1078698
+  (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))
1078699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078700
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%' OR "openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%' OR "openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%' OR "openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%' OR "openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
1078701
+  (0.5ms) rollback transaction
1078702
+  (0.1ms) begin transaction
1078703
+  (0.1ms) SAVEPOINT active_record_1
1078704
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1397744364 LIMIT 1
1078705
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1397744364], ["username", "jstrav"], ["access_token", "0821508097147b3c2fe6160265ddf08c"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.959058"], ["updated_at", "2015-11-18 21:17:24.959058"]]
1078706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078707
+  (0.0ms) SAVEPOINT active_record_1
1078708
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -637809662 LIMIT 1
1078709
+ 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", -637809662], ["username", "mary"], ["access_token", "5cfba2f117d79a2d86420a8a977af260"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.961868"], ["updated_at", "2015-11-18 21:17:24.961868"]]
1078710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078711
+  (0.0ms) SAVEPOINT active_record_1
1078712
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -30782602 LIMIT 1
1078713
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -30782602], ["username", "jstead"], ["access_token", "9f4a1ca38145406b11dd33248fbd9c8d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.964230"], ["updated_at", "2015-11-18 21:17:24.964230"]]
1078714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078715
+  (0.0ms) SAVEPOINT active_record_1
1078716
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1915445892 LIMIT 1
1078717
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1915445892], ["username", "bigbear"], ["access_token", "3763ffe089ecaf4260b741b55736dd18"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.966224"], ["updated_at", "2015-11-18 21:17:24.966224"]]
1078718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078719
+  (0.0ms) SAVEPOINT active_record_1
1078720
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%')
1078721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078722
+ 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
1078723
+  (0.6ms) rollback transaction
1078724
+  (0.0ms) begin transaction
1078725
+  (0.0ms) SAVEPOINT active_record_1
1078726
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -478810177 LIMIT 1
1078727
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -478810177], ["username", "jstrav"], ["access_token", "5aef9ac8c5531f220e259a3d2f5a87a1"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.971812"], ["updated_at", "2015-11-18 21:17:24.971812"]]
1078728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078729
+  (0.0ms) SAVEPOINT active_record_1
1078730
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -302520100 LIMIT 1
1078731
+ 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", -302520100], ["username", "mary"], ["access_token", "65f04a2ad189d0b643529003ddcddc5c"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.973970"], ["updated_at", "2015-11-18 21:17:24.973970"]]
1078732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078733
+  (0.0ms) SAVEPOINT active_record_1
1078734
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -24121389 LIMIT 1
1078735
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -24121389], ["username", "jstead"], ["access_token", "3a12c57547b2667c52da46ba10572821"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.976286"], ["updated_at", "2015-11-18 21:17:24.976286"]]
1078736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078737
+  (0.0ms) SAVEPOINT active_record_1
1078738
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -266455399 LIMIT 1
1078739
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -266455399], ["username", "bigbear"], ["access_token", "2fe9de235cccae7328dd11fe00cbf073"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.978112"], ["updated_at", "2015-11-18 21:17:24.978112"]]
1078740
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078741
+  (0.0ms) SAVEPOINT active_record_1
1078742
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%')
1078743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078744
+ 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
1078745
+  (0.5ms) rollback transaction
1078746
+  (0.0ms) begin transaction
1078747
+  (0.0ms) SAVEPOINT active_record_1
1078748
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -208258005 LIMIT 1
1078749
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -208258005], ["username", "jstrav"], ["access_token", "3abd3a61a6f6b5a8210d12deb65a1045"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.984252"], ["updated_at", "2015-11-18 21:17:24.984252"]]
1078750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078751
+  (0.0ms) SAVEPOINT active_record_1
1078752
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2052553892 LIMIT 1
1078753
+ 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", -2052553892], ["username", "mary"], ["access_token", "23ca8b80d3df264cc05cd3ec95184087"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.986384"], ["updated_at", "2015-11-18 21:17:24.986384"]]
1078754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078755
+  (0.0ms) SAVEPOINT active_record_1
1078756
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927004228 LIMIT 1
1078757
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -927004228], ["username", "jstead"], ["access_token", "09756c761cfa5fcbac519417f6bb518f"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.988264"], ["updated_at", "2015-11-18 21:17:24.988264"]]
1078758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078759
+  (0.0ms) SAVEPOINT active_record_1
1078760
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -32659169 LIMIT 1
1078761
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -32659169], ["username", "bigbear"], ["access_token", "e8165716a35a1c4bffd55c589b7875ed"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:24.989972"], ["updated_at", "2015-11-18 21:17:24.989972"]]
1078762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078763
+  (0.0ms) SAVEPOINT active_record_1
1078764
+  (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%')
1078765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078766
+ 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
1078767
+  (0.5ms) rollback transaction
1078768
+  (0.1ms) begin transaction
1078769
+  (0.0ms) SAVEPOINT active_record_1
1078770
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -297212945 LIMIT 1
1078771
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -297212945], ["username", "jstrav"], ["access_token", "843ec5d4130d0487984d149a1b062497"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:24.995829"], ["updated_at", "2015-11-18 21:17:24.995829"]]
1078772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078773
+  (0.0ms) SAVEPOINT active_record_1
1078774
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2072517976 LIMIT 1
1078775
+ 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", -2072517976], ["username", "mary"], ["access_token", "d108010091d3c9f046f1534b81123ed7"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:24.997881"], ["updated_at", "2015-11-18 21:17:24.997881"]]
1078776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078777
+  (0.0ms) SAVEPOINT active_record_1
1078778
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309478238 LIMIT 1
1078779
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -309478238], ["username", "jstead"], ["access_token", "a5e544ec2851812ead8937d29da41d45"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:24.999744"], ["updated_at", "2015-11-18 21:17:24.999744"]]
1078780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078781
+  (0.0ms) SAVEPOINT active_record_1
1078782
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1396763989 LIMIT 1
1078783
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1396763989], ["username", "bigbear"], ["access_token", "62c7292e00358eda383d957edb355e9f"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.001433"], ["updated_at", "2015-11-18 21:17:25.001433"]]
1078784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078785
+  (0.0ms) SAVEPOINT active_record_1
1078786
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%')
1078787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078788
+ 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
1078789
+  (0.6ms) rollback transaction
1078790
+  (0.1ms) begin transaction
1078791
+  (0.1ms) SAVEPOINT active_record_1
1078792
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2103820038 LIMIT 1
1078793
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2103820038], ["username", "jstrav"], ["access_token", "d093a5ee2344a427b3b548c5ed1b006e"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.007968"], ["updated_at", "2015-11-18 21:17:25.007968"]]
1078794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078795
+  (0.0ms) SAVEPOINT active_record_1
1078796
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1888227118 LIMIT 1
1078797
+ 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", -1888227118], ["username", "mary"], ["access_token", "a09e11c25fb7240c23de7b085913c847"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.011112"], ["updated_at", "2015-11-18 21:17:25.011112"]]
1078798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078799
+  (0.0ms) SAVEPOINT active_record_1
1078800
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1843229213 LIMIT 1
1078801
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1843229213], ["username", "jstead"], ["access_token", "5c3539fd9ca598b2833ccb7207dfb46f"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.013932"], ["updated_at", "2015-11-18 21:17:25.013932"]]
1078802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078803
+  (0.0ms) SAVEPOINT active_record_1
1078804
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1398185475 LIMIT 1
1078805
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1398185475], ["username", "bigbear"], ["access_token", "2e3b8a7990dc4ee73b6c9f8ff21d74f9"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.016224"], ["updated_at", "2015-11-18 21:17:25.016224"]]
1078806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078807
+  (0.0ms) SAVEPOINT active_record_1
1078808
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -636746189 LIMIT 1
1078809
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -636746189], ["username", "billy_00"], ["access_token", "953ef3ba30c54e7c880d41b360545b5c"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:25.018411"], ["updated_at", "2015-11-18 21:17:25.018411"]]
1078810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078811
+  (0.0ms) SAVEPOINT active_record_1
1078812
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1759449377 LIMIT 1
1078813
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1759449377], ["username", "billy_01"], ["access_token", "33b075b7056eecc1360b74fe04d2072c"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:25.020301"], ["updated_at", "2015-11-18 21:17:25.020301"]]
1078814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078815
+  (0.0ms) SAVEPOINT active_record_1
1078816
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1040259101 LIMIT 1
1078817
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1040259101], ["username", "billy_02"], ["access_token", "a254395c7a6fefeb5767d010e6efa4e3"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:25.022784"], ["updated_at", "2015-11-18 21:17:25.022784"]]
1078818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078819
+  (0.0ms) SAVEPOINT active_record_1
1078820
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -990953500 LIMIT 1
1078821
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -990953500], ["username", "billy_03"], ["access_token", "350edfc1e7ca9393d6c09ac26fcbc866"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:25.024525"], ["updated_at", "2015-11-18 21:17:25.024525"]]
1078822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078823
+  (0.0ms) SAVEPOINT active_record_1
1078824
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -970526255 LIMIT 1
1078825
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -970526255], ["username", "billy_04"], ["access_token", "8ec720e68c08d59af69177823a3bb1e6"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:25.026248"], ["updated_at", "2015-11-18 21:17:25.026248"]]
1078826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078827
+  (0.1ms) SAVEPOINT active_record_1
1078828
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1661492852 LIMIT 1
1078829
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1661492852], ["username", "billy_05"], ["access_token", "f8b7d54a432f57e9fbd3ab6267f5b646"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:25.027952"], ["updated_at", "2015-11-18 21:17:25.027952"]]
1078830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078831
+  (0.0ms) SAVEPOINT active_record_1
1078832
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -703257435 LIMIT 1
1078833
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -703257435], ["username", "billy_06"], ["access_token", "70a7894a163d248485f77425b43195f1"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:25.029637"], ["updated_at", "2015-11-18 21:17:25.029637"]]
1078834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078835
+  (0.0ms) SAVEPOINT active_record_1
1078836
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2051267534 LIMIT 1
1078837
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2051267534], ["username", "billy_07"], ["access_token", "29dc309190a7895443dc33577aa60eb2"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:25.031311"], ["updated_at", "2015-11-18 21:17:25.031311"]]
1078838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078839
+  (0.0ms) SAVEPOINT active_record_1
1078840
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -358943934 LIMIT 1
1078841
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -358943934], ["username", "billy_08"], ["access_token", "684a79280578967afda955db0f8913d5"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:25.033055"], ["updated_at", "2015-11-18 21:17:25.033055"]]
1078842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078843
+  (0.0ms) SAVEPOINT active_record_1
1078844
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -418688066 LIMIT 1
1078845
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -418688066], ["username", "billy_09"], ["access_token", "019f111b4a9907f2db7b1f77c9315884"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:25.034784"], ["updated_at", "2015-11-18 21:17:25.034784"]]
1078846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078847
+  (0.0ms) SAVEPOINT active_record_1
1078848
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2099734343 LIMIT 1
1078849
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2099734343], ["username", "billy_10"], ["access_token", "cbbe1e4853e0ce05d0a5a587adecc268"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:25.036538"], ["updated_at", "2015-11-18 21:17:25.036538"]]
1078850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078851
+  (0.0ms) SAVEPOINT active_record_1
1078852
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1884367354 LIMIT 1
1078853
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1884367354], ["username", "billy_11"], ["access_token", "7963bc2efd68ee081a5847382346f8c1"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:25.038242"], ["updated_at", "2015-11-18 21:17:25.038242"]]
1078854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078855
+  (0.0ms) SAVEPOINT active_record_1
1078856
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -958957108 LIMIT 1
1078857
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -958957108], ["username", "billy_12"], ["access_token", "ae902cd9fcb0df9d3381cee4c08d8109"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:25.039961"], ["updated_at", "2015-11-18 21:17:25.039961"]]
1078858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078859
+  (0.0ms) SAVEPOINT active_record_1
1078860
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1608084341 LIMIT 1
1078861
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1608084341], ["username", "billy_13"], ["access_token", "864677ac3d0802e5c51c4d6232bae8e9"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:25.041713"], ["updated_at", "2015-11-18 21:17:25.041713"]]
1078862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078863
+  (0.0ms) SAVEPOINT active_record_1
1078864
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1568860440 LIMIT 1
1078865
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1568860440], ["username", "billy_14"], ["access_token", "66803f03d10995022470305ea544db8f"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:25.043442"], ["updated_at", "2015-11-18 21:17:25.043442"]]
1078866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078867
+  (0.0ms) SAVEPOINT active_record_1
1078868
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474064000 LIMIT 1
1078869
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -474064000], ["username", "billy_15"], ["access_token", "72603e610936af6e5d6a103ffc3e16c9"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:25.045376"], ["updated_at", "2015-11-18 21:17:25.045376"]]
1078870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078871
+  (0.0ms) SAVEPOINT active_record_1
1078872
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -601349057 LIMIT 1
1078873
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -601349057], ["username", "billy_16"], ["access_token", "b78ab3d76da1c7c52c62ba9d320d28bc"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:25.047156"], ["updated_at", "2015-11-18 21:17:25.047156"]]
1078874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078875
+  (0.0ms) SAVEPOINT active_record_1
1078876
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886287000 LIMIT 1
1078877
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -886287000], ["username", "billy_17"], ["access_token", "50e2d2d951cf2b8783d70d35781b1a90"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:25.048906"], ["updated_at", "2015-11-18 21:17:25.048906"]]
1078878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078879
+  (0.0ms) SAVEPOINT active_record_1
1078880
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1026989139 LIMIT 1
1078881
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1026989139], ["username", "billy_18"], ["access_token", "0bd2743e4a2df3244fefff71d1503c9c"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:25.050625"], ["updated_at", "2015-11-18 21:17:25.050625"]]
1078882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078883
+  (0.0ms) SAVEPOINT active_record_1
1078884
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2146824532 LIMIT 1
1078885
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2146824532], ["username", "billy_19"], ["access_token", "5017c53e8e1872b2dec691efcf8250c2"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:25.052335"], ["updated_at", "2015-11-18 21:17:25.052335"]]
1078886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078887
+  (0.0ms) SAVEPOINT active_record_1
1078888
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1477022070 LIMIT 1
1078889
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1477022070], ["username", "billy_20"], ["access_token", "71dc683ce85d65ec30e0d372f3ed53c2"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:25.054182"], ["updated_at", "2015-11-18 21:17:25.054182"]]
1078890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078891
+  (0.0ms) SAVEPOINT active_record_1
1078892
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -771934899 LIMIT 1
1078893
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -771934899], ["username", "billy_21"], ["access_token", "1bb159a8a9f2b67bb1ac49cad7546b92"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:25.055895"], ["updated_at", "2015-11-18 21:17:25.055895"]]
1078894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078895
+  (0.0ms) SAVEPOINT active_record_1
1078896
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -292800578 LIMIT 1
1078897
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -292800578], ["username", "billy_22"], ["access_token", "883a7dde7e04852116cff2be76df0a31"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:25.057676"], ["updated_at", "2015-11-18 21:17:25.057676"]]
1078898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078899
+  (0.0ms) SAVEPOINT active_record_1
1078900
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -332725248 LIMIT 1
1078901
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -332725248], ["username", "billy_23"], ["access_token", "acbdfc17339e2893c7418df95412f3ce"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:25.059401"], ["updated_at", "2015-11-18 21:17:25.059401"]]
1078902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078903
+  (0.0ms) SAVEPOINT active_record_1
1078904
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1092389243 LIMIT 1
1078905
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1092389243], ["username", "billy_24"], ["access_token", "440fec86e5e86193cde4a1d6dd049e9c"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:25.061479"], ["updated_at", "2015-11-18 21:17:25.061479"]]
1078906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078907
+  (0.1ms) SAVEPOINT active_record_1
1078908
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -463456125 LIMIT 1
1078909
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -463456125], ["username", "billy_25"], ["access_token", "4b5845334e1294fa54df62a685028007"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:25.064742"], ["updated_at", "2015-11-18 21:17:25.064742"]]
1078910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078911
+  (0.0ms) SAVEPOINT active_record_1
1078912
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -404799106 LIMIT 1
1078913
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -404799106], ["username", "billy_26"], ["access_token", "52949ffbdc6b531d0881add6682ff22e"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:25.067590"], ["updated_at", "2015-11-18 21:17:25.067590"]]
1078914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078915
+  (0.0ms) SAVEPOINT active_record_1
1078916
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -412612427 LIMIT 1
1078917
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -412612427], ["username", "billy_27"], ["access_token", "e7904bacda4dee7acc042317b1085446"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:25.070139"], ["updated_at", "2015-11-18 21:17:25.070139"]]
1078918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078919
+  (0.0ms) SAVEPOINT active_record_1
1078920
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1711488606 LIMIT 1
1078921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1711488606], ["username", "billy_28"], ["access_token", "f9e609e5336a3d7fac83f9d0d7d83995"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:25.072459"], ["updated_at", "2015-11-18 21:17:25.072459"]]
1078922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078923
+  (0.0ms) SAVEPOINT active_record_1
1078924
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1785354422 LIMIT 1
1078925
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1785354422], ["username", "billy_29"], ["access_token", "f02b121e2083208de300129b923d2686"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:25.074540"], ["updated_at", "2015-11-18 21:17:25.074540"]]
1078926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078927
+  (0.0ms) SAVEPOINT active_record_1
1078928
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1934071869 LIMIT 1
1078929
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1934071869], ["username", "billy_30"], ["access_token", "0461d9281f472ae7819a9b75bfe057d6"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:25.076591"], ["updated_at", "2015-11-18 21:17:25.076591"]]
1078930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078931
+  (0.0ms) SAVEPOINT active_record_1
1078932
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1918319466 LIMIT 1
1078933
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1918319466], ["username", "billy_31"], ["access_token", "b4130b2519d336ba09627f634423168d"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:25.078389"], ["updated_at", "2015-11-18 21:17:25.078389"]]
1078934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078935
+  (0.0ms) SAVEPOINT active_record_1
1078936
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1979389749 LIMIT 1
1078937
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1979389749], ["username", "billy_32"], ["access_token", "4463f56bf8555c4f7c3573722423b7c6"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:25.080163"], ["updated_at", "2015-11-18 21:17:25.080163"]]
1078938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078939
+  (0.0ms) SAVEPOINT active_record_1
1078940
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -996776764 LIMIT 1
1078941
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -996776764], ["username", "billy_33"], ["access_token", "39a642e726ce2d8a0cfc85179b532c44"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:25.082014"], ["updated_at", "2015-11-18 21:17:25.082014"]]
1078942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078943
+  (0.0ms) SAVEPOINT active_record_1
1078944
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -560450569 LIMIT 1
1078945
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -560450569], ["username", "billy_34"], ["access_token", "10329682682ae1b84adc660ee15585cc"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:25.083792"], ["updated_at", "2015-11-18 21:17:25.083792"]]
1078946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078947
+  (0.0ms) SAVEPOINT active_record_1
1078948
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -760858513 LIMIT 1
1078949
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -760858513], ["username", "billy_35"], ["access_token", "74bfcd7c599788b353a6aa47d3e8b4d6"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:25.085559"], ["updated_at", "2015-11-18 21:17:25.085559"]]
1078950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078951
+  (0.0ms) SAVEPOINT active_record_1
1078952
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1828391508 LIMIT 1
1078953
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1828391508], ["username", "billy_36"], ["access_token", "04ac6524cb4b42dd71dc0f3d0e695f62"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:25.087363"], ["updated_at", "2015-11-18 21:17:25.087363"]]
1078954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078955
+  (0.0ms) SAVEPOINT active_record_1
1078956
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -183138476 LIMIT 1
1078957
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -183138476], ["username", "billy_37"], ["access_token", "9fdf222c464d5d4fbd1703961f4c431e"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:25.089285"], ["updated_at", "2015-11-18 21:17:25.089285"]]
1078958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078959
+  (0.0ms) SAVEPOINT active_record_1
1078960
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108517513 LIMIT 1
1078961
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2108517513], ["username", "billy_38"], ["access_token", "f9dab26f53699d9011a2f99d76162f18"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:25.091072"], ["updated_at", "2015-11-18 21:17:25.091072"]]
1078962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078963
+  (0.0ms) SAVEPOINT active_record_1
1078964
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -169866875 LIMIT 1
1078965
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -169866875], ["username", "billy_39"], ["access_token", "e043b6d842bd9b90e089fd9481c69f63"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:25.092826"], ["updated_at", "2015-11-18 21:17:25.092826"]]
1078966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078967
+  (0.0ms) SAVEPOINT active_record_1
1078968
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -438838977 LIMIT 1
1078969
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -438838977], ["username", "billy_40"], ["access_token", "43c7b418db9503f51e5f1b2c972d3fb9"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:25.094559"], ["updated_at", "2015-11-18 21:17:25.094559"]]
1078970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078971
+  (0.0ms) SAVEPOINT active_record_1
1078972
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1188154081 LIMIT 1
1078973
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1188154081], ["username", "billy_41"], ["access_token", "dff6d1071db094b45dda67d20aebd3f2"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:25.096356"], ["updated_at", "2015-11-18 21:17:25.096356"]]
1078974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078975
+  (0.0ms) SAVEPOINT active_record_1
1078976
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2058102682 LIMIT 1
1078977
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2058102682], ["username", "billy_42"], ["access_token", "c4ec753510731e7a620ed5cf5412ba9f"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:25.098090"], ["updated_at", "2015-11-18 21:17:25.098090"]]
1078978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078979
+  (0.0ms) SAVEPOINT active_record_1
1078980
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1967898901 LIMIT 1
1078981
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1967898901], ["username", "billy_43"], ["access_token", "baadf7a46c620661d692864bbf3558fd"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:25.099828"], ["updated_at", "2015-11-18 21:17:25.099828"]]
1078982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078983
+  (0.0ms) SAVEPOINT active_record_1
1078984
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -519527829 LIMIT 1
1078985
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -519527829], ["username", "billy_44"], ["access_token", "8b1095d2c6122c3e1cbbb31c0bd18528"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:25.101598"], ["updated_at", "2015-11-18 21:17:25.101598"]]
1078986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078987
+  (0.0ms) SAVEPOINT active_record_1
1078988
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1843691921 LIMIT 1
1078989
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1843691921], ["username", "billy_45"], ["access_token", "e4b494ca26199c8af2d7f3c9280322c0"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:25.103552"], ["updated_at", "2015-11-18 21:17:25.103552"]]
1078990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078991
+  (0.0ms) SAVEPOINT active_record_1
1078992
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1078993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078994
+ 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 0
1078995
+ 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
1078996
+ 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
1078997
+  (1.2ms) rollback transaction
1078998
+  (0.1ms) begin transaction
1078999
+  (0.1ms) SAVEPOINT active_record_1
1079000
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -188685420 LIMIT 1
1079001
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -188685420], ["username", "jstrav"], ["access_token", "3f2e7d86e7d2ea23fb8e3e1e35277983"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.115105"], ["updated_at", "2015-11-18 21:17:25.115105"]]
1079002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079003
+  (0.0ms) SAVEPOINT active_record_1
1079004
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2053360399 LIMIT 1
1079005
+ 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", -2053360399], ["username", "mary"], ["access_token", "e26bf418e3fa022dd3ce1ecb77750280"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.117760"], ["updated_at", "2015-11-18 21:17:25.117760"]]
1079006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079007
+  (0.0ms) SAVEPOINT active_record_1
1079008
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1373116461 LIMIT 1
1079009
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1373116461], ["username", "jstead"], ["access_token", "3fb453bbdc8d6ae5f933120b1eb558a6"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.120018"], ["updated_at", "2015-11-18 21:17:25.120018"]]
1079010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079011
+  (0.0ms) SAVEPOINT active_record_1
1079012
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1463113764 LIMIT 1
1079013
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1463113764], ["username", "bigbear"], ["access_token", "9e4754793135a029272276692cf8851a"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.121780"], ["updated_at", "2015-11-18 21:17:25.121780"]]
1079014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079015
+  (0.0ms) SAVEPOINT active_record_1
1079016
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -504637814 LIMIT 1
1079017
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -504637814], ["username", "billy_00"], ["access_token", "9b33b804ce64f3d19ef1e587781442b4"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:25.123584"], ["updated_at", "2015-11-18 21:17:25.123584"]]
1079018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079019
+  (0.0ms) SAVEPOINT active_record_1
1079020
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1515326356 LIMIT 1
1079021
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1515326356], ["username", "billy_01"], ["access_token", "488324d81f8a47596cd3fc56d1ba3a97"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:25.125317"], ["updated_at", "2015-11-18 21:17:25.125317"]]
1079022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079023
+  (0.0ms) SAVEPOINT active_record_1
1079024
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -941469753 LIMIT 1
1079025
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -941469753], ["username", "billy_02"], ["access_token", "7f6fb9f17861f6bcae590243bdd4f428"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:25.127102"], ["updated_at", "2015-11-18 21:17:25.127102"]]
1079026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079027
+  (0.0ms) SAVEPOINT active_record_1
1079028
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -738896457 LIMIT 1
1079029
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -738896457], ["username", "billy_03"], ["access_token", "bd616d9e4ff88212bac6e42746ded4cf"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:25.128829"], ["updated_at", "2015-11-18 21:17:25.128829"]]
1079030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079031
+  (0.0ms) SAVEPOINT active_record_1
1079032
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -400513041 LIMIT 1
1079033
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -400513041], ["username", "billy_04"], ["access_token", "b9b97aff49334aaed84016d3e16776fc"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:25.130667"], ["updated_at", "2015-11-18 21:17:25.130667"]]
1079034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079035
+  (0.0ms) SAVEPOINT active_record_1
1079036
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1973127506 LIMIT 1
1079037
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1973127506], ["username", "billy_05"], ["access_token", "e9779a3e9b6b15f8bbe303a4fd09cf1d"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:25.132421"], ["updated_at", "2015-11-18 21:17:25.132421"]]
1079038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079039
+  (0.0ms) SAVEPOINT active_record_1
1079040
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2071395034 LIMIT 1
1079041
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2071395034], ["username", "billy_06"], ["access_token", "062467c729209b0435b70ddad41c62b7"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:25.134197"], ["updated_at", "2015-11-18 21:17:25.134197"]]
1079042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079043
+  (0.0ms) SAVEPOINT active_record_1
1079044
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2041028964 LIMIT 1
1079045
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2041028964], ["username", "billy_07"], ["access_token", "1a42eb8b5963bd0a47b47da67e3ab5c3"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:25.135949"], ["updated_at", "2015-11-18 21:17:25.135949"]]
1079046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079047
+  (0.0ms) SAVEPOINT active_record_1
1079048
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1031276244 LIMIT 1
1079049
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1031276244], ["username", "billy_08"], ["access_token", "62efa54038ab38933043ff0e545348ec"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:25.137717"], ["updated_at", "2015-11-18 21:17:25.137717"]]
1079050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079051
+  (0.0ms) SAVEPOINT active_record_1
1079052
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1630829024 LIMIT 1
1079053
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1630829024], ["username", "billy_09"], ["access_token", "434377cfb6bbceb04b5fb5383b264be4"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:25.139647"], ["updated_at", "2015-11-18 21:17:25.139647"]]
1079054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079055
+  (0.0ms) SAVEPOINT active_record_1
1079056
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2096332082 LIMIT 1
1079057
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2096332082], ["username", "billy_10"], ["access_token", "ec7b6a0601354860b5c5518f106a9fc3"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:25.141512"], ["updated_at", "2015-11-18 21:17:25.141512"]]
1079058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079059
+  (0.0ms) SAVEPOINT active_record_1
1079060
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -887148720 LIMIT 1
1079061
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -887148720], ["username", "billy_11"], ["access_token", "02a5477c0c340e3274c0d341e6037524"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:25.143297"], ["updated_at", "2015-11-18 21:17:25.143297"]]
1079062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079063
+  (0.0ms) SAVEPOINT active_record_1
1079064
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2124084034 LIMIT 1
1079065
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2124084034], ["username", "billy_12"], ["access_token", "7d019f113b7f75a32930292f3aeb2121"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:25.145057"], ["updated_at", "2015-11-18 21:17:25.145057"]]
1079066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079067
+  (0.0ms) SAVEPOINT active_record_1
1079068
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1390176835 LIMIT 1
1079069
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1390176835], ["username", "billy_13"], ["access_token", "9783915df69ab2e2c32e68ef8d1cc9b6"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:25.146872"], ["updated_at", "2015-11-18 21:17:25.146872"]]
1079070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079071
+  (0.0ms) SAVEPOINT active_record_1
1079072
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -226460181 LIMIT 1
1079073
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -226460181], ["username", "billy_14"], ["access_token", "611597da962c4fb94c964ebf00665e64"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:25.148958"], ["updated_at", "2015-11-18 21:17:25.148958"]]
1079074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079075
+  (0.0ms) SAVEPOINT active_record_1
1079076
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -868250248 LIMIT 1
1079077
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -868250248], ["username", "billy_15"], ["access_token", "133b797178cdd6dd7471bd66201abbd0"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:25.150752"], ["updated_at", "2015-11-18 21:17:25.150752"]]
1079078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079079
+  (0.0ms) SAVEPOINT active_record_1
1079080
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1532832090 LIMIT 1
1079081
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1532832090], ["username", "billy_16"], ["access_token", "fe846eb3d3f4514b995b15c497eefe89"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:25.152560"], ["updated_at", "2015-11-18 21:17:25.152560"]]
1079082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079083
+  (0.0ms) SAVEPOINT active_record_1
1079084
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -435659502 LIMIT 1
1079085
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -435659502], ["username", "billy_17"], ["access_token", "4a36c48770d45b3b5e3a8935699cfbe5"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:25.155076"], ["updated_at", "2015-11-18 21:17:25.155076"]]
1079086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079087
+  (0.0ms) SAVEPOINT active_record_1
1079088
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1999448992 LIMIT 1
1079089
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1999448992], ["username", "billy_18"], ["access_token", "e3aef33638e0d83a5b7e051cc26dc5c9"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:25.156952"], ["updated_at", "2015-11-18 21:17:25.156952"]]
1079090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079091
+  (0.0ms) SAVEPOINT active_record_1
1079092
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -127730368 LIMIT 1
1079093
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -127730368], ["username", "billy_19"], ["access_token", "3d4fdd765ebca79b6607459876e10467"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:25.158868"], ["updated_at", "2015-11-18 21:17:25.158868"]]
1079094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079095
+  (0.0ms) SAVEPOINT active_record_1
1079096
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1951342044 LIMIT 1
1079097
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1951342044], ["username", "billy_20"], ["access_token", "3883ec4f52168cc990bc2ec1df44e1e8"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:25.160700"], ["updated_at", "2015-11-18 21:17:25.160700"]]
1079098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079099
+  (0.0ms) SAVEPOINT active_record_1
1079100
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -656477258 LIMIT 1
1079101
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -656477258], ["username", "billy_21"], ["access_token", "c3643adb1ac452e2cc45bc7e79b48d2b"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:25.162487"], ["updated_at", "2015-11-18 21:17:25.162487"]]
1079102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079103
+  (0.0ms) SAVEPOINT active_record_1
1079104
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -896394249 LIMIT 1
1079105
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -896394249], ["username", "billy_22"], ["access_token", "229db190002f4aba566379e616163e92"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:25.164280"], ["updated_at", "2015-11-18 21:17:25.164280"]]
1079106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079107
+  (0.0ms) SAVEPOINT active_record_1
1079108
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2077348347 LIMIT 1
1079109
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2077348347], ["username", "billy_23"], ["access_token", "c823f2b5fb61798312e91105be12febf"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:25.165949"], ["updated_at", "2015-11-18 21:17:25.165949"]]
1079110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079111
+  (0.0ms) SAVEPOINT active_record_1
1079112
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -33580674 LIMIT 1
1079113
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -33580674], ["username", "billy_24"], ["access_token", "2142a5360dd9c614a075a0df6a04aa0b"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:25.167562"], ["updated_at", "2015-11-18 21:17:25.167562"]]
1079114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079115
+  (0.0ms) SAVEPOINT active_record_1
1079116
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1275172062 LIMIT 1
1079117
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1275172062], ["username", "billy_25"], ["access_token", "fc132e5854ca6f925a89e5e6e5884c43"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:25.169172"], ["updated_at", "2015-11-18 21:17:25.169172"]]
1079118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079119
+  (0.0ms) SAVEPOINT active_record_1
1079120
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000625954 LIMIT 1
1079121
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2000625954], ["username", "billy_26"], ["access_token", "a4d0ff22c2a21c28bc79e9347bb35e97"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:25.170842"], ["updated_at", "2015-11-18 21:17:25.170842"]]
1079122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079123
+  (0.0ms) SAVEPOINT active_record_1
1079124
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1079409230 LIMIT 1
1079125
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1079409230], ["username", "billy_27"], ["access_token", "4ac250b64911e97e015286fc445c780c"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:25.172630"], ["updated_at", "2015-11-18 21:17:25.172630"]]
1079126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079127
+  (0.0ms) SAVEPOINT active_record_1
1079128
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -618943743 LIMIT 1
1079129
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -618943743], ["username", "billy_28"], ["access_token", "fae15f31155b760feba312d0f29df293"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:25.174246"], ["updated_at", "2015-11-18 21:17:25.174246"]]
1079130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079131
+  (0.0ms) SAVEPOINT active_record_1
1079132
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -865012598 LIMIT 1
1079133
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -865012598], ["username", "billy_29"], ["access_token", "804c1ad244c8dfdbee2b1af76b9a77c8"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:25.177566"], ["updated_at", "2015-11-18 21:17:25.177566"]]
1079134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079135
+  (0.0ms) SAVEPOINT active_record_1
1079136
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -169252949 LIMIT 1
1079137
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -169252949], ["username", "billy_30"], ["access_token", "fb3b2a32548a2319e00b56233bb8d4e7"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:25.180429"], ["updated_at", "2015-11-18 21:17:25.180429"]]
1079138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079139
+  (0.0ms) SAVEPOINT active_record_1
1079140
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1776725495 LIMIT 1
1079141
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1776725495], ["username", "billy_31"], ["access_token", "5d77f0e966b0ef35e494eec00e620b1f"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:25.182641"], ["updated_at", "2015-11-18 21:17:25.182641"]]
1079142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079143
+  (0.0ms) SAVEPOINT active_record_1
1079144
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -348779675 LIMIT 1
1079145
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -348779675], ["username", "billy_32"], ["access_token", "5a259a2cfb37c19ec6d5b741f26fa07c"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:25.184562"], ["updated_at", "2015-11-18 21:17:25.184562"]]
1079146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079147
+  (0.0ms) SAVEPOINT active_record_1
1079148
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -334671231 LIMIT 1
1079149
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -334671231], ["username", "billy_33"], ["access_token", "62d9dcd0c353a3e929b454ac17caf11b"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:25.186402"], ["updated_at", "2015-11-18 21:17:25.186402"]]
1079150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079151
+  (0.0ms) SAVEPOINT active_record_1
1079152
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185141409 LIMIT 1
1079153
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1185141409], ["username", "billy_34"], ["access_token", "051f48681b356d8757e65cf98cac42b6"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:25.188419"], ["updated_at", "2015-11-18 21:17:25.188419"]]
1079154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079155
+  (0.0ms) SAVEPOINT active_record_1
1079156
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1381505899 LIMIT 1
1079157
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1381505899], ["username", "billy_35"], ["access_token", "836cfd1773c17aaeba347344b4744512"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:25.190765"], ["updated_at", "2015-11-18 21:17:25.190765"]]
1079158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079159
+  (0.0ms) SAVEPOINT active_record_1
1079160
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1421398245 LIMIT 1
1079161
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1421398245], ["username", "billy_36"], ["access_token", "24adcd3088fa49a8259ab8843f668363"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:25.192981"], ["updated_at", "2015-11-18 21:17:25.192981"]]
1079162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079163
+  (0.0ms) SAVEPOINT active_record_1
1079164
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2056274980 LIMIT 1
1079165
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2056274980], ["username", "billy_37"], ["access_token", "a706270eb73e89774e51dde3f407c272"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:25.194857"], ["updated_at", "2015-11-18 21:17:25.194857"]]
1079166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079167
+  (0.0ms) SAVEPOINT active_record_1
1079168
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1693098977 LIMIT 1
1079169
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1693098977], ["username", "billy_38"], ["access_token", "e564c7903505e10bf9b00e39f6d1d781"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:25.196748"], ["updated_at", "2015-11-18 21:17:25.196748"]]
1079170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079171
+  (0.0ms) SAVEPOINT active_record_1
1079172
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -391453876 LIMIT 1
1079173
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -391453876], ["username", "billy_39"], ["access_token", "66cc895a815130de6acb5556d55fb636"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:25.198787"], ["updated_at", "2015-11-18 21:17:25.198787"]]
1079174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079175
+  (0.0ms) SAVEPOINT active_record_1
1079176
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1494989810 LIMIT 1
1079177
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1494989810], ["username", "billy_40"], ["access_token", "2ed5ef4c0a5348b4656e3e076498f49c"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:25.200547"], ["updated_at", "2015-11-18 21:17:25.200547"]]
1079178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079179
+  (0.0ms) SAVEPOINT active_record_1
1079180
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -963794747 LIMIT 1
1079181
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -963794747], ["username", "billy_41"], ["access_token", "53d15dc325da3d22d62eb0c6fa1f32ac"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:25.202508"], ["updated_at", "2015-11-18 21:17:25.202508"]]
1079182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079183
+  (0.0ms) SAVEPOINT active_record_1
1079184
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1350699570 LIMIT 1
1079185
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1350699570], ["username", "billy_42"], ["access_token", "93ee36633345368f25929c2a2fd42dba"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:25.204451"], ["updated_at", "2015-11-18 21:17:25.204451"]]
1079186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079187
+  (0.0ms) SAVEPOINT active_record_1
1079188
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1868979499 LIMIT 1
1079189
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1868979499], ["username", "billy_43"], ["access_token", "2572bc6bf2d9b127be0d3a36ea37e7c9"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:25.206140"], ["updated_at", "2015-11-18 21:17:25.206140"]]
1079190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079191
+  (0.0ms) SAVEPOINT active_record_1
1079192
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1728432609 LIMIT 1
1079193
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1728432609], ["username", "billy_44"], ["access_token", "411f87794203b08686053f4b507447c9"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:25.207931"], ["updated_at", "2015-11-18 21:17:25.207931"]]
1079194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079195
+  (0.0ms) SAVEPOINT active_record_1
1079196
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -754127346 LIMIT 1
1079197
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -754127346], ["username", "billy_45"], ["access_token", "0f24fe1370c823235994c2a9391bf2e0"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:25.209922"], ["updated_at", "2015-11-18 21:17:25.209922"]]
1079198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079199
+  (0.0ms) SAVEPOINT active_record_1
1079200
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1079201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079202
+ 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
1079203
+ 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
1079204
+  (0.5ms) rollback transaction
1079205
+  (0.0ms) begin transaction
1079206
+  (0.0ms) SAVEPOINT active_record_1
1079207
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -277401127 LIMIT 1
1079208
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -277401127], ["username", "jstrav"], ["access_token", "3d7e993c4f9e58f8d6be68d3a5a279db"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.217281"], ["updated_at", "2015-11-18 21:17:25.217281"]]
1079209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079210
+  (0.0ms) SAVEPOINT active_record_1
1079211
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1269807386 LIMIT 1
1079212
+ 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", -1269807386], ["username", "mary"], ["access_token", "6bdbebad778dd5b4a8e07af01570e49e"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.219142"], ["updated_at", "2015-11-18 21:17:25.219142"]]
1079213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079214
+  (0.0ms) SAVEPOINT active_record_1
1079215
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1798803989 LIMIT 1
1079216
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1798803989], ["username", "jstead"], ["access_token", "05185f6dc40592ac151832574e71fc91"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.220983"], ["updated_at", "2015-11-18 21:17:25.220983"]]
1079217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079218
+  (0.0ms) SAVEPOINT active_record_1
1079219
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -152897567 LIMIT 1
1079220
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -152897567], ["username", "bigbear"], ["access_token", "0f945d838560e413f8d57ab36b64f8c1"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.222629"], ["updated_at", "2015-11-18 21:17:25.222629"]]
1079221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079222
+  (0.0ms) SAVEPOINT active_record_1
1079223
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -863008302 LIMIT 1
1079224
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -863008302], ["username", "billy_00"], ["access_token", "fe524e17ed949f559d3510e5fa3a21de"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:25.224312"], ["updated_at", "2015-11-18 21:17:25.224312"]]
1079225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079226
+  (0.0ms) SAVEPOINT active_record_1
1079227
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -708027801 LIMIT 1
1079228
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -708027801], ["username", "billy_01"], ["access_token", "af968d26221628e6471fa32324c66481"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:25.225984"], ["updated_at", "2015-11-18 21:17:25.225984"]]
1079229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079230
+  (0.0ms) SAVEPOINT active_record_1
1079231
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -696497290 LIMIT 1
1079232
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -696497290], ["username", "billy_02"], ["access_token", "8e1d9286a70d568e3415822220886fc4"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:25.227597"], ["updated_at", "2015-11-18 21:17:25.227597"]]
1079233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079234
+  (0.0ms) SAVEPOINT active_record_1
1079235
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -907987951 LIMIT 1
1079236
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -907987951], ["username", "billy_03"], ["access_token", "e335597423c63f4c594affcd3135a7e1"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:25.229172"], ["updated_at", "2015-11-18 21:17:25.229172"]]
1079237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079238
+  (0.0ms) SAVEPOINT active_record_1
1079239
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -403431024 LIMIT 1
1079240
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -403431024], ["username", "billy_04"], ["access_token", "a6a9b55b28e4750e520afabc1ba63b1b"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:25.230846"], ["updated_at", "2015-11-18 21:17:25.230846"]]
1079241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079242
+  (0.0ms) SAVEPOINT active_record_1
1079243
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -214715305 LIMIT 1
1079244
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -214715305], ["username", "billy_05"], ["access_token", "5e4d46236db0b7a4735b9cf885a1b5d6"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:25.232463"], ["updated_at", "2015-11-18 21:17:25.232463"]]
1079245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079246
+  (0.0ms) SAVEPOINT active_record_1
1079247
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1413829564 LIMIT 1
1079248
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1413829564], ["username", "billy_06"], ["access_token", "ef98c4e60074c0e10ed4b681b51accdd"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:25.234276"], ["updated_at", "2015-11-18 21:17:25.234276"]]
1079249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079250
+  (0.0ms) SAVEPOINT active_record_1
1079251
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1150091354 LIMIT 1
1079252
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1150091354], ["username", "billy_07"], ["access_token", "be530ab9266efd85877c5555bf8048d5"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:25.235951"], ["updated_at", "2015-11-18 21:17:25.235951"]]
1079253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079254
+  (0.0ms) SAVEPOINT active_record_1
1079255
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1097997101 LIMIT 1
1079256
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1097997101], ["username", "billy_08"], ["access_token", "055af7c686f61b592f1b3f809e054c78"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:25.237571"], ["updated_at", "2015-11-18 21:17:25.237571"]]
1079257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079258
+  (0.0ms) SAVEPOINT active_record_1
1079259
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -761725842 LIMIT 1
1079260
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -761725842], ["username", "billy_09"], ["access_token", "f197527b6bfa465c37db5139e81c87b2"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:25.239182"], ["updated_at", "2015-11-18 21:17:25.239182"]]
1079261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079262
+  (0.0ms) SAVEPOINT active_record_1
1079263
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -657715246 LIMIT 1
1079264
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -657715246], ["username", "billy_10"], ["access_token", "8d487665e56715414691566a0affcb09"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:25.240806"], ["updated_at", "2015-11-18 21:17:25.240806"]]
1079265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079266
+  (0.0ms) SAVEPOINT active_record_1
1079267
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1407081411 LIMIT 1
1079268
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1407081411], ["username", "billy_11"], ["access_token", "64a8c2a1bd277a5ca9ccc22b97060f1b"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:25.242417"], ["updated_at", "2015-11-18 21:17:25.242417"]]
1079269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079270
+  (0.0ms) SAVEPOINT active_record_1
1079271
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -265033332 LIMIT 1
1079272
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -265033332], ["username", "billy_12"], ["access_token", "47b386e82c5c41f1c1f85ed6b3960610"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:25.244034"], ["updated_at", "2015-11-18 21:17:25.244034"]]
1079273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079274
+  (0.0ms) SAVEPOINT active_record_1
1079275
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1403148172 LIMIT 1
1079276
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1403148172], ["username", "billy_13"], ["access_token", "37bc435a7ac1cec07f04b7785cd0e352"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:25.245642"], ["updated_at", "2015-11-18 21:17:25.245642"]]
1079277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079278
+  (0.0ms) SAVEPOINT active_record_1
1079279
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -371703979 LIMIT 1
1079280
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -371703979], ["username", "billy_14"], ["access_token", "132b1df17599317a289d07e9cbeb7fc4"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:25.247280"], ["updated_at", "2015-11-18 21:17:25.247280"]]
1079281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079282
+  (0.0ms) SAVEPOINT active_record_1
1079283
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1101220729 LIMIT 1
1079284
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1101220729], ["username", "billy_15"], ["access_token", "a8d49c6cd6efe870391483ddbc7929fb"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:25.248901"], ["updated_at", "2015-11-18 21:17:25.248901"]]
1079285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079286
+  (0.0ms) SAVEPOINT active_record_1
1079287
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2072043141 LIMIT 1
1079288
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2072043141], ["username", "billy_16"], ["access_token", "fd840d33d9aa5a6d61ed3a7e6cccbd8b"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:25.250615"], ["updated_at", "2015-11-18 21:17:25.250615"]]
1079289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079290
+  (0.0ms) SAVEPOINT active_record_1
1079291
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -91545068 LIMIT 1
1079292
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -91545068], ["username", "billy_17"], ["access_token", "00fc21f6bebcab271a072cd30eb3f199"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:25.252555"], ["updated_at", "2015-11-18 21:17:25.252555"]]
1079293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079294
+  (0.0ms) SAVEPOINT active_record_1
1079295
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2128032214 LIMIT 1
1079296
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2128032214], ["username", "billy_18"], ["access_token", "954c39d67fa9125111b207ff85fbf8a8"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:25.254887"], ["updated_at", "2015-11-18 21:17:25.254887"]]
1079297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079298
+  (0.0ms) SAVEPOINT active_record_1
1079299
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1875556867 LIMIT 1
1079300
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1875556867], ["username", "billy_19"], ["access_token", "629d53a2662ab038ef7540a71fd88210"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:25.256524"], ["updated_at", "2015-11-18 21:17:25.256524"]]
1079301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079302
+  (0.0ms) SAVEPOINT active_record_1
1079303
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1742321349 LIMIT 1
1079304
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1742321349], ["username", "billy_20"], ["access_token", "e9dbdf9821e67d1b815e4f9bc5f44392"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:25.258156"], ["updated_at", "2015-11-18 21:17:25.258156"]]
1079305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079306
+  (0.0ms) SAVEPOINT active_record_1
1079307
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2143816445 LIMIT 1
1079308
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2143816445], ["username", "billy_21"], ["access_token", "348e58e7f2073417f2f5aad58e1e396c"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:25.259905"], ["updated_at", "2015-11-18 21:17:25.259905"]]
1079309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079310
+  (0.0ms) SAVEPOINT active_record_1
1079311
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1316249586 LIMIT 1
1079312
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1316249586], ["username", "billy_22"], ["access_token", "b337b32b30b3f0fc1cdb43e195954a54"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:25.272600"], ["updated_at", "2015-11-18 21:17:25.272600"]]
1079313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079314
+  (0.0ms) SAVEPOINT active_record_1
1079315
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -180424984 LIMIT 1
1079316
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -180424984], ["username", "billy_23"], ["access_token", "1b6eb9bb9e1c8574013231b85ca249c1"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:25.274894"], ["updated_at", "2015-11-18 21:17:25.274894"]]
1079317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079318
+  (0.0ms) SAVEPOINT active_record_1
1079319
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1208658187 LIMIT 1
1079320
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1208658187], ["username", "billy_24"], ["access_token", "95ea607ecee5b591bdf952c7c173c979"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:25.276620"], ["updated_at", "2015-11-18 21:17:25.276620"]]
1079321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079322
+  (0.0ms) SAVEPOINT active_record_1
1079323
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -701920711 LIMIT 1
1079324
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -701920711], ["username", "billy_25"], ["access_token", "a99c51492b74ada082bda265b9176cce"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:25.278336"], ["updated_at", "2015-11-18 21:17:25.278336"]]
1079325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079326
+  (0.0ms) SAVEPOINT active_record_1
1079327
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1516223746 LIMIT 1
1079328
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1516223746], ["username", "billy_26"], ["access_token", "50f20ebb1c762b6c14155321646f279e"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:25.280074"], ["updated_at", "2015-11-18 21:17:25.280074"]]
1079329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079330
+  (0.0ms) SAVEPOINT active_record_1
1079331
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1074039053 LIMIT 1
1079332
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1074039053], ["username", "billy_27"], ["access_token", "d1e5ce389d30684ef20b45af734b6b82"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:25.281829"], ["updated_at", "2015-11-18 21:17:25.281829"]]
1079333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079334
+  (0.0ms) SAVEPOINT active_record_1
1079335
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1566639747 LIMIT 1
1079336
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1566639747], ["username", "billy_28"], ["access_token", "dccf2237989203073b3a5a0f2cbfe605"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:25.283540"], ["updated_at", "2015-11-18 21:17:25.283540"]]
1079337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079338
+  (0.0ms) SAVEPOINT active_record_1
1079339
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1234746381 LIMIT 1
1079340
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1234746381], ["username", "billy_29"], ["access_token", "9c3350a22bd9ab94013efc54cb2c9266"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:25.285260"], ["updated_at", "2015-11-18 21:17:25.285260"]]
1079341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079342
+  (0.0ms) SAVEPOINT active_record_1
1079343
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -618853921 LIMIT 1
1079344
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -618853921], ["username", "billy_30"], ["access_token", "94791b9f21fd80ff32a1a409979ac0a4"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:25.287038"], ["updated_at", "2015-11-18 21:17:25.287038"]]
1079345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079346
+  (0.1ms) SAVEPOINT active_record_1
1079347
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1320631615 LIMIT 1
1079348
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1320631615], ["username", "billy_31"], ["access_token", "58e28175decccd520c545fa4664b4439"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:25.288756"], ["updated_at", "2015-11-18 21:17:25.288756"]]
1079349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079350
+  (0.0ms) SAVEPOINT active_record_1
1079351
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1855971235 LIMIT 1
1079352
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1855971235], ["username", "billy_32"], ["access_token", "8cfa40c4d2fc40bba93d95051e123b91"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:25.290468"], ["updated_at", "2015-11-18 21:17:25.290468"]]
1079353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079354
+  (0.0ms) SAVEPOINT active_record_1
1079355
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1638900527 LIMIT 1
1079356
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1638900527], ["username", "billy_33"], ["access_token", "3f722ecd3f1aa02e177d13ef412dd1c8"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:25.292174"], ["updated_at", "2015-11-18 21:17:25.292174"]]
1079357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079358
+  (0.0ms) SAVEPOINT active_record_1
1079359
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1787514845 LIMIT 1
1079360
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1787514845], ["username", "billy_34"], ["access_token", "e339c8a4c8f70fc82533a7735f834ea3"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:25.293845"], ["updated_at", "2015-11-18 21:17:25.293845"]]
1079361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079362
+  (0.0ms) SAVEPOINT active_record_1
1079363
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -910289795 LIMIT 1
1079364
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -910289795], ["username", "billy_35"], ["access_token", "ff460204a4377fbbbd34618eef66cb39"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:25.295548"], ["updated_at", "2015-11-18 21:17:25.295548"]]
1079365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079366
+  (0.0ms) SAVEPOINT active_record_1
1079367
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1947759219 LIMIT 1
1079368
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1947759219], ["username", "billy_36"], ["access_token", "d13fbd3f7deb1a1dcdcf118f8de65b20"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:25.297521"], ["updated_at", "2015-11-18 21:17:25.297521"]]
1079369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079370
+  (0.0ms) SAVEPOINT active_record_1
1079371
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1267541159 LIMIT 1
1079372
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1267541159], ["username", "billy_37"], ["access_token", "e1b2558acf66dbfe7409fa40084a9db4"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:25.299247"], ["updated_at", "2015-11-18 21:17:25.299247"]]
1079373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079374
+  (0.0ms) SAVEPOINT active_record_1
1079375
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -129812784 LIMIT 1
1079376
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -129812784], ["username", "billy_38"], ["access_token", "1d934bb54319f78cb69ffa92f593833f"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:25.300960"], ["updated_at", "2015-11-18 21:17:25.300960"]]
1079377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079378
+  (0.0ms) SAVEPOINT active_record_1
1079379
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1374303476 LIMIT 1
1079380
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1374303476], ["username", "billy_39"], ["access_token", "b70f080e879ac950a43778b87d1bc700"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:25.302672"], ["updated_at", "2015-11-18 21:17:25.302672"]]
1079381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079382
+  (0.0ms) SAVEPOINT active_record_1
1079383
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2023793068 LIMIT 1
1079384
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2023793068], ["username", "billy_40"], ["access_token", "4dec29c63302d669f3d269feb46c9d0f"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:25.304386"], ["updated_at", "2015-11-18 21:17:25.304386"]]
1079385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079386
+  (0.0ms) SAVEPOINT active_record_1
1079387
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1426541411 LIMIT 1
1079388
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1426541411], ["username", "billy_41"], ["access_token", "02cbdc3ebe59bcfa32803a53cd189aeb"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:25.306085"], ["updated_at", "2015-11-18 21:17:25.306085"]]
1079389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079390
+  (0.0ms) SAVEPOINT active_record_1
1079391
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142368421 LIMIT 1
1079392
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -142368421], ["username", "billy_42"], ["access_token", "b7937679cfb94ac58b32bfeddd0282cf"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:25.307802"], ["updated_at", "2015-11-18 21:17:25.307802"]]
1079393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079394
+  (0.0ms) SAVEPOINT active_record_1
1079395
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1247330625 LIMIT 1
1079396
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1247330625], ["username", "billy_43"], ["access_token", "d7048e2f2fbfc0859edb1a6bf624a606"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:25.309509"], ["updated_at", "2015-11-18 21:17:25.309509"]]
1079397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079398
+  (0.0ms) SAVEPOINT active_record_1
1079399
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -649361856 LIMIT 1
1079400
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -649361856], ["username", "billy_44"], ["access_token", "7e9c892134e1f39029874ae668f37845"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:25.311167"], ["updated_at", "2015-11-18 21:17:25.311167"]]
1079401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079402
+  (0.0ms) SAVEPOINT active_record_1
1079403
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1306742297 LIMIT 1
1079404
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1306742297], ["username", "billy_45"], ["access_token", "1e3a374475fea72dd5ebde6249058c5f"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:25.312861"], ["updated_at", "2015-11-18 21:17:25.312861"]]
1079405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079406
+  (0.0ms) SAVEPOINT active_record_1
1079407
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
1079408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079409
+ 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
1079410
+ 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
1079411
+ 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
1079412
+  (0.7ms) rollback transaction
1079413
+  (0.1ms) begin transaction
1079414
+  (0.0ms) SAVEPOINT active_record_1
1079415
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -418258693 LIMIT 1
1079416
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -418258693], ["username", "jstrav"], ["access_token", "dc987dfa7b0cab39a896de2737aae24c"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.323746"], ["updated_at", "2015-11-18 21:17:25.323746"]]
1079417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079418
+  (0.0ms) SAVEPOINT active_record_1
1079419
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1326305127 LIMIT 1
1079420
+ 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", -1326305127], ["username", "mary"], ["access_token", "9327570156618ef180dfd61d819dccea"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.330390"], ["updated_at", "2015-11-18 21:17:25.330390"]]
1079421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079422
+  (0.1ms) SAVEPOINT active_record_1
1079423
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -533390710 LIMIT 1
1079424
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -533390710], ["username", "jstead"], ["access_token", "af085162ca18797a0e7e4c04fd0d2e75"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.332720"], ["updated_at", "2015-11-18 21:17:25.332720"]]
1079425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079426
+  (0.0ms) SAVEPOINT active_record_1
1079427
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -543123321 LIMIT 1
1079428
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -543123321], ["username", "bigbear"], ["access_token", "37f1ce63c0c01b15df38e2ce0a1ddeed"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.334504"], ["updated_at", "2015-11-18 21:17:25.334504"]]
1079429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079430
+  (0.0ms) SAVEPOINT active_record_1
1079431
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -990446338 LIMIT 1
1079432
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -990446338], ["username", "foo_bb"], ["access_token", "04c89ac72614fc65c38d3244002db3f1"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2015-11-18 21:17:25.336269"], ["updated_at", "2015-11-18 21:17:25.336269"]]
1079433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079434
+  (0.0ms) SAVEPOINT active_record_1
1079435
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167217583 LIMIT 1
1079436
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -167217583], ["username", "foo_bj"], ["access_token", "29e3f956c088fee76e9c296acb06d2c1"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2015-11-18 21:17:25.338035"], ["updated_at", "2015-11-18 21:17:25.338035"]]
1079437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079438
+  (0.0ms) SAVEPOINT active_record_1
1079439
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1361854940 LIMIT 1
1079440
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1361854940], ["username", "foo_tj"], ["access_token", "a5b97dcadfb3f50947d2f638191ab592"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2015-11-18 21:17:25.339789"], ["updated_at", "2015-11-18 21:17:25.339789"]]
1079441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079442
+  (0.0ms) SAVEPOINT active_record_1
1079443
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
1079444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079445
+ OpenStax::Accounts::Account Load (0.2ms) 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
1079446
+  (0.0ms) SAVEPOINT active_record_1
1079447
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')
1079448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079449
+ 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
1079450
+  (0.5ms) rollback transaction
1079451
+  (0.0ms) begin transaction
1079452
+  (0.0ms) SAVEPOINT active_record_1
1079453
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1079454
+ 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", "28020a7fcb3b9e21af50a357db12e257"], ["created_at", "2015-11-18 21:17:25.347119"], ["updated_at", "2015-11-18 21:17:25.347119"]]
1079455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079456
+  (0.0ms) SAVEPOINT active_record_1
1079457
+ SQL (0.2ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-11-18 21:17:25.348641"], ["updated_at", "2015-11-18 21:17:25.348641"]]
1079458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079459
+  (0.0ms) SAVEPOINT active_record_1
1079460
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1079461
+ 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", "b191fa6f04b8db7d3398679235aa52d7"], ["created_at", "2015-11-18 21:17:25.350447"], ["updated_at", "2015-11-18 21:17:25.350447"]]
1079462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079463
+  (0.0ms) SAVEPOINT active_record_1
1079464
+ SQL (0.0ms) INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 2], ["created_at", "2015-11-18 21:17:25.351661"], ["updated_at", "2015-11-18 21:17:25.351661"]]
1079465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079466
+  (0.0ms) SAVEPOINT active_record_1
1079467
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2122807119 LIMIT 1
1079468
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -2122807119], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:25.353555"], ["updated_at", "2015-11-18 21:17:25.353555"]]
1079469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079470
+  (0.0ms) SAVEPOINT active_record_1
1079471
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -513836306 LIMIT 1
1079472
+ SQL (0.1ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -513836306], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:25.355413"], ["updated_at", "2015-11-18 21:17:25.355413"]]
1079473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079474
+  (0.0ms) SAVEPOINT active_record_1
1079475
+ OpenStax::Accounts::GroupNesting Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 2 LIMIT 1
1079476
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1079477
+ 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", -513836306]]
1079478
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
1079479
+ - -513836306
1079480
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1079481
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
1079482
+ 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", -2122807119]]
1079483
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1079484
+ - -2122807119
1079485
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
1079486
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -513836306
1079487
+ SQL (0.0ms) UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -2122807119
1079488
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -2122807119], ["member_group_id", -513836306], ["created_at", "2015-11-18 21:17:25.357398"], ["updated_at", "2015-11-18 21:17:25.357398"]]
1079489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079490
+ 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" = -513836306) LIMIT 1
1079491
+  (0.0ms) SAVEPOINT active_record_1
1079492
+ 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" = -513836306) LIMIT 1
1079493
+ SQL (0.1ms) INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", -513836306], ["user_id", 1], ["created_at", "2015-11-18 21:17:25.367615"], ["updated_at", "2015-11-18 21:17:25.367615"]]
1079494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079495
+  (0.0ms) SAVEPOINT active_record_1
1079496
+ 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" = -513836306) LIMIT 1
1079497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079498
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1079499
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
1079500
+ OpenStax::Accounts::Group Load (0.0ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
1079501
+ 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", -513836306]]
1079502
+ SQL (0.1ms) SELECT "openstax_accounts_groups"."id" AS t0_r0, "openstax_accounts_groups"."openstax_uid" AS t0_r1, "openstax_accounts_groups"."is_public" AS t0_r2, "openstax_accounts_groups"."name" AS t0_r3, "openstax_accounts_groups"."cached_subtree_group_ids" AS t0_r4, "openstax_accounts_groups"."cached_supertree_group_ids" AS t0_r5, "openstax_accounts_groups"."created_at" AS t0_r6, "openstax_accounts_groups"."updated_at" AS t0_r7, "openstax_accounts_group_nestings"."id" AS t1_r0, "openstax_accounts_group_nestings"."member_group_id" AS t1_r1, "openstax_accounts_group_nestings"."container_group_id" AS t1_r2, "openstax_accounts_group_nestings"."created_at" AS t1_r3, "openstax_accounts_group_nestings"."updated_at" AS t1_r4 FROM "openstax_accounts_groups" LEFT OUTER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = ? AND "openstax_accounts_groups"."id" IN (1) ORDER BY "openstax_accounts_groups"."id" ASC [["member_group_id", -513836306]]
1079503
+ SQL (0.1ms) UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
1079504
+ - -513836306
1079505
+ - -2122807119
1079506
+ ' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
1079507
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079508
+ Ownership Load (0.2ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079509
+  (0.0ms) SAVEPOINT active_record_1
1079510
+ SQL (0.1ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "User"], ["created_at", "2015-11-18 21:17:25.394208"], ["updated_at", "2015-11-18 21:17:25.394208"]]
1079511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079512
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1079513
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1079514
+ 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]]
1079515
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079516
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079517
+  (0.0ms) SAVEPOINT active_record_1
1079518
+ SQL (0.0ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "User"], ["created_at", "2015-11-18 21:17:25.399703"], ["updated_at", "2015-11-18 21:17:25.399703"]]
1079519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079520
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1079521
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1079522
+ 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]]
1079523
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079524
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079525
+  (0.0ms) SAVEPOINT active_record_1
1079526
+ SQL (0.0ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-11-18 21:17:25.404440"], ["updated_at", "2015-11-18 21:17:25.404440"]]
1079527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079528
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1079529
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1079530
+ 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]]
1079531
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079532
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079533
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079534
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079535
+  (0.0ms) SAVEPOINT active_record_1
1079536
+ SQL (0.0ms) INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-11-18 21:17:25.410971"], ["updated_at", "2015-11-18 21:17:25.410971"]]
1079537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079538
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1079539
+ Ownership Load (0.0ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ? [["owner_id", 1], ["owner_type", "User"]]
1079540
+ 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]]
1079541
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079542
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079543
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079544
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079545
+ OpenStax::Accounts::Group Load (0.1ms) SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-513836306, -2122807119)
1079546
+ Ownership Load (0.1ms) SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (1, 2)
1079547
+  (0.7ms) rollback transaction
1079548
+  (0.0ms) begin transaction
1079549
+  (0.1ms) SAVEPOINT active_record_1
1079550
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 2]]
1079551
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "380dc6"]]
1079552
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1079553
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '380dc6' LIMIT 1
1079554
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "380dc6"], ["created_at", "2015-11-18 21:17:25.435716"], ["updated_at", "2015-11-18 21:17:25.435716"]]
1079555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079556
+  (0.0ms) SAVEPOINT active_record_1
1079557
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 3]]
1079558
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "alice"]]
1079559
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1
1079560
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice' LIMIT 1
1079561
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "alice"], ["created_at", "2015-11-18 21:17:25.443215"], ["updated_at", "2015-11-18 21:17:25.443215"]]
1079562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079563
+  (0.0ms) SAVEPOINT active_record_1
1079564
+ OpenStax::Accounts::Account Load (0.0ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 4]]
1079565
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "alice2"]]
1079566
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1
1079567
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'alice2' LIMIT 1
1079568
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "alice2"], ["created_at", "2015-11-18 21:17:25.450229"], ["updated_at", "2015-11-18 21:17:25.450229"]]
1079569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079570
+  (0.5ms) rollback transaction
1079571
+  (0.0ms) begin transaction
1079572
+  (0.0ms) SAVEPOINT active_record_1
1079573
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1 [["openstax_uid", 1]]
1079574
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = ? LIMIT 1 [["username", "d23423"]]
1079575
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
1079576
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'd23423' LIMIT 1
1079577
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "d23423"], ["first_name", "Bob"], ["last_name", "Smith"], ["full_name", "Bob Smith"], ["created_at", "2015-11-18 21:17:25.456073"], ["updated_at", "2015-11-18 21:17:25.456073"]]
1079578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079579
+  (0.5ms) rollback transaction
1079580
+  (0.0ms) begin transaction
1079581
+  (0.0ms) SAVEPOINT active_record_1
1079582
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
1079583
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("username", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["username", "u"], ["openstax_uid", 2], ["created_at", "2015-11-18 21:17:25.462241"], ["updated_at", "2015-11-18 21:17:25.462241"]]
1079584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079585
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1079586
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079587
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079588
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079589
+ Processing by OauthController#token as */*
1079590
+ Parameters: {"grant_type"=>"client_credentials"}
1079591
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079592
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079593
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1079594
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1079595
+ 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]]
1079596
+  (0.0ms) SAVEPOINT active_record_1
1079597
+ 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
1079598
+ SQL (0.2ms) UPDATE "openstax_accounts_accounts" SET "username" = ?, "updated_at" = ? WHERE "openstax_accounts_accounts"."id" = ? [["username", "user"], ["updated_at", "2015-11-18 21:17:25.487265"], ["id", 1]]
1079599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079600
+ 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", 4]]
1079601
+  (0.0ms) SAVEPOINT active_record_1
1079602
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1
1079603
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "fuego"], ["created_at", "2015-11-18 21:17:25.489671"], ["updated_at", "2015-11-18 21:17:25.489671"]]
1079604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079605
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079606
+ Processing by OauthController#token as */*
1079607
+ Parameters: {"grant_type"=>"client_credentials"}
1079608
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079609
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079610
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1079611
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
1079612
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079613
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1079614
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079615
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079616
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1079617
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1079618
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079619
+ Processing by OauthController#token as */*
1079620
+ Parameters: {"grant_type"=>"client_credentials"}
1079621
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079622
+ Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079623
+ Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
1079624
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1079625
+ 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]]
1079626
+  (0.0ms) SAVEPOINT active_record_1
1079627
+ 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
1079628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079629
+ 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]]
1079630
+  (0.0ms) SAVEPOINT active_record_1
1079631
+ 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
1079632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079633
+ Started POST "/oauth/token" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079634
+ Processing by OauthController#token as */*
1079635
+ Parameters: {"grant_type"=>"client_credentials"}
1079636
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079637
+ Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-11-18 15:17:25 -0600
1079638
+ Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
1079639
+ Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
1079640
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1079641
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1079642
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079643
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
1079644
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1079645
+ OpenStax::Accounts::Account Load (0.1ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
1079646
+  (0.5ms) rollback transaction
1079647
+  (0.0ms) begin transaction
1079648
+ OpenStax::Accounts::Group Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1
1079649
+  (0.0ms) SAVEPOINT active_record_1
1079650
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
1079651
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2015-11-18 21:17:25.545131"], ["updated_at", "2015-11-18 21:17:25.545131"]]
1079652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079653
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
1079654
+  (0.5ms) rollback transaction
1079655
+  (0.1ms) begin transaction
1079656
+  (0.0ms) SAVEPOINT active_record_1
1079657
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1035578790 LIMIT 1
1079658
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '32a8d82ddb63ca66154ade95d6d1ff0e' LIMIT 1
1079659
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1035578790], ["username", "32a8d82ddb63ca66154ade95d6d1ff0e"], ["access_token", "71b1261ce0c077fb52652ad75ab92d69"], ["created_at", "2015-11-18 21:17:25.550423"], ["updated_at", "2015-11-18 21:17:25.550423"]]
1079660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079661
+  (0.0ms) SAVEPOINT active_record_1
1079662
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -841108027 LIMIT 1
1079663
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1
1079664
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -841108027], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:25.553451"], ["updated_at", "2015-11-18 21:17:25.553451"]]
1079665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079666
+  (0.5ms) rollback transaction
1079667
+  (0.0ms) begin transaction
1079668
+  (0.0ms) SAVEPOINT active_record_1
1079669
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -86900399 LIMIT 1
1079670
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '95211d4558c9f71ea66706030ad21aca' LIMIT 1
1079671
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -86900399], ["username", "95211d4558c9f71ea66706030ad21aca"], ["access_token", "297c6391a3056b6228aa412be728bd97"], ["created_at", "2015-11-18 21:17:25.557570"], ["updated_at", "2015-11-18 21:17:25.557570"]]
1079672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079673
+  (0.0ms) SAVEPOINT active_record_1
1079674
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -869420749 LIMIT 1
1079675
+ OpenStax::Accounts::Group Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."name" = 'MyGroup' LIMIT 1
1079676
+ SQL (0.2ms) INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -869420749], ["name", "MyGroup"], ["created_at", "2015-11-18 21:17:25.560265"], ["updated_at", "2015-11-18 21:17:25.560265"]]
1079677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079678
+  (0.5ms) rollback transaction
1079679
+  (0.0ms) begin transaction
1079680
+  (0.0ms) SAVEPOINT active_record_1
1079681
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1355335576 LIMIT 1
1079682
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = '343cc3370cc8c03d434ca50da9a5050b' LIMIT 1
1079683
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1355335576], ["username", "343cc3370cc8c03d434ca50da9a5050b"], ["access_token", "03506796376d1f6da21b878e7ad21ee4"], ["created_at", "2015-11-18 21:17:25.564258"], ["updated_at", "2015-11-18 21:17:25.564258"]]
1079684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079685
+  (0.0ms) SAVEPOINT active_record_1
1079686
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1079687
+  (0.4ms) rollback transaction
1079688
+  (0.0ms) begin transaction
1079689
+  (0.0ms) SAVEPOINT active_record_1
1079690
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96125573 LIMIT 1
1079691
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -96125573], ["username", "jstrav"], ["access_token", "aa7ecf17d4370c0ecb0dc00864a19a1a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.568563"], ["updated_at", "2015-11-18 21:17:25.568563"]]
1079692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079693
+  (0.0ms) SAVEPOINT active_record_1
1079694
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1228806368 LIMIT 1
1079695
+ 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", -1228806368], ["username", "mary"], ["access_token", "e2f4a8ff0508af6a0f8cd866c08ce4d1"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.570705"], ["updated_at", "2015-11-18 21:17:25.570705"]]
1079696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079697
+  (0.0ms) SAVEPOINT active_record_1
1079698
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -597290284 LIMIT 1
1079699
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -597290284], ["username", "jstead"], ["access_token", "7b63e9b4e6a5e8895d2c37df7a6481d5"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.572676"], ["updated_at", "2015-11-18 21:17:25.572676"]]
1079700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079701
+  (0.0ms) SAVEPOINT active_record_1
1079702
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -595613067 LIMIT 1
1079703
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -595613067], ["username", "bigbear"], ["access_token", "553964962558b06e529f85327057de7b"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.574460"], ["updated_at", "2015-11-18 21:17:25.574460"]]
1079704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079705
+  (0.0ms) SAVEPOINT active_record_1
1079706
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77462444 LIMIT 1
1079707
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -77462444], ["username", "billy_00"], ["access_token", "d57b1168a8db70425067d230716df70f"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-11-18 21:17:25.576621"], ["updated_at", "2015-11-18 21:17:25.576621"]]
1079708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079709
+  (0.0ms) SAVEPOINT active_record_1
1079710
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1182982357 LIMIT 1
1079711
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1182982357], ["username", "billy_01"], ["access_token", "e0aa260d5e6d2df6fa35ef9ccd16fc64"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-11-18 21:17:25.578617"], ["updated_at", "2015-11-18 21:17:25.578617"]]
1079712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079713
+  (0.0ms) SAVEPOINT active_record_1
1079714
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1418201166 LIMIT 1
1079715
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1418201166], ["username", "billy_02"], ["access_token", "e8a9776d245354d4e8e37504d7088212"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-11-18 21:17:25.580812"], ["updated_at", "2015-11-18 21:17:25.580812"]]
1079716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079717
+  (0.1ms) SAVEPOINT active_record_1
1079718
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -686500048 LIMIT 1
1079719
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -686500048], ["username", "billy_03"], ["access_token", "d0f2e9f4374633951e32dfd78d45b475"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-11-18 21:17:25.582990"], ["updated_at", "2015-11-18 21:17:25.582990"]]
1079720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079721
+  (0.0ms) SAVEPOINT active_record_1
1079722
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1164924491 LIMIT 1
1079723
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1164924491], ["username", "billy_04"], ["access_token", "1654df0988c5da55d8b23eadb4146980"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:25.584956"], ["updated_at", "2015-11-18 21:17:25.584956"]]
1079724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079725
+  (0.0ms) SAVEPOINT active_record_1
1079726
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1048423581 LIMIT 1
1079727
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1048423581], ["username", "billy_05"], ["access_token", "536f38773c9f7cc06b73d94bb696ea68"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:25.586908"], ["updated_at", "2015-11-18 21:17:25.586908"]]
1079728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079729
+  (0.0ms) SAVEPOINT active_record_1
1079730
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -320946295 LIMIT 1
1079731
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -320946295], ["username", "billy_06"], ["access_token", "bf7c2d4e5ec8724c62e5113934ef5b81"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:25.588757"], ["updated_at", "2015-11-18 21:17:25.588757"]]
1079732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079733
+  (0.0ms) SAVEPOINT active_record_1
1079734
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197444877 LIMIT 1
1079735
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1197444877], ["username", "billy_07"], ["access_token", "d28c9ca9ee8b7ec0e4b5b455a66fb7ab"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:25.590614"], ["updated_at", "2015-11-18 21:17:25.590614"]]
1079736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079737
+  (0.0ms) SAVEPOINT active_record_1
1079738
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1615383853 LIMIT 1
1079739
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1615383853], ["username", "billy_08"], ["access_token", "d0927a5bc3fa314150aa6e31a7ef540b"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:25.592451"], ["updated_at", "2015-11-18 21:17:25.592451"]]
1079740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079741
+  (0.0ms) SAVEPOINT active_record_1
1079742
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1831466762 LIMIT 1
1079743
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1831466762], ["username", "billy_09"], ["access_token", "0e5603c003a18b213ae2fa1c879e8545"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:25.594233"], ["updated_at", "2015-11-18 21:17:25.594233"]]
1079744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079745
+  (0.0ms) SAVEPOINT active_record_1
1079746
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1469291578 LIMIT 1
1079747
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1469291578], ["username", "billy_10"], ["access_token", "ca8a1fc61a0139d6a19e28f16b823b7b"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:25.595999"], ["updated_at", "2015-11-18 21:17:25.595999"]]
1079748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079749
+  (0.0ms) SAVEPOINT active_record_1
1079750
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -35779816 LIMIT 1
1079751
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -35779816], ["username", "billy_11"], ["access_token", "6290dce921c08176c24257d6dbd15c57"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:25.597764"], ["updated_at", "2015-11-18 21:17:25.597764"]]
1079752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079753
+  (0.0ms) SAVEPOINT active_record_1
1079754
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -672602479 LIMIT 1
1079755
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -672602479], ["username", "billy_12"], ["access_token", "c7586e2079a3f55323ce9298a1bbdc5b"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:25.599526"], ["updated_at", "2015-11-18 21:17:25.599526"]]
1079756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079757
+  (0.0ms) SAVEPOINT active_record_1
1079758
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1738446386 LIMIT 1
1079759
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1738446386], ["username", "billy_13"], ["access_token", "0cfe05537049d59bd772508c05c9ae1b"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:25.601299"], ["updated_at", "2015-11-18 21:17:25.601299"]]
1079760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079761
+  (0.0ms) SAVEPOINT active_record_1
1079762
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1995844464 LIMIT 1
1079763
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1995844464], ["username", "billy_14"], ["access_token", "e035147705bfd524a4b0beecdd04d5a8"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:25.603078"], ["updated_at", "2015-11-18 21:17:25.603078"]]
1079764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079765
+  (0.0ms) SAVEPOINT active_record_1
1079766
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -676013085 LIMIT 1
1079767
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -676013085], ["username", "billy_15"], ["access_token", "09599d810b201376639de85603875a89"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:25.604858"], ["updated_at", "2015-11-18 21:17:25.604858"]]
1079768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079769
+  (0.0ms) SAVEPOINT active_record_1
1079770
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2122198577 LIMIT 1
1079771
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2122198577], ["username", "billy_16"], ["access_token", "9ff3c37a60be88cfb4fe0d92fa1ea67a"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:25.606600"], ["updated_at", "2015-11-18 21:17:25.606600"]]
1079772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079773
+  (0.0ms) SAVEPOINT active_record_1
1079774
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083480772 LIMIT 1
1079775
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1083480772], ["username", "billy_17"], ["access_token", "6ea56e04706f941468906b4315c5adad"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:25.608345"], ["updated_at", "2015-11-18 21:17:25.608345"]]
1079776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079777
+  (0.0ms) SAVEPOINT active_record_1
1079778
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1080824229 LIMIT 1
1079779
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1080824229], ["username", "billy_18"], ["access_token", "2427fd2268883a36d3e69a6f3429452d"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:25.610131"], ["updated_at", "2015-11-18 21:17:25.610131"]]
1079780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079781
+  (0.0ms) SAVEPOINT active_record_1
1079782
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -683215739 LIMIT 1
1079783
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -683215739], ["username", "billy_19"], ["access_token", "9ccc7681a9107ab68cdb9928d09717b5"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:25.611886"], ["updated_at", "2015-11-18 21:17:25.611886"]]
1079784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079785
+  (0.0ms) SAVEPOINT active_record_1
1079786
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1963369292 LIMIT 1
1079787
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1963369292], ["username", "billy_20"], ["access_token", "e85d9f56aad8ad5a7438189086762a6c"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:25.613752"], ["updated_at", "2015-11-18 21:17:25.613752"]]
1079788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079789
+  (0.0ms) SAVEPOINT active_record_1
1079790
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1700842327 LIMIT 1
1079791
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1700842327], ["username", "billy_21"], ["access_token", "28caf5111b89e676c0a0c2a0626cedf6"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:25.615639"], ["updated_at", "2015-11-18 21:17:25.615639"]]
1079792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079793
+  (0.0ms) SAVEPOINT active_record_1
1079794
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -168630444 LIMIT 1
1079795
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -168630444], ["username", "billy_22"], ["access_token", "50c888a174e02ee0b1e4116e6233f002"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:25.617441"], ["updated_at", "2015-11-18 21:17:25.617441"]]
1079796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079797
+  (0.0ms) SAVEPOINT active_record_1
1079798
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -792297272 LIMIT 1
1079799
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -792297272], ["username", "billy_23"], ["access_token", "fec6e2f59bcff8e88284662f65ce8fe9"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:25.619270"], ["updated_at", "2015-11-18 21:17:25.619270"]]
1079800
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079801
+  (0.1ms) SAVEPOINT active_record_1
1079802
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -109569268 LIMIT 1
1079803
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -109569268], ["username", "billy_24"], ["access_token", "6b4c95a2ab83712119c02ee6abe08b32"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:25.621084"], ["updated_at", "2015-11-18 21:17:25.621084"]]
1079804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079805
+  (0.0ms) SAVEPOINT active_record_1
1079806
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1572451971 LIMIT 1
1079807
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1572451971], ["username", "billy_25"], ["access_token", "cb06cf17900643b025d043c171b65118"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:25.622939"], ["updated_at", "2015-11-18 21:17:25.622939"]]
1079808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079809
+  (0.0ms) SAVEPOINT active_record_1
1079810
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1544784627 LIMIT 1
1079811
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1544784627], ["username", "billy_26"], ["access_token", "4a653ffc9ec9546845409a931e81a37b"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:25.624723"], ["updated_at", "2015-11-18 21:17:25.624723"]]
1079812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079813
+  (0.0ms) SAVEPOINT active_record_1
1079814
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1326019676 LIMIT 1
1079815
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1326019676], ["username", "billy_27"], ["access_token", "b391fccee3656d113422d57c78af16c2"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:25.626592"], ["updated_at", "2015-11-18 21:17:25.626592"]]
1079816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079817
+  (0.0ms) SAVEPOINT active_record_1
1079818
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1077342400 LIMIT 1
1079819
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1077342400], ["username", "billy_28"], ["access_token", "c3e6fe39a7bffd6f2d5f9193bb9d3c5c"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:25.628422"], ["updated_at", "2015-11-18 21:17:25.628422"]]
1079820
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079821
+  (0.0ms) SAVEPOINT active_record_1
1079822
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -536366536 LIMIT 1
1079823
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -536366536], ["username", "billy_29"], ["access_token", "a43d63b20d9b759d02f59ec47f706ebc"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:25.630271"], ["updated_at", "2015-11-18 21:17:25.630271"]]
1079824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079825
+  (0.0ms) SAVEPOINT active_record_1
1079826
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -632570173 LIMIT 1
1079827
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -632570173], ["username", "billy_30"], ["access_token", "47fc5b3fb6c102d074581ff7450eba59"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:25.632102"], ["updated_at", "2015-11-18 21:17:25.632102"]]
1079828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1079829
+  (0.0ms) SAVEPOINT active_record_1
1079830
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -231630078 LIMIT 1
1079831
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -231630078], ["username", "billy_31"], ["access_token", "d76d57b469e450fc7a165e6537e0cbb0"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:25.634158"], ["updated_at", "2015-11-18 21:17:25.634158"]]
1079832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079833
+  (0.0ms) SAVEPOINT active_record_1
1079834
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1836241673 LIMIT 1
1079835
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1836241673], ["username", "billy_32"], ["access_token", "6c3b0d48c1f1a777dd940a7ac3e6a0cd"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:25.636120"], ["updated_at", "2015-11-18 21:17:25.636120"]]
1079836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079837
+  (0.0ms) SAVEPOINT active_record_1
1079838
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1625398920 LIMIT 1
1079839
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1625398920], ["username", "billy_33"], ["access_token", "1bb41487e2e77d306d93ad19cd628989"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:25.637991"], ["updated_at", "2015-11-18 21:17:25.637991"]]
1079840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079841
+  (0.0ms) SAVEPOINT active_record_1
1079842
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1497079882 LIMIT 1
1079843
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1497079882], ["username", "billy_34"], ["access_token", "1f94e798d45f11fd2dc5f382addd79ab"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:25.639805"], ["updated_at", "2015-11-18 21:17:25.639805"]]
1079844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079845
+  (0.0ms) SAVEPOINT active_record_1
1079846
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -93460728 LIMIT 1
1079847
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -93460728], ["username", "billy_35"], ["access_token", "bdc5d63ad324af3c2349aa55d4ce21b7"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:25.641592"], ["updated_at", "2015-11-18 21:17:25.641592"]]
1079848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079849
+  (0.0ms) SAVEPOINT active_record_1
1079850
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -833540967 LIMIT 1
1079851
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -833540967], ["username", "billy_36"], ["access_token", "0f40ccacaa357403c979e16335a6fd78"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:25.643428"], ["updated_at", "2015-11-18 21:17:25.643428"]]
1079852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079853
+  (0.0ms) SAVEPOINT active_record_1
1079854
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -309012971 LIMIT 1
1079855
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -309012971], ["username", "billy_37"], ["access_token", "e9dc8f39332a137843bd97e7fe74b09e"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:25.645343"], ["updated_at", "2015-11-18 21:17:25.645343"]]
1079856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079857
+  (0.0ms) SAVEPOINT active_record_1
1079858
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -926055160 LIMIT 1
1079859
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -926055160], ["username", "billy_38"], ["access_token", "67d068c4e29f6ee33839ee8b4c08c5eb"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:25.647361"], ["updated_at", "2015-11-18 21:17:25.647361"]]
1079860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079861
+  (0.0ms) SAVEPOINT active_record_1
1079862
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -445214807 LIMIT 1
1079863
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -445214807], ["username", "billy_39"], ["access_token", "b0c3268fe45b0f6ec73dbffb8bed78d6"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:25.649209"], ["updated_at", "2015-11-18 21:17:25.649209"]]
1079864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079865
+  (0.0ms) SAVEPOINT active_record_1
1079866
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2133840356 LIMIT 1
1079867
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2133840356], ["username", "billy_40"], ["access_token", "ea7b5171312af6cefdc2a914ea829e2a"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:25.651225"], ["updated_at", "2015-11-18 21:17:25.651225"]]
1079868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079869
+  (0.0ms) SAVEPOINT active_record_1
1079870
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1819958627 LIMIT 1
1079871
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1819958627], ["username", "billy_41"], ["access_token", "239cb379f713ecacfc3c254ee5090d67"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:25.653062"], ["updated_at", "2015-11-18 21:17:25.653062"]]
1079872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079873
+  (0.0ms) SAVEPOINT active_record_1
1079874
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1895870141 LIMIT 1
1079875
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1895870141], ["username", "billy_42"], ["access_token", "b85b4fc4f45f741cd01d12e6fded6af0"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:25.654914"], ["updated_at", "2015-11-18 21:17:25.654914"]]
1079876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079877
+  (0.0ms) SAVEPOINT active_record_1
1079878
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -835527372 LIMIT 1
1079879
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -835527372], ["username", "billy_43"], ["access_token", "dd3bebcb01dada008a06339ed547c488"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:25.656740"], ["updated_at", "2015-11-18 21:17:25.656740"]]
1079880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079881
+  (0.0ms) SAVEPOINT active_record_1
1079882
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -616501299 LIMIT 1
1079883
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -616501299], ["username", "billy_44"], ["access_token", "a3369249f47d1254f3a8b5021a9158fb"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:25.658842"], ["updated_at", "2015-11-18 21:17:25.658842"]]
1079884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079885
+  (0.0ms) SAVEPOINT active_record_1
1079886
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1752522841 LIMIT 1
1079887
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1752522841], ["username", "billy_45"], ["access_token", "b2524bbca755b3e4a975d260b8ed69ad"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:25.660738"], ["updated_at", "2015-11-18 21:17:25.660738"]]
1079888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079889
+  (0.0ms) SAVEPOINT active_record_1
1079890
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1789264803 LIMIT 1
1079891
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1789264803], ["username", "billy_46"], ["access_token", "6a6c02a527f4fe3abcb775a7b99d642c"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:25.662565"], ["updated_at", "2015-11-18 21:17:25.662565"]]
1079892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079893
+  (0.0ms) SAVEPOINT active_record_1
1079894
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1982964368 LIMIT 1
1079895
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1982964368], ["username", "billy_47"], ["access_token", "36961accf0336fe9468d1bd67fcdd4f1"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:25.664422"], ["updated_at", "2015-11-18 21:17:25.664422"]]
1079896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079897
+  (0.0ms) SAVEPOINT active_record_1
1079898
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -968840895 LIMIT 1
1079899
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -968840895], ["username", "billy_48"], ["access_token", "538bf0a70e8bf25c30dd01fab4aa5ab6"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:25.666304"], ["updated_at", "2015-11-18 21:17:25.666304"]]
1079900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079901
+  (0.0ms) SAVEPOINT active_record_1
1079902
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -682439140 LIMIT 1
1079903
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -682439140], ["username", "billy_49"], ["access_token", "406fd4485ddac78438a7236afe1ecfb9"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:25.668167"], ["updated_at", "2015-11-18 21:17:25.668167"]]
1079904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079905
+  (0.0ms) SAVEPOINT active_record_1
1079906
+  (0.1ms) SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
1079907
+ 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
1079908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079909
+  (1.2ms) rollback transaction
1079910
+  (0.1ms) begin transaction
1079911
+  (0.0ms) SAVEPOINT active_record_1
1079912
+ OpenStax::Accounts::Account Exists (0.2ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -113364916 LIMIT 1
1079913
+ SQL (0.3ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -113364916], ["username", "jstrav"], ["access_token", "1bebc51b6c56b7a5f05b0d0b426e6a04"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-11-18 21:17:25.679332"], ["updated_at", "2015-11-18 21:17:25.679332"]]
1079914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079915
+  (0.0ms) SAVEPOINT active_record_1
1079916
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796882153 LIMIT 1
1079917
+ 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", -796882153], ["username", "mary"], ["access_token", "783fe15a40a040b12f49d22dab5227aa"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-11-18 21:17:25.682195"], ["updated_at", "2015-11-18 21:17:25.682195"]]
1079918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079919
+  (0.0ms) SAVEPOINT active_record_1
1079920
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1922385243 LIMIT 1
1079921
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1922385243], ["username", "jstead"], ["access_token", "c1fc0623f16fec12145896c17b56ec01"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-11-18 21:17:25.684586"], ["updated_at", "2015-11-18 21:17:25.684586"]]
1079922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079923
+  (0.0ms) SAVEPOINT active_record_1
1079924
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1847475153 LIMIT 1
1079925
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1847475153], ["username", "bigbear"], ["access_token", "d6f92b279de94de8940abb8d3f0db5b3"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-11-18 21:17:25.686514"], ["updated_at", "2015-11-18 21:17:25.686514"]]
1079926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079927
+  (0.0ms) SAVEPOINT active_record_1
1079928
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -306861379 LIMIT 1
1079929
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -306861379], ["username", "billy_00"], ["access_token", "c4a2b04a4416d2f680e38c3d97cd8d0d"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-11-18 21:17:25.688249"], ["updated_at", "2015-11-18 21:17:25.688249"]]
1079930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079931
+  (0.0ms) SAVEPOINT active_record_1
1079932
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -508937942 LIMIT 1
1079933
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -508937942], ["username", "billy_01"], ["access_token", "73862e45fc25e16290b5bd5f76204a32"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-11-18 21:17:25.689890"], ["updated_at", "2015-11-18 21:17:25.689890"]]
1079934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079935
+  (0.0ms) SAVEPOINT active_record_1
1079936
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -186391414 LIMIT 1
1079937
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -186391414], ["username", "billy_02"], ["access_token", "39967638d834bd40abcdc83bf5bdca40"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-11-18 21:17:25.691531"], ["updated_at", "2015-11-18 21:17:25.691531"]]
1079938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079939
+  (0.0ms) SAVEPOINT active_record_1
1079940
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -842436710 LIMIT 1
1079941
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -842436710], ["username", "billy_03"], ["access_token", "1dcc01c662ca377ce67b2ba6731b3db4"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-11-18 21:17:25.693190"], ["updated_at", "2015-11-18 21:17:25.693190"]]
1079942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079943
+  (0.0ms) SAVEPOINT active_record_1
1079944
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1181070927 LIMIT 1
1079945
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1181070927], ["username", "billy_04"], ["access_token", "5e0bec1d1d39df24ed16a6c142d52e9d"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-11-18 21:17:25.694874"], ["updated_at", "2015-11-18 21:17:25.694874"]]
1079946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079947
+  (0.0ms) SAVEPOINT active_record_1
1079948
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2013914556 LIMIT 1
1079949
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2013914556], ["username", "billy_05"], ["access_token", "62155e3234f88a288388a44b07b69343"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-11-18 21:17:25.696509"], ["updated_at", "2015-11-18 21:17:25.696509"]]
1079950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079951
+  (0.0ms) SAVEPOINT active_record_1
1079952
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1707808724 LIMIT 1
1079953
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1707808724], ["username", "billy_06"], ["access_token", "ee6ac247a336a92584fbdffd4b79bc87"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-11-18 21:17:25.698138"], ["updated_at", "2015-11-18 21:17:25.698138"]]
1079954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079955
+  (0.0ms) SAVEPOINT active_record_1
1079956
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1915740283 LIMIT 1
1079957
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1915740283], ["username", "billy_07"], ["access_token", "43412758ec533e9cad771e0d40eca37b"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-11-18 21:17:25.699780"], ["updated_at", "2015-11-18 21:17:25.699780"]]
1079958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079959
+  (0.0ms) SAVEPOINT active_record_1
1079960
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -792540979 LIMIT 1
1079961
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -792540979], ["username", "billy_08"], ["access_token", "1a42b231f25e23a02b170153d54cd5d8"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-11-18 21:17:25.701424"], ["updated_at", "2015-11-18 21:17:25.701424"]]
1079962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079963
+  (0.0ms) SAVEPOINT active_record_1
1079964
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1334059185 LIMIT 1
1079965
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1334059185], ["username", "billy_09"], ["access_token", "c1bd69d11a9efc6d9059e30cb93c7474"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-11-18 21:17:25.703086"], ["updated_at", "2015-11-18 21:17:25.703086"]]
1079966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079967
+  (0.0ms) SAVEPOINT active_record_1
1079968
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1585405791 LIMIT 1
1079969
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1585405791], ["username", "billy_10"], ["access_token", "d11d351add78a0fcfe94ddcac6df77dc"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-11-18 21:17:25.704713"], ["updated_at", "2015-11-18 21:17:25.704713"]]
1079970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079971
+  (0.0ms) SAVEPOINT active_record_1
1079972
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -549836717 LIMIT 1
1079973
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -549836717], ["username", "billy_11"], ["access_token", "83239c641324d007babbc2161b0ed738"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-11-18 21:17:25.706399"], ["updated_at", "2015-11-18 21:17:25.706399"]]
1079974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079975
+  (0.0ms) SAVEPOINT active_record_1
1079976
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1705591932 LIMIT 1
1079977
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1705591932], ["username", "billy_12"], ["access_token", "32bc5a92cd77879444872b6697312d54"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-11-18 21:17:25.708028"], ["updated_at", "2015-11-18 21:17:25.708028"]]
1079978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079979
+  (0.0ms) SAVEPOINT active_record_1
1079980
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -822610623 LIMIT 1
1079981
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -822610623], ["username", "billy_13"], ["access_token", "ffb84a70cf18bf63f46a0e3740943a37"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-11-18 21:17:25.709829"], ["updated_at", "2015-11-18 21:17:25.709829"]]
1079982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079983
+  (0.0ms) SAVEPOINT active_record_1
1079984
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1857218913 LIMIT 1
1079985
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1857218913], ["username", "billy_14"], ["access_token", "c49c3cd0973523e0b4f3bd419ab1f7cb"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-11-18 21:17:25.711561"], ["updated_at", "2015-11-18 21:17:25.711561"]]
1079986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079987
+  (0.0ms) SAVEPOINT active_record_1
1079988
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1372569234 LIMIT 1
1079989
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1372569234], ["username", "billy_15"], ["access_token", "216917d026cdc640a7e397adfa6b02a6"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-11-18 21:17:25.713405"], ["updated_at", "2015-11-18 21:17:25.713405"]]
1079990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079991
+  (0.0ms) SAVEPOINT active_record_1
1079992
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112465745 LIMIT 1
1079993
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1112465745], ["username", "billy_16"], ["access_token", "26afee0b75af8ed0d356147be0e848f1"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-11-18 21:17:25.715035"], ["updated_at", "2015-11-18 21:17:25.715035"]]
1079994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079995
+  (0.0ms) SAVEPOINT active_record_1
1079996
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -243994162 LIMIT 1
1079997
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -243994162], ["username", "billy_17"], ["access_token", "980c99009bb48205501f66e1ffdceda4"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-11-18 21:17:25.716658"], ["updated_at", "2015-11-18 21:17:25.716658"]]
1079998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079999
+  (0.0ms) SAVEPOINT active_record_1
1080000
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2005658567 LIMIT 1
1080001
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2005658567], ["username", "billy_18"], ["access_token", "a20698d7a960ca76dce629795e3f4d8d"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-11-18 21:17:25.718274"], ["updated_at", "2015-11-18 21:17:25.718274"]]
1080002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080003
+  (0.0ms) SAVEPOINT active_record_1
1080004
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1121486570 LIMIT 1
1080005
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1121486570], ["username", "billy_19"], ["access_token", "977ff60a875b0de26ca2f2265335f91d"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-11-18 21:17:25.733105"], ["updated_at", "2015-11-18 21:17:25.733105"]]
1080006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080007
+  (0.0ms) SAVEPOINT active_record_1
1080008
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -583904490 LIMIT 1
1080009
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -583904490], ["username", "billy_20"], ["access_token", "bfaabc0cf1ea4e2e252c94435ea62d8e"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-11-18 21:17:25.734966"], ["updated_at", "2015-11-18 21:17:25.734966"]]
1080010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080011
+  (0.0ms) SAVEPOINT active_record_1
1080012
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1947765889 LIMIT 1
1080013
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1947765889], ["username", "billy_21"], ["access_token", "47f92f534c76a88a888ba0fd836b5ff9"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-11-18 21:17:25.736751"], ["updated_at", "2015-11-18 21:17:25.736751"]]
1080014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080015
+  (0.1ms) SAVEPOINT active_record_1
1080016
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1546478703 LIMIT 1
1080017
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1546478703], ["username", "billy_22"], ["access_token", "3d9c12e101009d1d4dd3710ba7844c02"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-11-18 21:17:25.738545"], ["updated_at", "2015-11-18 21:17:25.738545"]]
1080018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080019
+  (0.0ms) SAVEPOINT active_record_1
1080020
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -970449609 LIMIT 1
1080021
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -970449609], ["username", "billy_23"], ["access_token", "a1cca555aa95d7f34e811a87d920c73d"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-11-18 21:17:25.740274"], ["updated_at", "2015-11-18 21:17:25.740274"]]
1080022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080023
+  (0.0ms) SAVEPOINT active_record_1
1080024
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1457517502 LIMIT 1
1080025
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1457517502], ["username", "billy_24"], ["access_token", "8282b07dc169da2c78fd9a8d598ad022"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-11-18 21:17:25.742221"], ["updated_at", "2015-11-18 21:17:25.742221"]]
1080026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080027
+  (0.0ms) SAVEPOINT active_record_1
1080028
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -860550930 LIMIT 1
1080029
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -860550930], ["username", "billy_25"], ["access_token", "8bacf3606a1ad683a0adefba55b43448"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-11-18 21:17:25.743978"], ["updated_at", "2015-11-18 21:17:25.743978"]]
1080030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080031
+  (0.0ms) SAVEPOINT active_record_1
1080032
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1838565767 LIMIT 1
1080033
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1838565767], ["username", "billy_26"], ["access_token", "d80f3d749101c038239d9b0fdec92a8c"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-11-18 21:17:25.745750"], ["updated_at", "2015-11-18 21:17:25.745750"]]
1080034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080035
+  (0.0ms) SAVEPOINT active_record_1
1080036
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1829142844 LIMIT 1
1080037
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1829142844], ["username", "billy_27"], ["access_token", "c1e48f11696534f31e56c13d3975db0e"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-11-18 21:17:25.747491"], ["updated_at", "2015-11-18 21:17:25.747491"]]
1080038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080039
+  (0.0ms) SAVEPOINT active_record_1
1080040
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -335375520 LIMIT 1
1080041
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -335375520], ["username", "billy_28"], ["access_token", "e8d433f4cbafa5ea89cab5bef5c7a6c2"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-11-18 21:17:25.749227"], ["updated_at", "2015-11-18 21:17:25.749227"]]
1080042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080043
+  (0.0ms) SAVEPOINT active_record_1
1080044
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -542885574 LIMIT 1
1080045
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -542885574], ["username", "billy_29"], ["access_token", "600eb3375fffaf0c20d417313d122b77"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-11-18 21:17:25.750952"], ["updated_at", "2015-11-18 21:17:25.750952"]]
1080046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080047
+  (0.0ms) SAVEPOINT active_record_1
1080048
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205363753 LIMIT 1
1080049
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -205363753], ["username", "billy_30"], ["access_token", "b98d311fd40a9cd9301cab357e6f72c0"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-11-18 21:17:25.752763"], ["updated_at", "2015-11-18 21:17:25.752763"]]
1080050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080051
+  (0.0ms) SAVEPOINT active_record_1
1080052
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -351838109 LIMIT 1
1080053
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -351838109], ["username", "billy_31"], ["access_token", "9772a375dab9483221b355450f37bf89"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-11-18 21:17:25.754575"], ["updated_at", "2015-11-18 21:17:25.754575"]]
1080054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1080055
+  (0.0ms) SAVEPOINT active_record_1
1080056
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1367347263 LIMIT 1
1080057
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1367347263], ["username", "billy_32"], ["access_token", "d5335d8ec966e8dc933044f12ff5b4aa"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-11-18 21:17:25.756312"], ["updated_at", "2015-11-18 21:17:25.756312"]]
1080058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080059
+  (0.0ms) SAVEPOINT active_record_1
1080060
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -176195777 LIMIT 1
1080061
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -176195777], ["username", "billy_33"], ["access_token", "5789a4cde39d46d58fdeb204c974fc4a"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-11-18 21:17:25.758059"], ["updated_at", "2015-11-18 21:17:25.758059"]]
1080062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080063
+  (0.0ms) SAVEPOINT active_record_1
1080064
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -750579876 LIMIT 1
1080065
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -750579876], ["username", "billy_34"], ["access_token", "cc4f3bfd27d27d67d95545f5aef39249"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-11-18 21:17:25.759789"], ["updated_at", "2015-11-18 21:17:25.759789"]]
1080066
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1080067
+  (0.1ms) SAVEPOINT active_record_1
1080068
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2069277870 LIMIT 1
1080069
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2069277870], ["username", "billy_35"], ["access_token", "a91ce1d961eb96b397cddf5a45fa8212"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-11-18 21:17:25.762787"], ["updated_at", "2015-11-18 21:17:25.762787"]]
1080070
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1080071
+  (0.0ms) SAVEPOINT active_record_1
1080072
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1494126940 LIMIT 1
1080073
+ SQL (0.2ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1494126940], ["username", "billy_36"], ["access_token", "c422cb4bb6a58dec0d95df0302c0bd4a"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-11-18 21:17:25.765847"], ["updated_at", "2015-11-18 21:17:25.765847"]]
1080074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080075
+  (0.0ms) SAVEPOINT active_record_1
1080076
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1778917545 LIMIT 1
1080077
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1778917545], ["username", "billy_37"], ["access_token", "ac7bed37d978ab8ccf12fa55ff32a26a"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-11-18 21:17:25.768566"], ["updated_at", "2015-11-18 21:17:25.768566"]]
1080078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080079
+  (0.0ms) SAVEPOINT active_record_1
1080080
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -472613832 LIMIT 1
1080081
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -472613832], ["username", "billy_38"], ["access_token", "d0f4363f5e29d88513360cb4b372dbde"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-11-18 21:17:25.771018"], ["updated_at", "2015-11-18 21:17:25.771018"]]
1080082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080083
+  (0.0ms) SAVEPOINT active_record_1
1080084
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1664901283 LIMIT 1
1080085
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1664901283], ["username", "billy_39"], ["access_token", "9cb66137c1348934b0c2352179e0148d"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-11-18 21:17:25.773222"], ["updated_at", "2015-11-18 21:17:25.773222"]]
1080086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080087
+  (0.0ms) SAVEPOINT active_record_1
1080088
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -500421065 LIMIT 1
1080089
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -500421065], ["username", "billy_40"], ["access_token", "aec4d7ac6e60e5f29e98224434ef397f"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-11-18 21:17:25.775234"], ["updated_at", "2015-11-18 21:17:25.775234"]]
1080090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080091
+  (0.0ms) SAVEPOINT active_record_1
1080092
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1921267200 LIMIT 1
1080093
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1921267200], ["username", "billy_41"], ["access_token", "7a551b60428256d5602a6b802d4f666b"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-11-18 21:17:25.777079"], ["updated_at", "2015-11-18 21:17:25.777079"]]
1080094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080095
+  (0.0ms) SAVEPOINT active_record_1
1080096
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1722128415 LIMIT 1
1080097
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1722128415], ["username", "billy_42"], ["access_token", "e07431c7eef169332cfbe70420cf438c"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-11-18 21:17:25.778878"], ["updated_at", "2015-11-18 21:17:25.778878"]]
1080098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080099
+  (0.1ms) SAVEPOINT active_record_1
1080100
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -606711817 LIMIT 1
1080101
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -606711817], ["username", "billy_43"], ["access_token", "c78184fa6cbf4f3957a72d46f1958f5f"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-11-18 21:17:25.780672"], ["updated_at", "2015-11-18 21:17:25.780672"]]
1080102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080103
+  (0.0ms) SAVEPOINT active_record_1
1080104
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1163219760 LIMIT 1
1080105
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1163219760], ["username", "billy_44"], ["access_token", "0b5b051b4adb84bc3147a73bbcbeed0a"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-11-18 21:17:25.782442"], ["updated_at", "2015-11-18 21:17:25.782442"]]
1080106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1080107
+  (0.0ms) SAVEPOINT active_record_1
1080108
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1570771826 LIMIT 1
1080109
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1570771826], ["username", "billy_45"], ["access_token", "df3bfc2a3a68e7fb8cf5fad247ddd228"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-11-18 21:17:25.784262"], ["updated_at", "2015-11-18 21:17:25.784262"]]
1080110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080111
+  (0.0ms) SAVEPOINT active_record_1
1080112
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1752607201 LIMIT 1
1080113
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1752607201], ["username", "billy_46"], ["access_token", "c6b4772319e368f791406d2986a0d83f"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-11-18 21:17:25.786343"], ["updated_at", "2015-11-18 21:17:25.786343"]]
1080114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080115
+  (0.0ms) SAVEPOINT active_record_1
1080116
+ OpenStax::Accounts::Account Exists (0.0ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -860654153 LIMIT 1
1080117
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -860654153], ["username", "billy_47"], ["access_token", "6b3ee4da991c64d60b629d989c98ac60"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-11-18 21:17:25.788155"], ["updated_at", "2015-11-18 21:17:25.788155"]]
1080118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080119
+  (0.0ms) SAVEPOINT active_record_1
1080120
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1700597200 LIMIT 1
1080121
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1700597200], ["username", "billy_48"], ["access_token", "196a52287a1db28e39345972a7f342a6"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-11-18 21:17:25.789943"], ["updated_at", "2015-11-18 21:17:25.789943"]]
1080122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080123
+  (0.0ms) SAVEPOINT active_record_1
1080124
+ OpenStax::Accounts::Account Exists (0.1ms) SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1240526501 LIMIT 1
1080125
+ SQL (0.1ms) INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1240526501], ["username", "billy_49"], ["access_token", "3422f2d31636416ed2490cebf287cc56"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-11-18 21:17:25.791747"], ["updated_at", "2015-11-18 21:17:25.791747"]]
1080126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080127
+  (0.0ms) SAVEPOINT active_record_1
1080128
+  (0.0ms) SELECT COUNT(*) FROM "openstax_accounts_accounts"
1080129
+ OpenStax::Accounts::Account Load (0.2ms) SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
1080130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080131
+  (1.2ms) rollback transaction