openstax_accounts 4.1.0 → 4.1.1
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 +4 -4
- data/config/routes.rb +13 -12
- data/lib/openstax/accounts/version.rb +1 -1
- data/spec/dummy/log/test.log +2919 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89eaeece94bdba0b11a0f199af06eb5a81c3d7cf
|
4
|
+
data.tar.gz: 95b3ad8856ea3eab85788ee48e2b33ee909c416f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f299c3a422edf23b9528267f04006a31efa0f15748b5f0c20c3ce12035d0898426975f08776f61d510b1adb4c0a6f3e95e931afb7829112b47fe66287c57a9d0
|
7
|
+
data.tar.gz: 765d14c76d283b5dd0c1ded49117b2ae9c594ba9302c2f4988272e70d6570f25a282253721d676b9a4da29c1672f1f8eab7581324576ae3c956aea080381b4a8
|
data/config/routes.rb
CHANGED
@@ -8,9 +8,19 @@ OpenStax::Accounts::Engine.routes.draw do
|
|
8
8
|
get '/auth/openstax', :as => 'openstax_login'
|
9
9
|
|
10
10
|
# User profile route
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
if OpenStax::Accounts.configuration.enable_stubbing?
|
12
|
+
namespace :dev do
|
13
|
+
resources :accounts, :only => [:index, :create] do
|
14
|
+
post 'become', :on => :member
|
15
|
+
get 'search', :on => :collection
|
16
|
+
end
|
17
|
+
end
|
18
|
+
else
|
19
|
+
get '/profile' => lambda { |env|
|
20
|
+
redirect(URI::join(OpenStax::Accounts.configuration.openstax_accounts_url,
|
21
|
+
"/profile").to_s)
|
22
|
+
}
|
23
|
+
end
|
14
24
|
|
15
25
|
# OmniAuth local routes (SessionsController)
|
16
26
|
scope module: 'sessions' do
|
@@ -22,13 +32,4 @@ OpenStax::Accounts::Engine.routes.draw do
|
|
22
32
|
:via => OpenStax::Accounts.configuration.logout_via
|
23
33
|
end
|
24
34
|
|
25
|
-
if OpenStax::Accounts.configuration.enable_stubbing?
|
26
|
-
namespace :dev do
|
27
|
-
resources :accounts, :only => [:index, :create] do
|
28
|
-
post 'become', :on => :member
|
29
|
-
get 'search', :on => :collection
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
35
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -782525,3 +782525,2922 @@ Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
|
782525
782525
|
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1711019093, -1670218585)
|
782526
782526
|
[1m[36mOwnership Load (0.1ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)[0m
|
782527
782527
|
[1m[35m (0.6ms)[0m rollback transaction
|
782528
|
+
[1m[36m (0.8ms)[0m [1mCREATE 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) [0m
|
782529
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
782530
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
782531
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782532
|
+
FROM sqlite_master
|
782533
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782534
|
+
UNION ALL
|
782535
|
+
SELECT sql
|
782536
|
+
FROM sqlite_temp_master
|
782537
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782538
|
+
|
782539
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
782540
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782541
|
+
FROM sqlite_master
|
782542
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782543
|
+
UNION ALL
|
782544
|
+
SELECT sql
|
782545
|
+
FROM sqlite_temp_master
|
782546
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782547
|
+
|
782548
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782549
|
+
FROM sqlite_master
|
782550
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782551
|
+
UNION ALL
|
782552
|
+
SELECT sql
|
782553
|
+
FROM sqlite_temp_master
|
782554
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782555
|
+
[0m
|
782556
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
782557
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782558
|
+
FROM sqlite_master
|
782559
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782560
|
+
UNION ALL
|
782561
|
+
SELECT sql
|
782562
|
+
FROM sqlite_temp_master
|
782563
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782564
|
+
[0m
|
782565
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782566
|
+
FROM sqlite_master
|
782567
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782568
|
+
UNION ALL
|
782569
|
+
SELECT sql
|
782570
|
+
FROM sqlite_temp_master
|
782571
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782572
|
+
|
782573
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782574
|
+
FROM sqlite_master
|
782575
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782576
|
+
UNION ALL
|
782577
|
+
SELECT sql
|
782578
|
+
FROM sqlite_temp_master
|
782579
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782580
|
+
[0m
|
782581
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
782582
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782583
|
+
FROM sqlite_master
|
782584
|
+
WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
|
782585
|
+
UNION ALL
|
782586
|
+
SELECT sql
|
782587
|
+
FROM sqlite_temp_master
|
782588
|
+
WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
|
782589
|
+
[0m
|
782590
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782591
|
+
FROM sqlite_master
|
782592
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782593
|
+
UNION ALL
|
782594
|
+
SELECT sql
|
782595
|
+
FROM sqlite_temp_master
|
782596
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782597
|
+
|
782598
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782599
|
+
FROM sqlite_master
|
782600
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782601
|
+
UNION ALL
|
782602
|
+
SELECT sql
|
782603
|
+
FROM sqlite_temp_master
|
782604
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782605
|
+
[0m
|
782606
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782607
|
+
FROM sqlite_master
|
782608
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782609
|
+
UNION ALL
|
782610
|
+
SELECT sql
|
782611
|
+
FROM sqlite_temp_master
|
782612
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782613
|
+
|
782614
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
782615
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782616
|
+
FROM sqlite_master
|
782617
|
+
WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
|
782618
|
+
UNION ALL
|
782619
|
+
SELECT sql
|
782620
|
+
FROM sqlite_temp_master
|
782621
|
+
WHERE name='index_openstax_accounts_accounts_on_openstax_uid' AND type='index'
|
782622
|
+
|
782623
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782624
|
+
FROM sqlite_master
|
782625
|
+
WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
|
782626
|
+
UNION ALL
|
782627
|
+
SELECT sql
|
782628
|
+
FROM sqlite_temp_master
|
782629
|
+
WHERE name='index_openstax_accounts_accounts_on_last_name' AND type='index'
|
782630
|
+
[0m
|
782631
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782632
|
+
FROM sqlite_master
|
782633
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782634
|
+
UNION ALL
|
782635
|
+
SELECT sql
|
782636
|
+
FROM sqlite_temp_master
|
782637
|
+
WHERE name='index_openstax_accounts_accounts_on_full_name' AND type='index'
|
782638
|
+
|
782639
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
782640
|
+
FROM sqlite_master
|
782641
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782642
|
+
UNION ALL
|
782643
|
+
SELECT sql
|
782644
|
+
FROM sqlite_temp_master
|
782645
|
+
WHERE name='index_openstax_accounts_accounts_on_first_name' AND type='index'
|
782646
|
+
[0m
|
782647
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782648
|
+
FROM sqlite_master
|
782649
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782650
|
+
UNION ALL
|
782651
|
+
SELECT sql
|
782652
|
+
FROM sqlite_temp_master
|
782653
|
+
WHERE name='index_openstax_accounts_accounts_on_access_token' AND type='index'
|
782654
|
+
|
782655
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
782656
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "openstax_accounts_group_members" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
|
782657
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_group_members_on_group_id_and_user_id" ON "openstax_accounts_group_members" ("group_id", "user_id")[0m
|
782658
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782659
|
+
FROM sqlite_master
|
782660
|
+
WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
|
782661
|
+
UNION ALL
|
782662
|
+
SELECT sql
|
782663
|
+
FROM sqlite_temp_master
|
782664
|
+
WHERE name='index_openstax_accounts_group_members_on_group_id_and_user_id' AND type='index'
|
782665
|
+
|
782666
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_openstax_accounts_group_members_on_user_id" ON "openstax_accounts_group_members" ("user_id")[0m
|
782667
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "openstax_accounts_group_nestings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "member_group_id" integer NOT NULL, "container_group_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
|
782668
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_group_nestings_on_container_group_id" ON "openstax_accounts_group_nestings" ("container_group_id")[0m
|
782669
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782670
|
+
FROM sqlite_master
|
782671
|
+
WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
|
782672
|
+
UNION ALL
|
782673
|
+
SELECT sql
|
782674
|
+
FROM sqlite_temp_master
|
782675
|
+
WHERE name='index_openstax_accounts_group_nestings_on_container_group_id' AND type='index'
|
782676
|
+
|
782677
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_group_nestings_on_member_group_id" ON "openstax_accounts_group_nestings" ("member_group_id")[0m
|
782678
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "openstax_accounts_group_owners" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
|
782679
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_group_owners_on_group_id_and_user_id" ON "openstax_accounts_group_owners" ("group_id", "user_id")[0m
|
782680
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782681
|
+
FROM sqlite_master
|
782682
|
+
WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
|
782683
|
+
UNION ALL
|
782684
|
+
SELECT sql
|
782685
|
+
FROM sqlite_temp_master
|
782686
|
+
WHERE name='index_openstax_accounts_group_owners_on_group_id_and_user_id' AND type='index'
|
782687
|
+
|
782688
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_openstax_accounts_group_owners_on_user_id" ON "openstax_accounts_group_owners" ("user_id")[0m
|
782689
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "openstax_accounts_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "is_public" boolean DEFAULT 'f' NOT NULL, "name" varchar, "cached_subtree_group_ids" text, "cached_supertree_group_ids" text, "created_at" datetime, "updated_at" datetime)
|
782690
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_groups_on_is_public" ON "openstax_accounts_groups" ("is_public")[0m
|
782691
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
782692
|
+
FROM sqlite_master
|
782693
|
+
WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
|
782694
|
+
UNION ALL
|
782695
|
+
SELECT sql
|
782696
|
+
FROM sqlite_temp_master
|
782697
|
+
WHERE name='index_openstax_accounts_groups_on_is_public' AND type='index'
|
782698
|
+
|
782699
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_groups_on_openstax_uid" ON "openstax_accounts_groups" ("openstax_uid")[0m
|
782700
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "ownerships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer NOT NULL, "owner_type" varchar NOT NULL, "created_at" datetime, "updated_at" datetime)
|
782701
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_ownerships_on_owner_id_and_owner_type" ON "ownerships" ("owner_id", "owner_type")[0m
|
782702
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
|
782703
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_account_id" ON "users" ("account_id")[0m
|
782704
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
782705
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
782706
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
782707
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('6')[0m
|
782708
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('5')
|
782709
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
782710
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('1')
|
782711
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('2')[0m
|
782712
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('3')
|
782713
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('4')[0m
|
782714
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
782715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782716
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -561880024 LIMIT 1[0m
|
782717
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -561880024], ["username", "jstrav"], ["access_token", "d1e5ece82f0d762105742c278e787339"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:57.673722"], ["updated_at", "2015-03-20 19:03:57.673722"]]
|
782718
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782719
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782720
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1879272531 LIMIT 1[0m
|
782721
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1879272531], ["username", "mary"], ["access_token", "6d4b4c7d3d1d129f58f08dec807c6bc4"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:57.677644"], ["updated_at", "2015-03-20 19:03:57.677644"]]
|
782722
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782724
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1609371483 LIMIT 1[0m
|
782725
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1609371483], ["username", "jstead"], ["access_token", "cb7b701a0578b3380277f3ef6fa2946d"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:57.681847"], ["updated_at", "2015-03-20 19:03:57.681847"]]
|
782726
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782727
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782728
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1775731439 LIMIT 1[0m
|
782729
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1775731439], ["username", "bigbear"], ["access_token", "8fb1cf1ed481f1e0c3b94d266fd98158"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:57.684294"], ["updated_at", "2015-03-20 19:03:57.684294"]]
|
782730
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782732
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1346669669 LIMIT 1[0m
|
782733
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1346669669], ["username", "billy_00"], ["access_token", "96dd72470382631695837c210b55a872"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:57.686457"], ["updated_at", "2015-03-20 19:03:57.686457"]]
|
782734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782736
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -630926353 LIMIT 1[0m
|
782737
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -630926353], ["username", "billy_01"], ["access_token", "7b27a9815298bdfd7b08ee0059df1b30"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:57.688993"], ["updated_at", "2015-03-20 19:03:57.688993"]]
|
782738
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782739
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782740
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488208361 LIMIT 1[0m
|
782741
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -488208361], ["username", "billy_02"], ["access_token", "07b8eb55b942fa259ca217a005905c08"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:57.703586"], ["updated_at", "2015-03-20 19:03:57.703586"]]
|
782742
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782743
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782744
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1263152995 LIMIT 1[0m
|
782745
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1263152995], ["username", "billy_03"], ["access_token", "c9058c87af2641ded3f098f7fb87e154"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:57.706214"], ["updated_at", "2015-03-20 19:03:57.706214"]]
|
782746
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782747
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782748
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -849848163 LIMIT 1[0m
|
782749
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -849848163], ["username", "billy_04"], ["access_token", "648fdbf36dc882827f7e6a7c754e7cd1"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:57.708772"], ["updated_at", "2015-03-20 19:03:57.708772"]]
|
782750
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782751
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782752
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -581209823 LIMIT 1[0m
|
782753
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -581209823], ["username", "billy_05"], ["access_token", "52fc46e59b0ce2d32101e59b45b9fac7"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:57.711182"], ["updated_at", "2015-03-20 19:03:57.711182"]]
|
782754
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782756
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1958396903 LIMIT 1[0m
|
782757
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1958396903], ["username", "billy_06"], ["access_token", "222428423843789cfecd84a2fa706282"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:57.713622"], ["updated_at", "2015-03-20 19:03:57.713622"]]
|
782758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782760
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -791315926 LIMIT 1[0m
|
782761
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -791315926], ["username", "billy_07"], ["access_token", "73f29650bb0b2a6e1cb7b8919e47c37f"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:57.716005"], ["updated_at", "2015-03-20 19:03:57.716005"]]
|
782762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782763
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782764
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -230766713 LIMIT 1[0m
|
782765
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -230766713], ["username", "billy_08"], ["access_token", "d7000fd27f8d295e6351182110b4b4be"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:57.718593"], ["updated_at", "2015-03-20 19:03:57.718593"]]
|
782766
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782768
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184315960 LIMIT 1[0m
|
782769
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1184315960], ["username", "billy_09"], ["access_token", "cba358f78856b9dc9be80465af1e8c5a"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:57.721171"], ["updated_at", "2015-03-20 19:03:57.721171"]]
|
782770
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782771
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
782772
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1703444841 LIMIT 1[0m
|
782773
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1703444841], ["username", "billy_10"], ["access_token", "be341c595fc106379288ff5b09a62778"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:57.723948"], ["updated_at", "2015-03-20 19:03:57.723948"]]
|
782774
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782776
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -138826811 LIMIT 1[0m
|
782777
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -138826811], ["username", "billy_11"], ["access_token", "b8a56c109e32200ebbb04c2f2f8c9107"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:57.726502"], ["updated_at", "2015-03-20 19:03:57.726502"]]
|
782778
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782779
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782780
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -991008396 LIMIT 1[0m
|
782781
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -991008396], ["username", "billy_12"], ["access_token", "7d036e8ab1fac7ecb1e8ceca372cbbd7"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:57.729231"], ["updated_at", "2015-03-20 19:03:57.729231"]]
|
782782
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782784
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1769094482 LIMIT 1[0m
|
782785
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1769094482], ["username", "billy_13"], ["access_token", "14db88141dd28aada0d3ed4d6ce72287"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:57.731554"], ["updated_at", "2015-03-20 19:03:57.731554"]]
|
782786
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782787
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782788
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1083874657 LIMIT 1[0m
|
782789
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1083874657], ["username", "billy_14"], ["access_token", "16ff99b53f9a88f8a176c6980b7b36cd"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:57.733842"], ["updated_at", "2015-03-20 19:03:57.733842"]]
|
782790
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782791
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782792
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730699763 LIMIT 1[0m
|
782793
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1730699763], ["username", "billy_15"], ["access_token", "d19ac2e9179043c3f60967c195fd8729"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:57.736072"], ["updated_at", "2015-03-20 19:03:57.736072"]]
|
782794
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782795
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782796
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1622645851 LIMIT 1[0m
|
782797
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1622645851], ["username", "billy_16"], ["access_token", "af2a7d9d0f680a8d19b49e48e8708bd0"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:57.738246"], ["updated_at", "2015-03-20 19:03:57.738246"]]
|
782798
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782799
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782800
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -192969967 LIMIT 1[0m
|
782801
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -192969967], ["username", "billy_17"], ["access_token", "b3d666938bdcbdc2dedd1f8bec14d496"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:57.740652"], ["updated_at", "2015-03-20 19:03:57.740652"]]
|
782802
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782803
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782804
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1065733171 LIMIT 1[0m
|
782805
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1065733171], ["username", "billy_18"], ["access_token", "b03c6b4013e6a6118e43abefac45317c"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:57.743115"], ["updated_at", "2015-03-20 19:03:57.743115"]]
|
782806
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782807
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782808
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1567901533 LIMIT 1[0m
|
782809
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1567901533], ["username", "billy_19"], ["access_token", "ecb896eb2fe9a93817816e8e2c7072da"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:57.745670"], ["updated_at", "2015-03-20 19:03:57.745670"]]
|
782810
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782812
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1162797490 LIMIT 1[0m
|
782813
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1162797490], ["username", "billy_20"], ["access_token", "4996324741190e5fa49fe0379df22162"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:57.747851"], ["updated_at", "2015-03-20 19:03:57.747851"]]
|
782814
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782816
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -645548985 LIMIT 1[0m
|
782817
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -645548985], ["username", "billy_21"], ["access_token", "eb735af6c1ffc0b95ca8166f87126edb"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:57.750049"], ["updated_at", "2015-03-20 19:03:57.750049"]]
|
782818
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782819
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782820
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1975602633 LIMIT 1[0m
|
782821
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1975602633], ["username", "billy_22"], ["access_token", "0b8431769cea110db974c6d2c5f0242a"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:57.752200"], ["updated_at", "2015-03-20 19:03:57.752200"]]
|
782822
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782824
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1638754638 LIMIT 1[0m
|
782825
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1638754638], ["username", "billy_23"], ["access_token", "0888158d47311894bb7d5c558d1be619"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:57.754381"], ["updated_at", "2015-03-20 19:03:57.754381"]]
|
782826
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782828
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1774140947 LIMIT 1[0m
|
782829
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1774140947], ["username", "billy_24"], ["access_token", "e8f33f920483be7a33978fbba39ffeca"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:57.756740"], ["updated_at", "2015-03-20 19:03:57.756740"]]
|
782830
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782831
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
782832
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1088506172 LIMIT 1[0m
|
782833
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1088506172], ["username", "billy_25"], ["access_token", "582b4a3d74604a616dc9895041e4c05d"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:57.760765"], ["updated_at", "2015-03-20 19:03:57.760765"]]
|
782834
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782835
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782836
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1782923461 LIMIT 1[0m
|
782837
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1782923461], ["username", "billy_26"], ["access_token", "837a222ab2d736a3ed9321c17feeb3b8"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:57.765297"], ["updated_at", "2015-03-20 19:03:57.765297"]]
|
782838
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782839
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782840
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1816310394 LIMIT 1[0m
|
782841
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1816310394], ["username", "billy_27"], ["access_token", "2307199d56c61a89bd2b2fec6b899f64"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:57.767513"], ["updated_at", "2015-03-20 19:03:57.767513"]]
|
782842
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782843
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782844
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -140955788 LIMIT 1[0m
|
782845
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -140955788], ["username", "billy_28"], ["access_token", "a4e68970dcab128413320dce5b0dd3c9"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:57.769650"], ["updated_at", "2015-03-20 19:03:57.769650"]]
|
782846
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782848
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -436393427 LIMIT 1[0m
|
782849
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -436393427], ["username", "billy_29"], ["access_token", "73ea1c60961696a583d0d5294e744812"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:57.771774"], ["updated_at", "2015-03-20 19:03:57.771774"]]
|
782850
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782852
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -863659596 LIMIT 1[0m
|
782853
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -863659596], ["username", "billy_30"], ["access_token", "0b09f174c91714f69789243c7e635ffa"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:57.774583"], ["updated_at", "2015-03-20 19:03:57.774583"]]
|
782854
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782855
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782856
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -968534215 LIMIT 1[0m
|
782857
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -968534215], ["username", "billy_31"], ["access_token", "d063da90587803a6573dbe140a49f6d8"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:57.777148"], ["updated_at", "2015-03-20 19:03:57.777148"]]
|
782858
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782859
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782860
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1274784391 LIMIT 1[0m
|
782861
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1274784391], ["username", "billy_32"], ["access_token", "12a84db774f43a80b04981a25b8c9275"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:57.779400"], ["updated_at", "2015-03-20 19:03:57.779400"]]
|
782862
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782864
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -270319291 LIMIT 1[0m
|
782865
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -270319291], ["username", "billy_33"], ["access_token", "5727af591ed517c8fe23b9288c4274d2"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:57.781578"], ["updated_at", "2015-03-20 19:03:57.781578"]]
|
782866
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782867
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782868
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -493801880 LIMIT 1[0m
|
782869
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -493801880], ["username", "billy_34"], ["access_token", "d4088c6f73a023b4688dc3e96d5847eb"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:57.783753"], ["updated_at", "2015-03-20 19:03:57.783753"]]
|
782870
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782871
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782872
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -258931994 LIMIT 1[0m
|
782873
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -258931994], ["username", "billy_35"], ["access_token", "1740ee21e9d014c2d8d4d7b16ab9293f"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:57.785995"], ["updated_at", "2015-03-20 19:03:57.785995"]]
|
782874
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782875
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782876
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474157292 LIMIT 1[0m
|
782877
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -474157292], ["username", "billy_36"], ["access_token", "267a944fb074533286d994f17277c1a3"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:57.788221"], ["updated_at", "2015-03-20 19:03:57.788221"]]
|
782878
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782879
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782880
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1879478939 LIMIT 1[0m
|
782881
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1879478939], ["username", "billy_37"], ["access_token", "5d4dc0f8520529f85ee9cb7d8898c432"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:57.790351"], ["updated_at", "2015-03-20 19:03:57.790351"]]
|
782882
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782883
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782884
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -191716390 LIMIT 1[0m
|
782885
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -191716390], ["username", "billy_38"], ["access_token", "0aee147510f18226842b7bc5cd87eb7b"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:57.792684"], ["updated_at", "2015-03-20 19:03:57.792684"]]
|
782886
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782887
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782888
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1093602060 LIMIT 1[0m
|
782889
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1093602060], ["username", "billy_39"], ["access_token", "28e4b9606b124b42a8eb326f4215c267"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:57.794970"], ["updated_at", "2015-03-20 19:03:57.794970"]]
|
782890
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782892
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1864101964 LIMIT 1[0m
|
782893
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1864101964], ["username", "billy_40"], ["access_token", "a8cfe6ce6d0986996dd4e5a4080deac2"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:57.797293"], ["updated_at", "2015-03-20 19:03:57.797293"]]
|
782894
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782896
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1550739663 LIMIT 1[0m
|
782897
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1550739663], ["username", "billy_41"], ["access_token", "eafca4df53f658e55df43616f5828586"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:57.799814"], ["updated_at", "2015-03-20 19:03:57.799814"]]
|
782898
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782899
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782900
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1766048621 LIMIT 1[0m
|
782901
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1766048621], ["username", "billy_42"], ["access_token", "8223fb4931f097179a878f645f13ff24"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:57.802463"], ["updated_at", "2015-03-20 19:03:57.802463"]]
|
782902
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782903
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
782904
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992250087 LIMIT 1[0m
|
782905
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -992250087], ["username", "billy_43"], ["access_token", "da71d2081ab902a1df05d3f534b7bbd3"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:57.805356"], ["updated_at", "2015-03-20 19:03:57.805356"]]
|
782906
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
782908
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -956871939 LIMIT 1[0m
|
782909
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -956871939], ["username", "billy_44"], ["access_token", "f610794f522f033b0927c85697398ce4"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:57.808562"], ["updated_at", "2015-03-20 19:03:57.808562"]]
|
782910
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782912
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -603692282 LIMIT 1[0m
|
782913
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -603692282], ["username", "billy_45"], ["access_token", "c9cc0795bf00c4c7aa561fd69d13341e"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:57.811351"], ["updated_at", "2015-03-20 19:03:57.811351"]]
|
782914
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782916
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -718915125 LIMIT 1[0m
|
782917
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -718915125], ["username", "billy_46"], ["access_token", "6466462128ed581f0539c35eab0bf078"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:57.813702"], ["updated_at", "2015-03-20 19:03:57.813702"]]
|
782918
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782919
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782920
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1466791280 LIMIT 1[0m
|
782921
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1466791280], ["username", "billy_47"], ["access_token", "b58b8fa39308d8a01e8da8d7cc21a67b"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:57.816119"], ["updated_at", "2015-03-20 19:03:57.816119"]]
|
782922
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782923
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
782924
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -119743448 LIMIT 1[0m
|
782925
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -119743448], ["username", "billy_48"], ["access_token", "059afc7445381c7916a12580a14f89d3"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:57.818645"], ["updated_at", "2015-03-20 19:03:57.818645"]]
|
782926
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782927
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782928
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1270968101 LIMIT 1[0m
|
782929
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1270968101], ["username", "billy_49"], ["access_token", "4d39a7c3d7a38d62ce13969b9b8d2c4b"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:57.821125"], ["updated_at", "2015-03-20 19:03:57.821125"]]
|
782930
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
782931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
782932
|
+
[1m[36m (0.1ms)[0m [1mSELECT 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))[0m
|
782933
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
782934
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
782935
|
+
[1m[35m (0.1ms)[0m begin transaction
|
782936
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782937
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384772666 LIMIT 1
|
782938
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1384772666], ["username", "jstrav"], ["access_token", "5c1decf8431cea65fe218e6395ef11ce"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:57.835492"], ["updated_at", "2015-03-20 19:03:57.835492"]]
|
782939
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782940
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782941
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1824231167 LIMIT 1
|
782942
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1824231167], ["username", "mary"], ["access_token", "cc3125413252deb39d7cbcc6f06cf575"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:57.838884"], ["updated_at", "2015-03-20 19:03:57.838884"]]
|
782943
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782944
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782945
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -905118582 LIMIT 1
|
782946
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -905118582], ["username", "jstead"], ["access_token", "60a7f07733fc9c758dd717de66fd9b39"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:57.842022"], ["updated_at", "2015-03-20 19:03:57.842022"]]
|
782947
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
782948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
782949
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2026661643 LIMIT 1
|
782950
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2026661643], ["username", "bigbear"], ["access_token", "0b0f3a3ee0ed13499459c95bca07ebd6"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:57.844966"], ["updated_at", "2015-03-20 19:03:57.844966"]]
|
782951
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782952
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782953
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1656511510 LIMIT 1
|
782954
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1656511510], ["username", "billy_00"], ["access_token", "26e1d1f98fe01bdfcee35a707fd38810"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:57.847984"], ["updated_at", "2015-03-20 19:03:57.847984"]]
|
782955
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782956
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
782957
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -106792560 LIMIT 1
|
782958
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -106792560], ["username", "billy_01"], ["access_token", "7dcf915d203eecdab93e6b6b36957790"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:57.883584"], ["updated_at", "2015-03-20 19:03:57.883584"]]
|
782959
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782960
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782961
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1773719839 LIMIT 1
|
782962
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1773719839], ["username", "billy_02"], ["access_token", "e608901eb06324a3d5b6c5dd1eb5e480"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:57.886233"], ["updated_at", "2015-03-20 19:03:57.886233"]]
|
782963
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782964
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782965
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2019354256 LIMIT 1
|
782966
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2019354256], ["username", "billy_03"], ["access_token", "fdb954dd2b2586dd7142d98aeced43d6"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:57.888583"], ["updated_at", "2015-03-20 19:03:57.888583"]]
|
782967
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782968
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782969
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -139106858 LIMIT 1
|
782970
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -139106858], ["username", "billy_04"], ["access_token", "2cf6af84c4fecb40a5e4cbe0999b0a00"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:57.891004"], ["updated_at", "2015-03-20 19:03:57.891004"]]
|
782971
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782972
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782973
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1069052173 LIMIT 1
|
782974
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1069052173], ["username", "billy_05"], ["access_token", "03becc57ce6e45f600a14b405d0080d9"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:57.893413"], ["updated_at", "2015-03-20 19:03:57.893413"]]
|
782975
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782976
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782977
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -327353732 LIMIT 1
|
782978
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -327353732], ["username", "billy_06"], ["access_token", "9d39c73e590172aea8af1640762d2b85"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:57.896000"], ["updated_at", "2015-03-20 19:03:57.896000"]]
|
782979
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782980
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
782981
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1425591859 LIMIT 1
|
782982
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1425591859], ["username", "billy_07"], ["access_token", "32dbd8468682542723337259c380da4c"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:57.898636"], ["updated_at", "2015-03-20 19:03:57.898636"]]
|
782983
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782984
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782985
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -329658292 LIMIT 1
|
782986
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -329658292], ["username", "billy_08"], ["access_token", "19a128159707a9351520474cd09bb958"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:57.901344"], ["updated_at", "2015-03-20 19:03:57.901344"]]
|
782987
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782988
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782989
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730022854 LIMIT 1
|
782990
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1730022854], ["username", "billy_09"], ["access_token", "d64563c69556046167ab591d75993188"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:57.904072"], ["updated_at", "2015-03-20 19:03:57.904072"]]
|
782991
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782992
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782993
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -852523521 LIMIT 1
|
782994
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -852523521], ["username", "billy_10"], ["access_token", "1b75b817cd4660d1f57cf616c7cb132a"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:57.906747"], ["updated_at", "2015-03-20 19:03:57.906747"]]
|
782995
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
782996
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
782997
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1080187450 LIMIT 1
|
782998
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1080187450], ["username", "billy_11"], ["access_token", "0df06a64dc3be688eb00f820b74434b4"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:57.909224"], ["updated_at", "2015-03-20 19:03:57.909224"]]
|
782999
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783001
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1798050740 LIMIT 1
|
783002
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1798050740], ["username", "billy_12"], ["access_token", "985979ca7911f626e903f66e4f610c12"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:57.911676"], ["updated_at", "2015-03-20 19:03:57.911676"]]
|
783003
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783005
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2097018781 LIMIT 1
|
783006
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2097018781], ["username", "billy_13"], ["access_token", "b7c18faed7a28b7a7dade31e4f5400c6"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:57.914302"], ["updated_at", "2015-03-20 19:03:57.914302"]]
|
783007
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783009
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -14608631 LIMIT 1
|
783010
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -14608631], ["username", "billy_14"], ["access_token", "3a36fd6d39008661d6887533e035a105"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:57.917032"], ["updated_at", "2015-03-20 19:03:57.917032"]]
|
783011
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783012
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783013
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1706306570 LIMIT 1
|
783014
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1706306570], ["username", "billy_15"], ["access_token", "5b7bd94ab44d5e2df08bbd6a41aeb2a6"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:57.919791"], ["updated_at", "2015-03-20 19:03:57.919791"]]
|
783015
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783016
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783017
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1808565034 LIMIT 1
|
783018
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1808565034], ["username", "billy_16"], ["access_token", "003ff2bfbda9c8af870cc0029605f08a"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:57.922496"], ["updated_at", "2015-03-20 19:03:57.922496"]]
|
783019
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783020
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783021
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1170660645 LIMIT 1
|
783022
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1170660645], ["username", "billy_17"], ["access_token", "6fabf35009ef0500f7f21c7176ebed06"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:57.925125"], ["updated_at", "2015-03-20 19:03:57.925125"]]
|
783023
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783024
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783025
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -974549992 LIMIT 1
|
783026
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -974549992], ["username", "billy_18"], ["access_token", "0d2168e47923e7b4e2768ac4f5f6e1c2"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:57.928144"], ["updated_at", "2015-03-20 19:03:57.928144"]]
|
783027
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783028
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783029
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -869207513 LIMIT 1
|
783030
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -869207513], ["username", "billy_19"], ["access_token", "c164aedcf52789e00bddb682e1d1839f"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:57.930915"], ["updated_at", "2015-03-20 19:03:57.930915"]]
|
783031
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783033
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1483529051 LIMIT 1
|
783034
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1483529051], ["username", "billy_20"], ["access_token", "faea82ae6b3b66a846ff2c3b0e33de9d"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:57.933692"], ["updated_at", "2015-03-20 19:03:57.933692"]]
|
783035
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783036
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783037
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480121329 LIMIT 1
|
783038
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1480121329], ["username", "billy_21"], ["access_token", "900941949bb52592f3accdc2ba0e184e"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:57.936327"], ["updated_at", "2015-03-20 19:03:57.936327"]]
|
783039
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783040
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783041
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1537805528 LIMIT 1
|
783042
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1537805528], ["username", "billy_22"], ["access_token", "2cb0ee8f86289ed174d42ccdfffda15b"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:57.939468"], ["updated_at", "2015-03-20 19:03:57.939468"]]
|
783043
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783045
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1610545577 LIMIT 1
|
783046
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1610545577], ["username", "billy_23"], ["access_token", "631e4f243615529697cae3b77aec832d"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:57.942451"], ["updated_at", "2015-03-20 19:03:57.942451"]]
|
783047
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783048
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783049
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -730777395 LIMIT 1
|
783050
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -730777395], ["username", "billy_24"], ["access_token", "a64d83c7d05252994c92eb83b5a89ca0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:57.944931"], ["updated_at", "2015-03-20 19:03:57.944931"]]
|
783051
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783052
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783053
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -54226410 LIMIT 1
|
783054
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -54226410], ["username", "billy_25"], ["access_token", "342b2aa40c069a61c23201c3451e5af4"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:57.947377"], ["updated_at", "2015-03-20 19:03:57.947377"]]
|
783055
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783056
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783057
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1020729661 LIMIT 1
|
783058
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1020729661], ["username", "billy_26"], ["access_token", "a74ae5af25523bce375eebe9c3e7ab44"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:57.950150"], ["updated_at", "2015-03-20 19:03:57.950150"]]
|
783059
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783061
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -984705153 LIMIT 1
|
783062
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -984705153], ["username", "billy_27"], ["access_token", "81d92541ec66393b8380637777be867d"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:57.952572"], ["updated_at", "2015-03-20 19:03:57.952572"]]
|
783063
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783064
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783065
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -509250473 LIMIT 1
|
783066
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -509250473], ["username", "billy_28"], ["access_token", "97dbf40754447ac80a0d2c7c7916d1d7"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:57.954950"], ["updated_at", "2015-03-20 19:03:57.954950"]]
|
783067
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783068
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783069
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -853934886 LIMIT 1
|
783070
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -853934886], ["username", "billy_29"], ["access_token", "4ec49635dc0a2b4f396d2b99c125b57b"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:57.957463"], ["updated_at", "2015-03-20 19:03:57.957463"]]
|
783071
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783073
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1546508602 LIMIT 1
|
783074
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1546508602], ["username", "billy_30"], ["access_token", "3711628ad46d10afeede0ea59fa360e0"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:57.960116"], ["updated_at", "2015-03-20 19:03:57.960116"]]
|
783075
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783076
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783077
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1659876356 LIMIT 1
|
783078
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1659876356], ["username", "billy_31"], ["access_token", "556ac9e24e8cc858c9cc80452e42f1bd"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:57.962791"], ["updated_at", "2015-03-20 19:03:57.962791"]]
|
783079
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783080
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783081
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1496684643 LIMIT 1
|
783082
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1496684643], ["username", "billy_32"], ["access_token", "fe6fa508b585cad37b277f4546cdf10c"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:57.965422"], ["updated_at", "2015-03-20 19:03:57.965422"]]
|
783083
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783084
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783085
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -936677920 LIMIT 1
|
783086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -936677920], ["username", "billy_33"], ["access_token", "2e287e835d558d46600e4687179d7b84"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:57.967973"], ["updated_at", "2015-03-20 19:03:57.967973"]]
|
783087
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783088
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783089
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -384508996 LIMIT 1
|
783090
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -384508996], ["username", "billy_34"], ["access_token", "60366964107128f77acc701af239b3ec"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:57.970694"], ["updated_at", "2015-03-20 19:03:57.970694"]]
|
783091
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783092
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783093
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -492203860 LIMIT 1
|
783094
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -492203860], ["username", "billy_35"], ["access_token", "20a1e4b9b4912e431eef49fb70ca77e7"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:57.973403"], ["updated_at", "2015-03-20 19:03:57.973403"]]
|
783095
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783096
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783097
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1831776341 LIMIT 1
|
783098
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1831776341], ["username", "billy_36"], ["access_token", "229d8eb9c30a2a2ada8c83526e7e33d5"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:57.976219"], ["updated_at", "2015-03-20 19:03:57.976219"]]
|
783099
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783100
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783101
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1153175069 LIMIT 1
|
783102
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1153175069], ["username", "billy_37"], ["access_token", "b21d2959f9d2bef62ba135fcea5bfc22"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:57.978946"], ["updated_at", "2015-03-20 19:03:57.978946"]]
|
783103
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783105
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1462713276 LIMIT 1
|
783106
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1462713276], ["username", "billy_38"], ["access_token", "7a75a140bfe03a1b2b0dddab946f7a5f"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:57.981638"], ["updated_at", "2015-03-20 19:03:57.981638"]]
|
783107
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783108
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783109
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1813257878 LIMIT 1
|
783110
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1813257878], ["username", "billy_39"], ["access_token", "72d240412e7d6e51f1a714a390b4405d"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:57.984308"], ["updated_at", "2015-03-20 19:03:57.984308"]]
|
783111
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783112
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783113
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -547718059 LIMIT 1
|
783114
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -547718059], ["username", "billy_40"], ["access_token", "17183c90322de5d2efb886635df3e8fd"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:57.986806"], ["updated_at", "2015-03-20 19:03:57.986806"]]
|
783115
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783117
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1538255836 LIMIT 1
|
783118
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1538255836], ["username", "billy_41"], ["access_token", "d6aa51473113632a008a894ab988dc64"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:57.989381"], ["updated_at", "2015-03-20 19:03:57.989381"]]
|
783119
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783121
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -845299537 LIMIT 1
|
783122
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -845299537], ["username", "billy_42"], ["access_token", "d08f33c26118e18cdeabb94cbea02ab0"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:57.992063"], ["updated_at", "2015-03-20 19:03:57.992063"]]
|
783123
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783124
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783125
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1708562230 LIMIT 1
|
783126
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1708562230], ["username", "billy_43"], ["access_token", "56806c6f31373b8a818a54ef9046485d"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:57.994729"], ["updated_at", "2015-03-20 19:03:57.994729"]]
|
783127
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783128
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783129
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -80336260 LIMIT 1
|
783130
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -80336260], ["username", "billy_44"], ["access_token", "0a5e23afcd1da1d27f4701b362a93ffb"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:57.997298"], ["updated_at", "2015-03-20 19:03:57.997298"]]
|
783131
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783132
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783133
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -247212976 LIMIT 1
|
783134
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -247212976], ["username", "billy_45"], ["access_token", "b1796ba7c58af4c7f8e3ede60a8b194b"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:57.999873"], ["updated_at", "2015-03-20 19:03:57.999873"]]
|
783135
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783136
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783137
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -237037256 LIMIT 1
|
783138
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -237037256], ["username", "billy_46"], ["access_token", "36b5877a1b94fe91412b07337daca1a2"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:58.002515"], ["updated_at", "2015-03-20 19:03:58.002515"]]
|
783139
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783140
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783141
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -771467445 LIMIT 1
|
783142
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -771467445], ["username", "billy_47"], ["access_token", "fa242bdde83102728f89b1814e6664d5"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:58.005084"], ["updated_at", "2015-03-20 19:03:58.005084"]]
|
783143
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783144
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783145
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -369530634 LIMIT 1
|
783146
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -369530634], ["username", "billy_48"], ["access_token", "1281b4183c69985753d1896a4a850743"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:58.007645"], ["updated_at", "2015-03-20 19:03:58.007645"]]
|
783147
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783148
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783149
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -339832650 LIMIT 1
|
783150
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -339832650], ["username", "billy_49"], ["access_token", "036d779c5f63b75d0c281b5971a318c1"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:58.010127"], ["updated_at", "2015-03-20 19:03:58.010127"]]
|
783151
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783152
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783153
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
|
783154
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC[0m
|
783155
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783156
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783158
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783159
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -499774153 LIMIT 1
|
783160
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -499774153], ["username", "jstrav"], ["access_token", "68888cdf48af909d4cd7b043677379d4"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:03:58.021563"], ["updated_at", "2015-03-20 19:03:58.021563"]]
|
783161
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783162
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783163
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1660327515 LIMIT 1
|
783164
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1660327515], ["username", "mary"], ["access_token", "88aac73d703153f51f85c29e2fbf4940"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:03:58.024922"], ["updated_at", "2015-03-20 19:03:58.024922"]]
|
783165
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783166
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783167
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1502938065 LIMIT 1
|
783168
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1502938065], ["username", "jstead"], ["access_token", "e782e20d37739339fea794fc0faef4a2"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:03:58.027809"], ["updated_at", "2015-03-20 19:03:58.027809"]]
|
783169
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783170
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783171
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -623068814 LIMIT 1
|
783172
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -623068814], ["username", "bigbear"], ["access_token", "c747c5c09b7049a7886bdbafc07f98af"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:03:58.030519"], ["updated_at", "2015-03-20 19:03:58.030519"]]
|
783173
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783174
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783175
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1979208494 LIMIT 1
|
783176
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1979208494], ["username", "billy_00"], ["access_token", "1d4870d6a960df503ef6c09c04692e84"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:03:58.033148"], ["updated_at", "2015-03-20 19:03:58.033148"]]
|
783177
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783178
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783179
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384197546 LIMIT 1
|
783180
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1384197546], ["username", "billy_01"], ["access_token", "1f43b9e4623fbf4f432fe7ac1303fa10"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:03:58.035945"], ["updated_at", "2015-03-20 19:03:58.035945"]]
|
783181
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783182
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783183
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1890643258 LIMIT 1
|
783184
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1890643258], ["username", "billy_02"], ["access_token", "507ffaa25fa8d5d811dd24156edf97c1"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:03:58.038725"], ["updated_at", "2015-03-20 19:03:58.038725"]]
|
783185
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783186
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783187
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -24788465 LIMIT 1
|
783188
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -24788465], ["username", "billy_03"], ["access_token", "6ce79d516e59d154c8581d38bb9ede28"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:03:58.041958"], ["updated_at", "2015-03-20 19:03:58.041958"]]
|
783189
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783190
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783191
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -228133881 LIMIT 1
|
783192
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -228133881], ["username", "billy_04"], ["access_token", "5d5418d57a68d73754ffb6a108ef0ee2"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:03:58.044421"], ["updated_at", "2015-03-20 19:03:58.044421"]]
|
783193
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783194
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783195
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1248729480 LIMIT 1
|
783196
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1248729480], ["username", "billy_05"], ["access_token", "67154c6ec9bae63894b3ba23e9bd2d02"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:03:58.046586"], ["updated_at", "2015-03-20 19:03:58.046586"]]
|
783197
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783198
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783199
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -226209248 LIMIT 1
|
783200
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -226209248], ["username", "billy_06"], ["access_token", "9f85a458949e4e8799576fae2b63e84d"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:03:58.048710"], ["updated_at", "2015-03-20 19:03:58.048710"]]
|
783201
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783202
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783203
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -624284152 LIMIT 1
|
783204
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -624284152], ["username", "billy_07"], ["access_token", "dc20ec866dc35366dcacaadc9a3ef8d4"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:03:58.050860"], ["updated_at", "2015-03-20 19:03:58.050860"]]
|
783205
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783206
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783207
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -958158508 LIMIT 1
|
783208
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -958158508], ["username", "billy_08"], ["access_token", "9878ee5c07c24f2910b37f02fab60859"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:03:58.053087"], ["updated_at", "2015-03-20 19:03:58.053087"]]
|
783209
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783210
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783211
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1281521935 LIMIT 1
|
783212
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1281521935], ["username", "billy_09"], ["access_token", "ebf96538394ad71fc126d8ce9794518f"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:03:58.055385"], ["updated_at", "2015-03-20 19:03:58.055385"]]
|
783213
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783215
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -371190668 LIMIT 1
|
783216
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -371190668], ["username", "billy_10"], ["access_token", "f7ad4b16b3a3600be05705512e8749c0"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:03:58.057566"], ["updated_at", "2015-03-20 19:03:58.057566"]]
|
783217
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783218
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783219
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -453665267 LIMIT 1
|
783220
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -453665267], ["username", "billy_11"], ["access_token", "2d0b865577ffd99dcd1e641101978637"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:03:58.059774"], ["updated_at", "2015-03-20 19:03:58.059774"]]
|
783221
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783222
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783223
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -491694246 LIMIT 1
|
783224
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -491694246], ["username", "billy_12"], ["access_token", "15beea902910b4d20bd0183cd6806cf1"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:03:58.061957"], ["updated_at", "2015-03-20 19:03:58.061957"]]
|
783225
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783226
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783227
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1327663734 LIMIT 1
|
783228
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1327663734], ["username", "billy_13"], ["access_token", "b3cccddec22c404fbf210be9559c7d0c"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:03:58.064475"], ["updated_at", "2015-03-20 19:03:58.064475"]]
|
783229
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783230
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783231
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1150882725 LIMIT 1
|
783232
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1150882725], ["username", "billy_14"], ["access_token", "b5db76f94683a2479a84bceb0945518c"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:03:58.066897"], ["updated_at", "2015-03-20 19:03:58.066897"]]
|
783233
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783234
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783235
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1520070051 LIMIT 1
|
783236
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1520070051], ["username", "billy_15"], ["access_token", "4e458ba8d99f2dbc6f4a764d168ea4dd"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:03:58.069126"], ["updated_at", "2015-03-20 19:03:58.069126"]]
|
783237
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783238
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783239
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -321933638 LIMIT 1
|
783240
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -321933638], ["username", "billy_16"], ["access_token", "d4d10a87ea0f2bda5ca575c12d263c4a"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:03:58.071332"], ["updated_at", "2015-03-20 19:03:58.071332"]]
|
783241
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783242
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783243
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1977941716 LIMIT 1
|
783244
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1977941716], ["username", "billy_17"], ["access_token", "0916a8069a4ff575012111f98e4676bb"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:03:58.073649"], ["updated_at", "2015-03-20 19:03:58.073649"]]
|
783245
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783246
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783247
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1015150759 LIMIT 1
|
783248
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1015150759], ["username", "billy_18"], ["access_token", "70d5a784c0a999fdb1ca5006a3fa1367"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:03:58.076022"], ["updated_at", "2015-03-20 19:03:58.076022"]]
|
783249
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783250
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783251
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1496132740 LIMIT 1
|
783252
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1496132740], ["username", "billy_19"], ["access_token", "3b2439e493648a8dc78be8ba7085c0b1"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:03:58.078398"], ["updated_at", "2015-03-20 19:03:58.078398"]]
|
783253
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783254
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783255
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -860506869 LIMIT 1
|
783256
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -860506869], ["username", "billy_20"], ["access_token", "1feb3a24bf2d87c492bf484b2777259c"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:03:58.080816"], ["updated_at", "2015-03-20 19:03:58.080816"]]
|
783257
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783258
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783259
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1495201563 LIMIT 1
|
783260
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1495201563], ["username", "billy_21"], ["access_token", "a6c84c0c45d1d32b3f7ef1c07c60f147"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:03:58.083335"], ["updated_at", "2015-03-20 19:03:58.083335"]]
|
783261
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783262
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783263
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1100686147 LIMIT 1
|
783264
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1100686147], ["username", "billy_22"], ["access_token", "110ec7482ba6799302ae44be609a0a38"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:03:58.085988"], ["updated_at", "2015-03-20 19:03:58.085988"]]
|
783265
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783266
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783267
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1393605409 LIMIT 1
|
783268
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1393605409], ["username", "billy_23"], ["access_token", "4c1d7b92f853f4506db397991c80c943"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:03:58.088450"], ["updated_at", "2015-03-20 19:03:58.088450"]]
|
783269
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783270
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783271
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -372207757 LIMIT 1
|
783272
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -372207757], ["username", "billy_24"], ["access_token", "3b6933cafb14d8cc4387475199178260"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:03:58.091066"], ["updated_at", "2015-03-20 19:03:58.091066"]]
|
783273
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783275
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -389635713 LIMIT 1
|
783276
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -389635713], ["username", "billy_25"], ["access_token", "d65b564dbef51cec7dbe66660b3db4ee"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:03:58.093289"], ["updated_at", "2015-03-20 19:03:58.093289"]]
|
783277
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783278
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783279
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1412228904 LIMIT 1
|
783280
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1412228904], ["username", "billy_26"], ["access_token", "2af11847d4e96e01944872ef8bd9a6ed"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:03:58.095400"], ["updated_at", "2015-03-20 19:03:58.095400"]]
|
783281
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783282
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783283
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -265601318 LIMIT 1
|
783284
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -265601318], ["username", "billy_27"], ["access_token", "678cc2ba668a63e3b3a92aa8a740fec6"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:03:58.097585"], ["updated_at", "2015-03-20 19:03:58.097585"]]
|
783285
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783286
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783287
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -730511554 LIMIT 1
|
783288
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -730511554], ["username", "billy_28"], ["access_token", "37e6c573541cc318e97d1c7ddee70319"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:03:58.099839"], ["updated_at", "2015-03-20 19:03:58.099839"]]
|
783289
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783290
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783291
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -644121296 LIMIT 1
|
783292
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -644121296], ["username", "billy_29"], ["access_token", "23f543b61c8a98dc608acf6e4a834d0e"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:03:58.102138"], ["updated_at", "2015-03-20 19:03:58.102138"]]
|
783293
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783295
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -29995531 LIMIT 1
|
783296
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -29995531], ["username", "billy_30"], ["access_token", "93516880de0783cb94c14806d8fb2899"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:03:58.104400"], ["updated_at", "2015-03-20 19:03:58.104400"]]
|
783297
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783298
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783299
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -739427461 LIMIT 1
|
783300
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -739427461], ["username", "billy_31"], ["access_token", "9ae596c520ec20493df2ff5edbb58cd3"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:03:58.106745"], ["updated_at", "2015-03-20 19:03:58.106745"]]
|
783301
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783302
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783303
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -90705725 LIMIT 1
|
783304
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -90705725], ["username", "billy_32"], ["access_token", "2f02619d8b927923681bdd42f89ea449"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:03:58.109362"], ["updated_at", "2015-03-20 19:03:58.109362"]]
|
783305
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783306
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783307
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197608386 LIMIT 1
|
783308
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1197608386], ["username", "billy_33"], ["access_token", "3caa15aa3af949fb925071265ebc13a8"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:03:58.111807"], ["updated_at", "2015-03-20 19:03:58.111807"]]
|
783309
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783310
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783311
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1424511713 LIMIT 1
|
783312
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1424511713], ["username", "billy_34"], ["access_token", "359c81845768e7736ddec504e5ae608a"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:03:58.114204"], ["updated_at", "2015-03-20 19:03:58.114204"]]
|
783313
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783314
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783315
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -99807507 LIMIT 1
|
783316
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -99807507], ["username", "billy_35"], ["access_token", "4842fce7a5abbb48bf158d389f7e04ac"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:03:58.116556"], ["updated_at", "2015-03-20 19:03:58.116556"]]
|
783317
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783319
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -905754148 LIMIT 1
|
783320
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -905754148], ["username", "billy_36"], ["access_token", "8fde5647af49752f4bf39250d99dfa21"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:03:58.118857"], ["updated_at", "2015-03-20 19:03:58.118857"]]
|
783321
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783322
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783323
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1419993214 LIMIT 1
|
783324
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1419993214], ["username", "billy_37"], ["access_token", "25e9788addf7ce599f961e5982eb993b"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:03:58.121138"], ["updated_at", "2015-03-20 19:03:58.121138"]]
|
783325
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783326
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783327
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1855014707 LIMIT 1
|
783328
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1855014707], ["username", "billy_38"], ["access_token", "38e928d3c9050912e4c45199c5bd7acf"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:03:58.123363"], ["updated_at", "2015-03-20 19:03:58.123363"]]
|
783329
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783330
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783331
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1869669806 LIMIT 1
|
783332
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1869669806], ["username", "billy_39"], ["access_token", "5f27dcba03612eb271381d34aba27e98"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:03:58.125634"], ["updated_at", "2015-03-20 19:03:58.125634"]]
|
783333
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783334
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783335
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563532754 LIMIT 1
|
783336
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1563532754], ["username", "billy_40"], ["access_token", "0178112f4d477abbba7d4f8e9e02e711"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:03:58.127981"], ["updated_at", "2015-03-20 19:03:58.127981"]]
|
783337
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783338
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783339
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -955958208 LIMIT 1
|
783340
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -955958208], ["username", "billy_41"], ["access_token", "45a76e70bfa3890c4195a90a15e267fe"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:03:58.130184"], ["updated_at", "2015-03-20 19:03:58.130184"]]
|
783341
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783342
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783343
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1673931555 LIMIT 1
|
783344
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1673931555], ["username", "billy_42"], ["access_token", "2319055df5119b9460bf357e406ceb0d"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:03:58.132343"], ["updated_at", "2015-03-20 19:03:58.132343"]]
|
783345
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783346
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783347
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -148443869 LIMIT 1
|
783348
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -148443869], ["username", "billy_43"], ["access_token", "fe077eedf3e2ba6df222c2d81cad964e"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:03:58.134523"], ["updated_at", "2015-03-20 19:03:58.134523"]]
|
783349
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783350
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783351
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2039724188 LIMIT 1
|
783352
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2039724188], ["username", "billy_44"], ["access_token", "642764f48e7353fe53d13e90d2810602"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:03:58.136652"], ["updated_at", "2015-03-20 19:03:58.136652"]]
|
783353
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783354
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783355
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1480471060 LIMIT 1
|
783356
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1480471060], ["username", "billy_45"], ["access_token", "d2a1458538960a307a95c3fceafaa63c"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:03:58.138883"], ["updated_at", "2015-03-20 19:03:58.138883"]]
|
783357
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783358
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783359
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1384783656 LIMIT 1
|
783360
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1384783656], ["username", "billy_46"], ["access_token", "47d95014d13035e66374d79ce89ab83f"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:03:58.141147"], ["updated_at", "2015-03-20 19:03:58.141147"]]
|
783361
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783362
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783363
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -9744130 LIMIT 1
|
783364
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -9744130], ["username", "billy_47"], ["access_token", "9ed3f9bca533306c46a5378a1344f76c"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:03:58.143343"], ["updated_at", "2015-03-20 19:03:58.143343"]]
|
783365
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783366
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783367
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -612035049 LIMIT 1
|
783368
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -612035049], ["username", "billy_48"], ["access_token", "489609be36aaee803e9bc2f92e3944f1"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:03:58.145490"], ["updated_at", "2015-03-20 19:03:58.145490"]]
|
783369
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783370
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783371
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1405275507 LIMIT 1
|
783372
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1405275507], ["username", "billy_49"], ["access_token", "e96634f1647c8cb6fd31d337facb4eeb"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:03:58.147644"], ["updated_at", "2015-03-20 19:03:58.147644"]]
|
783373
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783374
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783375
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
783376
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
783377
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783378
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783379
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
|
783380
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", 10], ["username", "some_user"], ["access_token", "8d9fd6eb35d1f897975806438a776733"], ["created_at", "2015-03-20 19:03:58.156575"], ["updated_at", "2015-03-20 19:03:58.156575"]]
|
783381
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783382
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["account_id", 1]]
|
783383
|
+
Processing by OpenStax::Accounts::SessionsController#destroy as HTML
|
783384
|
+
Redirected to http://test.host/
|
783385
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
783386
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
783387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783389
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1[0m
|
783390
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "53c169bc3aded733975b6648e49f75cb"], ["created_at", "2015-03-20 19:03:58.184216"], ["updated_at", "2015-03-20 19:03:58.184216"]]
|
783391
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783392
|
+
Processing by OpenStax::Accounts::SessionsController#new as HTML
|
783393
|
+
Redirected to http://test.host/accounts/dev/accounts
|
783394
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
783395
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
783396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783398
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1[0m
|
783399
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 10], ["username", "some_user"], ["access_token", "baf4841a252d73e9d11fbfc1a7afac09"], ["created_at", "2015-03-20 19:03:58.193691"], ["updated_at", "2015-03-20 19:03:58.193691"]]
|
783400
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783401
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
783402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783404
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1[0m
|
783405
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "8060c25204bf4bb79aa9c7e5280df11c"], ["created_at", "2015-03-20 19:03:58.196981"], ["updated_at", "2015-03-20 19:03:58.196981"]]
|
783406
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["account_id", 1], ["created_at", "2015-03-20 19:03:58.203547"], ["updated_at", "2015-03-20 19:03:58.203547"]]
|
783409
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783410
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["account_id", 1]]
|
783411
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
783412
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783413
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783414
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1[0m
|
783415
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "126458935592da07a331fc7bd287a6f0"], ["created_at", "2015-03-20 19:03:58.600377"], ["updated_at", "2015-03-20 19:03:58.600377"]]
|
783416
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783418
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["account_id", 1], ["created_at", "2015-03-20 19:03:58.602308"], ["updated_at", "2015-03-20 19:03:58.602308"]]
|
783419
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783420
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["account_id", 1]]
|
783421
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
783422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783423
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783424
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1[0m
|
783425
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "b0f948d6e5c601983c9fd6aa451776f5"], ["created_at", "2015-03-20 19:03:59.055033"], ["updated_at", "2015-03-20 19:03:59.055033"]]
|
783426
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783427
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783428
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["account_id", 1], ["created_at", "2015-03-20 19:03:59.056733"], ["updated_at", "2015-03-20 19:03:59.056733"]]
|
783429
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783430
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
783431
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783432
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783433
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.2ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
783434
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", 1], ["username", "some_user"], ["access_token", "346122b37368d227839fc46dd7444a87"], ["created_at", "2015-03-20 19:03:59.483329"], ["updated_at", "2015-03-20 19:03:59.483329"]]
|
783435
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783436
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783437
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:59.485608"], ["updated_at", "2015-03-20 19:03:59.485608"]]
|
783438
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783439
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
783440
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["id", 1]]
|
783441
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
783442
|
+
[1m[36mOpenStax::Accounts::Account Load (0.0ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["id", 1]]
|
783443
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
783444
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783445
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783446
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783447
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
783448
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", 1], ["username", "some_user"], ["access_token", "65c056fac7b0b1954f698958d86f18aa"], ["created_at", "2015-03-20 19:03:59.885143"], ["updated_at", "2015-03-20 19:03:59.885143"]]
|
783449
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783450
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783451
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 1], ["created_at", "2015-03-20 19:03:59.886906"], ["updated_at", "2015-03-20 19:03:59.886906"]]
|
783452
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783453
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
783454
|
+
[1m[36mOpenStax::Accounts::Account Load (0.0ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."id" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["id", 1]]
|
783455
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
783456
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783457
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783458
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
783459
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783460
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783461
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1858323117 LIMIT 1
|
783462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1858323117], ["username", "jstrav"], ["access_token", "902e1dd25b88b7b490b7489b4e62179f"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.284983"], ["updated_at", "2015-03-20 19:04:00.284983"]]
|
783463
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783465
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1476847343 LIMIT 1
|
783466
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1476847343], ["username", "mary"], ["access_token", "4703f96356c4addc3b3b84dec8cbc276"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.288031"], ["updated_at", "2015-03-20 19:04:00.288031"]]
|
783467
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783468
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783469
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1755034371 LIMIT 1
|
783470
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1755034371], ["username", "jstead"], ["access_token", "e367ddb65a559fe717133602b3901296"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.290911"], ["updated_at", "2015-03-20 19:04:00.290911"]]
|
783471
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783473
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1563198447 LIMIT 1
|
783474
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1563198447], ["username", "bigbear"], ["access_token", "f196c1ec5d59cb4bb223aeee6b350e24"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.293633"], ["updated_at", "2015-03-20 19:04:00.293633"]]
|
783475
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783476
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783477
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%')
|
783478
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783479
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."first_name" LIKE 'John%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783480
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783482
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783483
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -849619715 LIMIT 1
|
783484
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -849619715], ["username", "jstrav"], ["access_token", "89f1186a2c978e0796d6cfd2485e4923"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.300264"], ["updated_at", "2015-03-20 19:04:00.300264"]]
|
783485
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783486
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783487
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1830409560 LIMIT 1
|
783488
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1830409560], ["username", "mary"], ["access_token", "ecff53b106f703a8bc46a6c6ba719beb"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.303185"], ["updated_at", "2015-03-20 19:04:00.303185"]]
|
783489
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783491
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1044900891 LIMIT 1
|
783492
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1044900891], ["username", "jstead"], ["access_token", "de3111d38fa35c55e98aac23825d2e29"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.306030"], ["updated_at", "2015-03-20 19:04:00.306030"]]
|
783493
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783494
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783495
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -233453976 LIMIT 1
|
783496
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -233453976], ["username", "bigbear"], ["access_token", "58885406264b376eff608a6bed275211"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.308742"], ["updated_at", "2015-03-20 19:04:00.308742"]]
|
783497
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783499
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%')
|
783500
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783501
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."full_name" LIKE 'Mary Mighty%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783502
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783503
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783504
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783505
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -94286494 LIMIT 1
|
783506
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -94286494], ["username", "jstrav"], ["access_token", "b9f99ffdbed26ca412412213e16b43e0"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.315421"], ["updated_at", "2015-03-20 19:04:00.315421"]]
|
783507
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783509
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1558349176 LIMIT 1
|
783510
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1558349176], ["username", "mary"], ["access_token", "28989d93b1bb77129f50c2868eb2cf82"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.318407"], ["updated_at", "2015-03-20 19:04:00.318407"]]
|
783511
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783512
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783513
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1739521648 LIMIT 1
|
783514
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1739521648], ["username", "jstead"], ["access_token", "79837be11aa8edfdefb5ab720b72e608"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.321276"], ["updated_at", "2015-03-20 19:04:00.321276"]]
|
783515
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783516
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783517
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -551423965 LIMIT 1
|
783518
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -551423965], ["username", "bigbear"], ["access_token", "1e34e928041861c0b1b97c1f6c898d3e"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.323830"], ["updated_at", "2015-03-20 19:04:00.323830"]]
|
783519
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783520
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783521
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts"
|
783522
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783523
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
|
783524
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783526
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783527
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -168509459 LIMIT 1
|
783528
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -168509459], ["username", "jstrav"], ["access_token", "b4137ed33bae16e2abdfd03df88d4e2a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.330257"], ["updated_at", "2015-03-20 19:04:00.330257"]]
|
783529
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783530
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783531
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1095245196 LIMIT 1
|
783532
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1095245196], ["username", "mary"], ["access_token", "b18fddd6d3c73acfacc2843efb0ca831"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.332940"], ["updated_at", "2015-03-20 19:04:00.332940"]]
|
783533
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783535
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416980685 LIMIT 1
|
783536
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1416980685], ["username", "jstead"], ["access_token", "3a6ad54687250ae600e2c4149b4f3e5f"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.335567"], ["updated_at", "2015-03-20 19:04:00.335567"]]
|
783537
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783539
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -689162189 LIMIT 1
|
783540
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -689162189], ["username", "bigbear"], ["access_token", "b574410fd0f42e53d8880b998dd3492d"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.337994"], ["updated_at", "2015-03-20 19:04:00.337994"]]
|
783541
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783542
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783543
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%')
|
783544
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783545
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'rav%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783546
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783548
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783549
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -323556960 LIMIT 1
|
783550
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -323556960], ["username", "jstrav"], ["access_token", "2b3df45f1c25ad773014622439b8209e"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.343544"], ["updated_at", "2015-03-20 19:04:00.343544"]]
|
783551
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783552
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783553
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112945172 LIMIT 1
|
783554
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1112945172], ["username", "mary"], ["access_token", "8aa8efb6f39b1bde35392c3b7aeb1d5d"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.346402"], ["updated_at", "2015-03-20 19:04:00.346402"]]
|
783555
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783557
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1416202082 LIMIT 1
|
783558
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1416202082], ["username", "jstead"], ["access_token", "c6b5a1bbb62bc5612ee7fdb24dbfceec"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.349196"], ["updated_at", "2015-03-20 19:04:00.349196"]]
|
783559
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783560
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783561
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -215335192 LIMIT 1
|
783562
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -215335192], ["username", "bigbear"], ["access_token", "23030e1a37feb03af64722eaf5aee6f0"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.351949"], ["updated_at", "2015-03-20 19:04:00.351949"]]
|
783563
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783565
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" LIKE 'jst%')
|
783566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783567
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ("openstax_accounts_accounts"."username" LIKE 'jst%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783568
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783569
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783571
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -77271420 LIMIT 1
|
783572
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -77271420], ["username", "jstrav"], ["access_token", "1492a48cacb6f380e45aa048c9df3f51"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.358862"], ["updated_at", "2015-03-20 19:04:00.358862"]]
|
783573
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783574
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783575
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1191980278 LIMIT 1
|
783576
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1191980278], ["username", "mary"], ["access_token", "e826af5e6d3467c64334615ea92d79ec"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.361817"], ["updated_at", "2015-03-20 19:04:00.361817"]]
|
783577
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783579
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370835751 LIMIT 1
|
783580
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -370835751], ["username", "jstead"], ["access_token", "7081ee0b957628503c7f915e9b7d1f0b"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.364882"], ["updated_at", "2015-03-20 19:04:00.364882"]]
|
783581
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783582
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783583
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1956934833 LIMIT 1
|
783584
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1956934833], ["username", "bigbear"], ["access_token", "218ed6688c679bd6c44e9ebd31afaacc"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.367615"], ["updated_at", "2015-03-20 19:04:00.367615"]]
|
783585
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783587
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')
|
783588
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783589
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783590
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783591
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783592
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783593
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1162097023 LIMIT 1
|
783594
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1162097023], ["username", "jstrav"], ["access_token", "72628a59ccbf349e49d383e89d3a145a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.374020"], ["updated_at", "2015-03-20 19:04:00.374020"]]
|
783595
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783596
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783597
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -805253127 LIMIT 1
|
783598
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -805253127], ["username", "mary"], ["access_token", "6d98fbe7932660ecca3da13458856f72"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.377295"], ["updated_at", "2015-03-20 19:04:00.377295"]]
|
783599
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783600
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783601
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -44439528 LIMIT 1
|
783602
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -44439528], ["username", "jstead"], ["access_token", "cdbe3b3ba235d4307ffa77b0c29f8043"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.380213"], ["updated_at", "2015-03-20 19:04:00.380213"]]
|
783603
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783605
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1158915944 LIMIT 1
|
783606
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1158915944], ["username", "bigbear"], ["access_token", "f6e9d52ee7d677b1c594a824ecef7f76"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.382844"], ["updated_at", "2015-03-20 19:04:00.382844"]]
|
783607
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783608
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783609
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0))
|
783610
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783611
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'jst%') OR ("openstax_accounts_accounts"."first_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'jst%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
|
783612
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783613
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783614
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783615
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -721538395 LIMIT 1
|
783616
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -721538395], ["username", "jstrav"], ["access_token", "3fd46cfd1df82552234b96e660d63d08"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.389405"], ["updated_at", "2015-03-20 19:04:00.389405"]]
|
783617
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783618
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783619
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1971143506 LIMIT 1
|
783620
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1971143506], ["username", "mary"], ["access_token", "d9665ba8678d2df559e6e8bdbb0e6cb6"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.392147"], ["updated_at", "2015-03-20 19:04:00.392147"]]
|
783621
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783622
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783623
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1709732975 LIMIT 1
|
783624
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1709732975], ["username", "jstead"], ["access_token", "babd6f1b0661777abcb17e0ddde1a8f2"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.394852"], ["updated_at", "2015-03-20 19:04:00.394852"]]
|
783625
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783627
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -298264685 LIMIT 1
|
783628
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -298264685], ["username", "bigbear"], ["access_token", "2784d8b46c7798f3361dd0b00799011d"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.397115"], ["updated_at", "2015-03-20 19:04:00.397115"]]
|
783629
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783631
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%' OR "openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%' OR "openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%' OR "openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%' OR "openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0))
|
783632
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783633
|
+
[1m[35mOpenStax::Accounts::Account Load (0.2ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%' OR "openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%' OR "openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%' OR "openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%' OR "openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0 OR "openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
|
783634
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783635
|
+
[1m[35m (0.1ms)[0m begin transaction
|
783636
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783637
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -19876728 LIMIT 1
|
783638
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -19876728], ["username", "jstrav"], ["access_token", "91d33b27a8678388d8325c302ccb9504"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.403745"], ["updated_at", "2015-03-20 19:04:00.403745"]]
|
783639
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783640
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783641
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -552324003 LIMIT 1
|
783642
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -552324003], ["username", "mary"], ["access_token", "ec533882ea5ac36906fb60d751be652f"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.406501"], ["updated_at", "2015-03-20 19:04:00.406501"]]
|
783643
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783644
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783645
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -630867191 LIMIT 1
|
783646
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -630867191], ["username", "jstead"], ["access_token", "993f739a1febfdf0fbf3e17656ec4ffe"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.409230"], ["updated_at", "2015-03-20 19:04:00.409230"]]
|
783647
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783648
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783649
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -675944640 LIMIT 1
|
783650
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -675944640], ["username", "bigbear"], ["access_token", "1346e50a07066c011bfe5e1c62ab9d38"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.412389"], ["updated_at", "2015-03-20 19:04:00.412389"]]
|
783651
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783652
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783653
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0))
|
783654
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783655
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ((((("openstax_accounts_accounts"."username" LIKE 'john%') OR ("openstax_accounts_accounts"."first_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'john%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) AND ((((("openstax_accounts_accounts"."username" LIKE 'mighty%') OR ("openstax_accounts_accounts"."first_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."last_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."full_name" LIKE 'mighty%')) OR ("openstax_accounts_accounts"."openstax_uid" = 0)) ORDER BY "openstax_accounts_accounts"."username" ASC
|
783656
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783657
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783658
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783659
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1578569997 LIMIT 1
|
783660
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1578569997], ["username", "jstrav"], ["access_token", "52faf7c38aa800bd3c7e252abfaae3d6"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.419445"], ["updated_at", "2015-03-20 19:04:00.419445"]]
|
783661
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783662
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783663
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -16044988 LIMIT 1
|
783664
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -16044988], ["username", "mary"], ["access_token", "803041b3824778bb5dec691a27eef38a"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.422214"], ["updated_at", "2015-03-20 19:04:00.422214"]]
|
783665
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783667
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1621315694 LIMIT 1
|
783668
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1621315694], ["username", "jstead"], ["access_token", "d4936fe0a871680e17bd04ffb6d044cd"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.424845"], ["updated_at", "2015-03-20 19:04:00.424845"]]
|
783669
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783670
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783671
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205339906 LIMIT 1
|
783672
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -205339906], ["username", "bigbear"], ["access_token", "03a3a9e00b60204d5d03d03dfbc348f2"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.427282"], ["updated_at", "2015-03-20 19:04:00.427282"]]
|
783673
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783674
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783675
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%')
|
783676
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783677
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'ar%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
783678
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
783679
|
+
[1m[35m (0.0ms)[0m begin transaction
|
783680
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783681
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -669986965 LIMIT 1
|
783682
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -669986965], ["username", "jstrav"], ["access_token", "8397bf209728fe05446b1ed242d7d9ee"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.433752"], ["updated_at", "2015-03-20 19:04:00.433752"]]
|
783683
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783684
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783685
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1961179545 LIMIT 1
|
783686
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1961179545], ["username", "mary"], ["access_token", "d5c05424a42ac177deb30df6fbd7f66f"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.436657"], ["updated_at", "2015-03-20 19:04:00.436657"]]
|
783687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783689
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -319069753 LIMIT 1
|
783690
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -319069753], ["username", "jstead"], ["access_token", "787e17a739a3ab8ffdce3ba300ba1eaf"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.439484"], ["updated_at", "2015-03-20 19:04:00.439484"]]
|
783691
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783692
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783693
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1967634542 LIMIT 1
|
783694
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1967634542], ["username", "bigbear"], ["access_token", "d65a2ba572eed81442ee2c71856bbf47"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.442056"], ["updated_at", "2015-03-20 19:04:00.442056"]]
|
783695
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783696
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783697
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1946126441 LIMIT 1
|
783698
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1946126441], ["username", "billy_00"], ["access_token", "2311e0c03d129f0389b717addf44f13b"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.444636"], ["updated_at", "2015-03-20 19:04:00.444636"]]
|
783699
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783700
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783701
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -380042429 LIMIT 1
|
783702
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -380042429], ["username", "billy_01"], ["access_token", "6da53d2c9a65d2281207306a5b9344ce"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.447180"], ["updated_at", "2015-03-20 19:04:00.447180"]]
|
783703
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783704
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783705
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -381366816 LIMIT 1
|
783706
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -381366816], ["username", "billy_02"], ["access_token", "80dccb1faac7d15ce0d37d5eb3a04857"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.449718"], ["updated_at", "2015-03-20 19:04:00.449718"]]
|
783707
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783708
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783709
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1809202236 LIMIT 1
|
783710
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1809202236], ["username", "billy_03"], ["access_token", "a689793d176cdfd5afe33802b6ccf787"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.452377"], ["updated_at", "2015-03-20 19:04:00.452377"]]
|
783711
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783712
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783713
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1712307823 LIMIT 1
|
783714
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1712307823], ["username", "billy_04"], ["access_token", "ffc744ad78ac8128da047ec7b91410e3"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.454972"], ["updated_at", "2015-03-20 19:04:00.454972"]]
|
783715
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783716
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783717
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -810946039 LIMIT 1
|
783718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -810946039], ["username", "billy_05"], ["access_token", "696adb1818103440f8608d8b7dc76d6b"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.457391"], ["updated_at", "2015-03-20 19:04:00.457391"]]
|
783719
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783720
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783721
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -558846498 LIMIT 1
|
783722
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -558846498], ["username", "billy_06"], ["access_token", "d3a84b58ca37e6fc82832dd06972119c"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.460054"], ["updated_at", "2015-03-20 19:04:00.460054"]]
|
783723
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783724
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783725
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -317271392 LIMIT 1
|
783726
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -317271392], ["username", "billy_07"], ["access_token", "8e67afc00d020f735f48e24a4555332a"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.462794"], ["updated_at", "2015-03-20 19:04:00.462794"]]
|
783727
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783729
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -775387432 LIMIT 1
|
783730
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -775387432], ["username", "billy_08"], ["access_token", "c71262656cf225f3d826e9862c9c6fd1"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.465210"], ["updated_at", "2015-03-20 19:04:00.465210"]]
|
783731
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783732
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783733
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -321998333 LIMIT 1
|
783734
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -321998333], ["username", "billy_09"], ["access_token", "5a2f205ac3eca16bf2495e50ff81e6a8"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.467568"], ["updated_at", "2015-03-20 19:04:00.467568"]]
|
783735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783737
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -914864586 LIMIT 1
|
783738
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -914864586], ["username", "billy_10"], ["access_token", "77546e98e70b264b3e366a0c497dc787"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.469939"], ["updated_at", "2015-03-20 19:04:00.469939"]]
|
783739
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783740
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783741
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1542372070 LIMIT 1
|
783742
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1542372070], ["username", "billy_11"], ["access_token", "af0ee76271cb3e64f1fc6299e1abca18"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.472218"], ["updated_at", "2015-03-20 19:04:00.472218"]]
|
783743
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783744
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783745
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1065460945 LIMIT 1
|
783746
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1065460945], ["username", "billy_12"], ["access_token", "11f6c8e59cb57d76970234ab35744d7f"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.474578"], ["updated_at", "2015-03-20 19:04:00.474578"]]
|
783747
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783749
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1146550521 LIMIT 1
|
783750
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1146550521], ["username", "billy_13"], ["access_token", "987800c78fba3f609a6be0d8efc987bf"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.477056"], ["updated_at", "2015-03-20 19:04:00.477056"]]
|
783751
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783752
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783753
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -6821219 LIMIT 1
|
783754
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -6821219], ["username", "billy_14"], ["access_token", "6c8c40a764bb523a8ddb13d624c7e7d5"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.479331"], ["updated_at", "2015-03-20 19:04:00.479331"]]
|
783755
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783757
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1686875298 LIMIT 1
|
783758
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1686875298], ["username", "billy_15"], ["access_token", "89bbb84df1de86144770436ba4a1cf43"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.481627"], ["updated_at", "2015-03-20 19:04:00.481627"]]
|
783759
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783761
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1724921480 LIMIT 1
|
783762
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1724921480], ["username", "billy_16"], ["access_token", "da074349ddcc5c37e98f5baa8b96c57d"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.483923"], ["updated_at", "2015-03-20 19:04:00.483923"]]
|
783763
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783765
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1003110462 LIMIT 1
|
783766
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1003110462], ["username", "billy_17"], ["access_token", "3158e506dd3d80196703b535e50428ec"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.486727"], ["updated_at", "2015-03-20 19:04:00.486727"]]
|
783767
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783768
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783769
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1363034782 LIMIT 1
|
783770
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1363034782], ["username", "billy_18"], ["access_token", "de2587bfd9c77f5d626843d87f065959"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.488994"], ["updated_at", "2015-03-20 19:04:00.488994"]]
|
783771
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783772
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783773
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2040480131 LIMIT 1
|
783774
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2040480131], ["username", "billy_19"], ["access_token", "dfa891babfe997bd2c143640dae91f61"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.491310"], ["updated_at", "2015-03-20 19:04:00.491310"]]
|
783775
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783776
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783777
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -432581727 LIMIT 1
|
783778
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -432581727], ["username", "billy_20"], ["access_token", "38e48edd0ab00e9a8388938677f8fa23"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.493549"], ["updated_at", "2015-03-20 19:04:00.493549"]]
|
783779
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783780
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783781
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -198001380 LIMIT 1
|
783782
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -198001380], ["username", "billy_21"], ["access_token", "71ac74fafce2a3b441b67d14d5248c20"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.495835"], ["updated_at", "2015-03-20 19:04:00.495835"]]
|
783783
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783784
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783785
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1953425306 LIMIT 1
|
783786
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1953425306], ["username", "billy_22"], ["access_token", "92616ddd1c47058240a01b0d700f925b"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.498043"], ["updated_at", "2015-03-20 19:04:00.498043"]]
|
783787
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783788
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783789
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -159024232 LIMIT 1
|
783790
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -159024232], ["username", "billy_23"], ["access_token", "e1a31757f2b2b8860ce5cd3efe29893d"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.500110"], ["updated_at", "2015-03-20 19:04:00.500110"]]
|
783791
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783792
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783793
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1374976812 LIMIT 1
|
783794
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1374976812], ["username", "billy_24"], ["access_token", "75520e6d941210cb092417b9e2924dfe"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.502220"], ["updated_at", "2015-03-20 19:04:00.502220"]]
|
783795
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783797
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1762270972 LIMIT 1
|
783798
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1762270972], ["username", "billy_25"], ["access_token", "85549e8e5fa33300cbb80bdc5634bcdb"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.504307"], ["updated_at", "2015-03-20 19:04:00.504307"]]
|
783799
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783800
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783801
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1185429930 LIMIT 1
|
783802
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1185429930], ["username", "billy_26"], ["access_token", "eb4673d546ef9f34e282082d56121444"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.506371"], ["updated_at", "2015-03-20 19:04:00.506371"]]
|
783803
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783804
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783805
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1522480857 LIMIT 1
|
783806
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1522480857], ["username", "billy_27"], ["access_token", "81537677a3c7725ac95115ddb0118b1c"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.508451"], ["updated_at", "2015-03-20 19:04:00.508451"]]
|
783807
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783809
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -51666722 LIMIT 1
|
783810
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -51666722], ["username", "billy_28"], ["access_token", "ca6bb9088cd8ecd1291c749bdb9767bc"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.510493"], ["updated_at", "2015-03-20 19:04:00.510493"]]
|
783811
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783812
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783813
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1332045948 LIMIT 1
|
783814
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1332045948], ["username", "billy_29"], ["access_token", "b2e7571a300a27959e8c4081ccfac13e"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.512513"], ["updated_at", "2015-03-20 19:04:00.512513"]]
|
783815
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783816
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783817
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -834286338 LIMIT 1
|
783818
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -834286338], ["username", "billy_30"], ["access_token", "d98a8894d0a090c03a8bd03baf4a20cd"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.514605"], ["updated_at", "2015-03-20 19:04:00.514605"]]
|
783819
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783821
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -610752130 LIMIT 1
|
783822
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -610752130], ["username", "billy_31"], ["access_token", "53913696492c74ba6b8410245cd2b6bc"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.516652"], ["updated_at", "2015-03-20 19:04:00.516652"]]
|
783823
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783824
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783825
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1131670417 LIMIT 1
|
783826
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1131670417], ["username", "billy_32"], ["access_token", "78756066773e4b0b44f51937efa39618"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.528639"], ["updated_at", "2015-03-20 19:04:00.528639"]]
|
783827
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783828
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783829
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1487036246 LIMIT 1
|
783830
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1487036246], ["username", "billy_33"], ["access_token", "50690b1691a05d4f5604f664a1f32591"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.530875"], ["updated_at", "2015-03-20 19:04:00.530875"]]
|
783831
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783832
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783833
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2000965945 LIMIT 1
|
783834
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -2000965945], ["username", "billy_34"], ["access_token", "b32d7884ae96d072401362e213e2248f"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.532962"], ["updated_at", "2015-03-20 19:04:00.532962"]]
|
783835
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783836
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783837
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -611701099 LIMIT 1
|
783838
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -611701099], ["username", "billy_35"], ["access_token", "bc29f7da1bdcee7837d7a8813081f5d1"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.535063"], ["updated_at", "2015-03-20 19:04:00.535063"]]
|
783839
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783841
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -613804508 LIMIT 1
|
783842
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -613804508], ["username", "billy_36"], ["access_token", "4802c668273bd4380b5a1d730bfc3f15"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.537204"], ["updated_at", "2015-03-20 19:04:00.537204"]]
|
783843
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783845
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -262663644 LIMIT 1
|
783846
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -262663644], ["username", "billy_37"], ["access_token", "56a20be3380edf8369c8501f40c56c47"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.539350"], ["updated_at", "2015-03-20 19:04:00.539350"]]
|
783847
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783849
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -361655343 LIMIT 1
|
783850
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -361655343], ["username", "billy_38"], ["access_token", "06ae1e299974339c030fe1cb6c3f59ff"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.541544"], ["updated_at", "2015-03-20 19:04:00.541544"]]
|
783851
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783852
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783853
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -370741163 LIMIT 1
|
783854
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -370741163], ["username", "billy_39"], ["access_token", "4ca71798fd52a4350ac0644aaec69992"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.543622"], ["updated_at", "2015-03-20 19:04:00.543622"]]
|
783855
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783856
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783857
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -359489875 LIMIT 1
|
783858
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -359489875], ["username", "billy_40"], ["access_token", "ee7618cd71e41930c8436aeb5fc61c75"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.545781"], ["updated_at", "2015-03-20 19:04:00.545781"]]
|
783859
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783861
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -204143736 LIMIT 1
|
783862
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -204143736], ["username", "billy_41"], ["access_token", "f1b50411d461103b92196e8813508e9d"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.547921"], ["updated_at", "2015-03-20 19:04:00.547921"]]
|
783863
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
783864
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783865
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1213087588 LIMIT 1
|
783866
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1213087588], ["username", "billy_42"], ["access_token", "dfe2e7520a2ff831f0e1a1cf8ddc308a"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.550005"], ["updated_at", "2015-03-20 19:04:00.550005"]]
|
783867
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783868
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783869
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1715421519 LIMIT 1
|
783870
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1715421519], ["username", "billy_43"], ["access_token", "1bcb402b3b33e71288c20044abdcd618"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.552190"], ["updated_at", "2015-03-20 19:04:00.552190"]]
|
783871
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783872
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783873
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1102096926 LIMIT 1
|
783874
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -1102096926], ["username", "billy_44"], ["access_token", "cac072d96f25123a958641439ed98608"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.554373"], ["updated_at", "2015-03-20 19:04:00.554373"]]
|
783875
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783876
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
783877
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -133204635 LIMIT 1
|
783878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["openstax_uid", -133204635], ["username", "billy_45"], ["access_token", "14e7071f4d9df5320059df98fb5ef530"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.556503"], ["updated_at", "2015-03-20 19:04:00.556503"]]
|
783879
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
783880
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
783881
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')
|
783882
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783883
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%') ORDER BY "openstax_accounts_accounts"."username" ASC LIMIT 20 OFFSET 40
|
783884
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_45' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
783885
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
783886
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783887
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783888
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1888825225 LIMIT 1[0m
|
783889
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1888825225], ["username", "jstrav"], ["access_token", "13e2ce89f2c0c6737b0214e02460436a"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.567327"], ["updated_at", "2015-03-20 19:04:00.567327"]]
|
783890
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783892
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -653875343 LIMIT 1[0m
|
783893
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -653875343], ["username", "mary"], ["access_token", "cfe80dda0368eadcb04456d47c64bdc2"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.569845"], ["updated_at", "2015-03-20 19:04:00.569845"]]
|
783894
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783896
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -12440421 LIMIT 1[0m
|
783897
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -12440421], ["username", "jstead"], ["access_token", "ce4e9f9f5affab964d1b19d6bdad70a0"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.572433"], ["updated_at", "2015-03-20 19:04:00.572433"]]
|
783898
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783899
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783900
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1441612353 LIMIT 1[0m
|
783901
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1441612353], ["username", "bigbear"], ["access_token", "b6c77bb39936976ca28ed56813befb51"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.574703"], ["updated_at", "2015-03-20 19:04:00.574703"]]
|
783902
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783903
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783904
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1470890329 LIMIT 1[0m
|
783905
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1470890329], ["username", "billy_00"], ["access_token", "9fa1ae31e81d441ca7f3ae3093dbfddb"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.577164"], ["updated_at", "2015-03-20 19:04:00.577164"]]
|
783906
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783907
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783908
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -74156630 LIMIT 1[0m
|
783909
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -74156630], ["username", "billy_01"], ["access_token", "4ac69a4b2adff8f9a1c8102081001926"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.579540"], ["updated_at", "2015-03-20 19:04:00.579540"]]
|
783910
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783912
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1936396882 LIMIT 1[0m
|
783913
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1936396882], ["username", "billy_02"], ["access_token", "b84262ab3f957f5aab3f1d08a303256a"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.581871"], ["updated_at", "2015-03-20 19:04:00.581871"]]
|
783914
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783915
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
783916
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1909140987 LIMIT 1[0m
|
783917
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1909140987], ["username", "billy_03"], ["access_token", "693266e2764dce837a5cb4a5c9672d2c"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.584231"], ["updated_at", "2015-03-20 19:04:00.584231"]]
|
783918
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783919
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783920
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1005880819 LIMIT 1[0m
|
783921
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1005880819], ["username", "billy_04"], ["access_token", "e44434b12ecbb85d5508ecfd7a65c2a9"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.586543"], ["updated_at", "2015-03-20 19:04:00.586543"]]
|
783922
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783923
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783924
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -431339024 LIMIT 1[0m
|
783925
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -431339024], ["username", "billy_05"], ["access_token", "633e7039b9350353af7a63a48ec14369"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.588750"], ["updated_at", "2015-03-20 19:04:00.588750"]]
|
783926
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783927
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783928
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1222336263 LIMIT 1[0m
|
783929
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1222336263], ["username", "billy_06"], ["access_token", "63c5a2ba3dd3783cdfd6f02f41844bb7"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.590889"], ["updated_at", "2015-03-20 19:04:00.590889"]]
|
783930
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783932
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1597510029 LIMIT 1[0m
|
783933
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1597510029], ["username", "billy_07"], ["access_token", "c0511d90f326f83424b1241a3c33e950"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.593017"], ["updated_at", "2015-03-20 19:04:00.593017"]]
|
783934
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783935
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783936
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1851099252 LIMIT 1[0m
|
783937
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1851099252], ["username", "billy_08"], ["access_token", "7bbb801caa83624877db5775d45086cf"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.595287"], ["updated_at", "2015-03-20 19:04:00.595287"]]
|
783938
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783939
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783940
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -167064660 LIMIT 1[0m
|
783941
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -167064660], ["username", "billy_09"], ["access_token", "0afc0cd6a3ac9d7b0922ae42a1c776a2"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.597446"], ["updated_at", "2015-03-20 19:04:00.597446"]]
|
783942
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783943
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
783944
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -170264506 LIMIT 1[0m
|
783945
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -170264506], ["username", "billy_10"], ["access_token", "1971126be8c8d2d327e76f0697ed60b5"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.599577"], ["updated_at", "2015-03-20 19:04:00.599577"]]
|
783946
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783948
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -763811335 LIMIT 1[0m
|
783949
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -763811335], ["username", "billy_11"], ["access_token", "7b7a5c7f0326d25de189539efe75ecc9"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.601831"], ["updated_at", "2015-03-20 19:04:00.601831"]]
|
783950
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783952
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1825638194 LIMIT 1[0m
|
783953
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1825638194], ["username", "billy_12"], ["access_token", "1e031e143100cb5ad8e9fc396269e67a"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.604120"], ["updated_at", "2015-03-20 19:04:00.604120"]]
|
783954
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783956
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1694560357 LIMIT 1[0m
|
783957
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1694560357], ["username", "billy_13"], ["access_token", "9e648c02159a7fd1867424ef878fbcb8"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.606342"], ["updated_at", "2015-03-20 19:04:00.606342"]]
|
783958
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783959
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783960
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1268091116 LIMIT 1[0m
|
783961
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1268091116], ["username", "billy_14"], ["access_token", "bc8189478de864d4d382c149eb15d082"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.609677"], ["updated_at", "2015-03-20 19:04:00.609677"]]
|
783962
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783964
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1197788014 LIMIT 1[0m
|
783965
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1197788014], ["username", "billy_15"], ["access_token", "3cc9e0afdb99a6eb4ffc0e0ffd0bd63d"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.613757"], ["updated_at", "2015-03-20 19:04:00.613757"]]
|
783966
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783967
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783968
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1241387580 LIMIT 1[0m
|
783969
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1241387580], ["username", "billy_16"], ["access_token", "b82eb1eb3d470ebe1b0f23a2fa9e5c39"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.618260"], ["updated_at", "2015-03-20 19:04:00.618260"]]
|
783970
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783971
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783972
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -886455148 LIMIT 1[0m
|
783973
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -886455148], ["username", "billy_17"], ["access_token", "ebe847be168a02c0309c03b9b90b4c1f"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.622306"], ["updated_at", "2015-03-20 19:04:00.622306"]]
|
783974
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783975
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783976
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1141182577 LIMIT 1[0m
|
783977
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1141182577], ["username", "billy_18"], ["access_token", "832ffe178ffeaceca47df8e0618b6f72"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.624884"], ["updated_at", "2015-03-20 19:04:00.624884"]]
|
783978
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783979
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783980
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -599517693 LIMIT 1[0m
|
783981
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -599517693], ["username", "billy_19"], ["access_token", "efcb5fe9aa70fbc7922eef9015e6df0f"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.628639"], ["updated_at", "2015-03-20 19:04:00.628639"]]
|
783982
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783983
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783984
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1172055213 LIMIT 1[0m
|
783985
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1172055213], ["username", "billy_20"], ["access_token", "a9579ee9c39b815eefce2e7dc18f9184"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.631058"], ["updated_at", "2015-03-20 19:04:00.631058"]]
|
783986
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783987
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783988
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -375233066 LIMIT 1[0m
|
783989
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -375233066], ["username", "billy_21"], ["access_token", "59104e699d3f754c6da50049b2756910"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.633408"], ["updated_at", "2015-03-20 19:04:00.633408"]]
|
783990
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783991
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
783992
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -476526756 LIMIT 1[0m
|
783993
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -476526756], ["username", "billy_22"], ["access_token", "5d0090c783678a6348f9af7d72a28799"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.635914"], ["updated_at", "2015-03-20 19:04:00.635914"]]
|
783994
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783995
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
783996
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1232436581 LIMIT 1[0m
|
783997
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1232436581], ["username", "billy_23"], ["access_token", "e98056f366c88af84e86f596afacc0fe"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.638569"], ["updated_at", "2015-03-20 19:04:00.638569"]]
|
783998
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
783999
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784000
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -290752405 LIMIT 1[0m
|
784001
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -290752405], ["username", "billy_24"], ["access_token", "da2d6229e9a1323c0610559015776103"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.641433"], ["updated_at", "2015-03-20 19:04:00.641433"]]
|
784002
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784003
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784004
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -274987258 LIMIT 1[0m
|
784005
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -274987258], ["username", "billy_25"], ["access_token", "5b4261fcd58920ab21911b3aa2189300"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.643879"], ["updated_at", "2015-03-20 19:04:00.643879"]]
|
784006
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784008
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1562431531 LIMIT 1[0m
|
784009
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1562431531], ["username", "billy_26"], ["access_token", "a69ae0c74f6ee876a4d75bfa76186407"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.646382"], ["updated_at", "2015-03-20 19:04:00.646382"]]
|
784010
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784012
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -273178467 LIMIT 1[0m
|
784013
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -273178467], ["username", "billy_27"], ["access_token", "0e8ccdcc70d3cca8b7cc01f3cb1e7697"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.648892"], ["updated_at", "2015-03-20 19:04:00.648892"]]
|
784014
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784015
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784016
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1767570235 LIMIT 1[0m
|
784017
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1767570235], ["username", "billy_28"], ["access_token", "bad0bae84aa17d76a8fad5ac1c739986"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.651253"], ["updated_at", "2015-03-20 19:04:00.651253"]]
|
784018
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784020
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -561004958 LIMIT 1[0m
|
784021
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -561004958], ["username", "billy_29"], ["access_token", "0e63817edb5c5a0557b8aabe98269370"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.653625"], ["updated_at", "2015-03-20 19:04:00.653625"]]
|
784022
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784023
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784024
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -790948698 LIMIT 1[0m
|
784025
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -790948698], ["username", "billy_30"], ["access_token", "491e6c5edfa33ac224b87938d1ad6022"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.663365"], ["updated_at", "2015-03-20 19:04:00.663365"]]
|
784026
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784027
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784028
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1984178457 LIMIT 1[0m
|
784029
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1984178457], ["username", "billy_31"], ["access_token", "a674367bb61cf2c6f581580b342e3329"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.666080"], ["updated_at", "2015-03-20 19:04:00.666080"]]
|
784030
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784031
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784032
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -559258388 LIMIT 1[0m
|
784033
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -559258388], ["username", "billy_32"], ["access_token", "ab84c9e8859f5691ac0680eefce87ec2"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.668515"], ["updated_at", "2015-03-20 19:04:00.668515"]]
|
784034
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784035
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784036
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -542934629 LIMIT 1[0m
|
784037
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -542934629], ["username", "billy_33"], ["access_token", "79701f1d190fda02c770bcea59e0d385"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.670951"], ["updated_at", "2015-03-20 19:04:00.670951"]]
|
784038
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784039
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784040
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -711790219 LIMIT 1[0m
|
784041
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -711790219], ["username", "billy_34"], ["access_token", "04a80ef095093132bbaee0d373238deb"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.673335"], ["updated_at", "2015-03-20 19:04:00.673335"]]
|
784042
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784043
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784044
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1772791298 LIMIT 1[0m
|
784045
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1772791298], ["username", "billy_35"], ["access_token", "eee9735771c5b8352661451384315458"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.675643"], ["updated_at", "2015-03-20 19:04:00.675643"]]
|
784046
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784047
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784048
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -722256274 LIMIT 1[0m
|
784049
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -722256274], ["username", "billy_36"], ["access_token", "5070b8cfcaf8cd790862458cff559559"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.677939"], ["updated_at", "2015-03-20 19:04:00.677939"]]
|
784050
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784051
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784052
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -985206545 LIMIT 1[0m
|
784053
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -985206545], ["username", "billy_37"], ["access_token", "c0e57973c3961f3cdf6c83366e1aad26"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.680260"], ["updated_at", "2015-03-20 19:04:00.680260"]]
|
784054
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784055
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784056
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1398459975 LIMIT 1[0m
|
784057
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1398459975], ["username", "billy_38"], ["access_token", "6c9a1d403ba110eacbd12b4ee7e0a0cf"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.682487"], ["updated_at", "2015-03-20 19:04:00.682487"]]
|
784058
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784059
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784060
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1788309524 LIMIT 1[0m
|
784061
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1788309524], ["username", "billy_39"], ["access_token", "5de8a5e41efed785fe45533398f18dec"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.685045"], ["updated_at", "2015-03-20 19:04:00.685045"]]
|
784062
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784063
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784064
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1646768315 LIMIT 1[0m
|
784065
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1646768315], ["username", "billy_40"], ["access_token", "d0bc54c42aca85ecea25f22c38ddb372"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.687591"], ["updated_at", "2015-03-20 19:04:00.687591"]]
|
784066
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784068
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -725582578 LIMIT 1[0m
|
784069
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -725582578], ["username", "billy_41"], ["access_token", "cab8dc98f6fcb8603bab0267e05a42b0"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.690263"], ["updated_at", "2015-03-20 19:04:00.690263"]]
|
784070
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784071
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784072
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -106040578 LIMIT 1[0m
|
784073
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -106040578], ["username", "billy_42"], ["access_token", "7817889e1045cf9c79ddadaf25ce11ff"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.692948"], ["updated_at", "2015-03-20 19:04:00.692948"]]
|
784074
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784075
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784076
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1599346051 LIMIT 1[0m
|
784077
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1599346051], ["username", "billy_43"], ["access_token", "9ddad8b77d3d8c59dd83371b071f5ea6"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.695483"], ["updated_at", "2015-03-20 19:04:00.695483"]]
|
784078
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784079
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784080
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428203566 LIMIT 1[0m
|
784081
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1428203566], ["username", "billy_44"], ["access_token", "a29204eee1a7c922df361e90bf4c0e94"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.697939"], ["updated_at", "2015-03-20 19:04:00.697939"]]
|
784082
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784083
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784084
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1294755087 LIMIT 1[0m
|
784085
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1294755087], ["username", "billy_45"], ["access_token", "25357c07ddd1acabc5d3fa3e5b6a307f"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.700411"], ["updated_at", "2015-03-20 19:04:00.700411"]]
|
784086
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784087
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784088
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')[0m
|
784089
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784090
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "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[0m
|
784091
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_00' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
784092
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_19' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
784093
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
784094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
784095
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784096
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -530354283 LIMIT 1[0m
|
784097
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -530354283], ["username", "jstrav"], ["access_token", "cfcc0a701584f58b38cb26b682ddb3e3"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.712006"], ["updated_at", "2015-03-20 19:04:00.712006"]]
|
784098
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784099
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784100
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219205054 LIMIT 1[0m
|
784101
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1219205054], ["username", "mary"], ["access_token", "1422fbe5522803773dcc41e889194c10"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.714749"], ["updated_at", "2015-03-20 19:04:00.714749"]]
|
784102
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784104
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1001769192 LIMIT 1[0m
|
784105
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1001769192], ["username", "jstead"], ["access_token", "fcefabeec4765850c920236ffae412f7"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.717465"], ["updated_at", "2015-03-20 19:04:00.717465"]]
|
784106
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784107
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784108
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -197818680 LIMIT 1[0m
|
784109
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -197818680], ["username", "bigbear"], ["access_token", "81b02dbec82b75ceefb7d8f38fd85412"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.719939"], ["updated_at", "2015-03-20 19:04:00.719939"]]
|
784110
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784112
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -12857006 LIMIT 1[0m
|
784113
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -12857006], ["username", "billy_00"], ["access_token", "8b883959116bef135c0eabcf0a590a0f"], ["first_name", "Billy00"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.722473"], ["updated_at", "2015-03-20 19:04:00.722473"]]
|
784114
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784115
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784116
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1727507007 LIMIT 1[0m
|
784117
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1727507007], ["username", "billy_01"], ["access_token", "8e7ffb7bc0fb8c00bd07688b8c8fe368"], ["first_name", "Billy01"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.725334"], ["updated_at", "2015-03-20 19:04:00.725334"]]
|
784118
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784119
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784120
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1931464647 LIMIT 1[0m
|
784121
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1931464647], ["username", "billy_02"], ["access_token", "a79786b05765e0540f8c2f055729e3c6"], ["first_name", "Billy02"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.727931"], ["updated_at", "2015-03-20 19:04:00.727931"]]
|
784122
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784123
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784124
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1528062377 LIMIT 1[0m
|
784125
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1528062377], ["username", "billy_03"], ["access_token", "31c98977fd5480c6f91a9aa0528296b1"], ["first_name", "Billy03"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.730359"], ["updated_at", "2015-03-20 19:04:00.730359"]]
|
784126
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784128
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -492965092 LIMIT 1[0m
|
784129
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -492965092], ["username", "billy_04"], ["access_token", "36a32b47b87efc232e545f5d232114a3"], ["first_name", "Billy04"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.732826"], ["updated_at", "2015-03-20 19:04:00.732826"]]
|
784130
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784131
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784132
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -963884775 LIMIT 1[0m
|
784133
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -963884775], ["username", "billy_05"], ["access_token", "dc27f4b6404ef479ada08f86205326c5"], ["first_name", "Billy05"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.735268"], ["updated_at", "2015-03-20 19:04:00.735268"]]
|
784134
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784135
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784136
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -744613571 LIMIT 1[0m
|
784137
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -744613571], ["username", "billy_06"], ["access_token", "6a275de0dd2ba65827fd3d11eb252df3"], ["first_name", "Billy06"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.737741"], ["updated_at", "2015-03-20 19:04:00.737741"]]
|
784138
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784139
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784140
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1568623640 LIMIT 1[0m
|
784141
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1568623640], ["username", "billy_07"], ["access_token", "839c1b748f584a051fa05f46d2921e53"], ["first_name", "Billy07"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.740145"], ["updated_at", "2015-03-20 19:04:00.740145"]]
|
784142
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784143
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784144
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1154188605 LIMIT 1[0m
|
784145
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1154188605], ["username", "billy_08"], ["access_token", "c34c26b5aa962435ede3cfe1d44fd3c7"], ["first_name", "Billy08"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.742534"], ["updated_at", "2015-03-20 19:04:00.742534"]]
|
784146
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784147
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784148
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -710457280 LIMIT 1[0m
|
784149
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -710457280], ["username", "billy_09"], ["access_token", "ce58f2ca5e7a3bc0b63379c038d062ae"], ["first_name", "Billy09"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.744967"], ["updated_at", "2015-03-20 19:04:00.744967"]]
|
784150
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784151
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784152
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -946405157 LIMIT 1[0m
|
784153
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -946405157], ["username", "billy_10"], ["access_token", "e211d7e48af0563da9cdb25eaf33674d"], ["first_name", "Billy10"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.747574"], ["updated_at", "2015-03-20 19:04:00.747574"]]
|
784154
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784155
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784156
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -194732278 LIMIT 1[0m
|
784157
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -194732278], ["username", "billy_11"], ["access_token", "fdb09f21aca7854d7b147eb978a363ac"], ["first_name", "Billy11"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.750085"], ["updated_at", "2015-03-20 19:04:00.750085"]]
|
784158
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784160
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1710610475 LIMIT 1[0m
|
784161
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1710610475], ["username", "billy_12"], ["access_token", "6f1f6f39e448561106f866e16880bebb"], ["first_name", "Billy12"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.752523"], ["updated_at", "2015-03-20 19:04:00.752523"]]
|
784162
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784163
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784164
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1112689957 LIMIT 1[0m
|
784165
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1112689957], ["username", "billy_13"], ["access_token", "c645b6accc412c7cad045683932b0db8"], ["first_name", "Billy13"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.755294"], ["updated_at", "2015-03-20 19:04:00.755294"]]
|
784166
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784167
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784168
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1797574819 LIMIT 1[0m
|
784169
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1797574819], ["username", "billy_14"], ["access_token", "11bace881de3d522e7f9328e79ceaca3"], ["first_name", "Billy14"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.757910"], ["updated_at", "2015-03-20 19:04:00.757910"]]
|
784170
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784171
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784172
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -246876252 LIMIT 1[0m
|
784173
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -246876252], ["username", "billy_15"], ["access_token", "1b6a18d8927da05833a012af96a3dec8"], ["first_name", "Billy15"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.760956"], ["updated_at", "2015-03-20 19:04:00.760956"]]
|
784174
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784176
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1765653492 LIMIT 1[0m
|
784177
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1765653492], ["username", "billy_16"], ["access_token", "c025d34b13a1e67f6c2112575583e856"], ["first_name", "Billy16"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.763989"], ["updated_at", "2015-03-20 19:04:00.763989"]]
|
784178
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784179
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784180
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1305851102 LIMIT 1[0m
|
784181
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1305851102], ["username", "billy_17"], ["access_token", "d9030bd49c05bb3fa99b28d5b6898059"], ["first_name", "Billy17"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.766406"], ["updated_at", "2015-03-20 19:04:00.766406"]]
|
784182
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784183
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784184
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2026422397 LIMIT 1[0m
|
784185
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2026422397], ["username", "billy_18"], ["access_token", "c7c843a42ee31c51f2382eae782225f9"], ["first_name", "Billy18"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.768851"], ["updated_at", "2015-03-20 19:04:00.768851"]]
|
784186
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784188
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1736614852 LIMIT 1[0m
|
784189
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1736614852], ["username", "billy_19"], ["access_token", "da47b3df3a3fd56a3b07818ce36dfdeb"], ["first_name", "Billy19"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.771606"], ["updated_at", "2015-03-20 19:04:00.771606"]]
|
784190
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784191
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784192
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1138669658 LIMIT 1[0m
|
784193
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1138669658], ["username", "billy_20"], ["access_token", "c70e7763bb8a9d0a86fac5f220fefdfb"], ["first_name", "Billy20"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.774095"], ["updated_at", "2015-03-20 19:04:00.774095"]]
|
784194
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784195
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784196
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -632499183 LIMIT 1[0m
|
784197
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -632499183], ["username", "billy_21"], ["access_token", "e73c26b1c6590dff47aeed0b007a3f50"], ["first_name", "Billy21"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.776783"], ["updated_at", "2015-03-20 19:04:00.776783"]]
|
784198
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784199
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784200
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -699823822 LIMIT 1[0m
|
784201
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -699823822], ["username", "billy_22"], ["access_token", "2eefc15348021f0f586447cd32bb1900"], ["first_name", "Billy22"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.779349"], ["updated_at", "2015-03-20 19:04:00.779349"]]
|
784202
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784204
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -560299270 LIMIT 1[0m
|
784205
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -560299270], ["username", "billy_23"], ["access_token", "c6f198e72386a7cfbb7a462f186cda03"], ["first_name", "Billy23"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.781981"], ["updated_at", "2015-03-20 19:04:00.781981"]]
|
784206
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784207
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784208
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -244516696 LIMIT 1[0m
|
784209
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -244516696], ["username", "billy_24"], ["access_token", "fde8b303bd0d132ea067ccd54548c912"], ["first_name", "Billy24"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.784649"], ["updated_at", "2015-03-20 19:04:00.784649"]]
|
784210
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784211
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784212
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -419959526 LIMIT 1[0m
|
784213
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -419959526], ["username", "billy_25"], ["access_token", "c496ccedf28907a06b529370a5e1e008"], ["first_name", "Billy25"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.787247"], ["updated_at", "2015-03-20 19:04:00.787247"]]
|
784214
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784215
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784216
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -207187849 LIMIT 1[0m
|
784217
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -207187849], ["username", "billy_26"], ["access_token", "a213d7916d50a378bc25ecf17a7e1f6b"], ["first_name", "Billy26"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.789890"], ["updated_at", "2015-03-20 19:04:00.789890"]]
|
784218
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784219
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784220
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -407808123 LIMIT 1[0m
|
784221
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -407808123], ["username", "billy_27"], ["access_token", "fe11293fd9521ad1aea28275b162683e"], ["first_name", "Billy27"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.792753"], ["updated_at", "2015-03-20 19:04:00.792753"]]
|
784222
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784223
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784224
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -256373054 LIMIT 1[0m
|
784225
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -256373054], ["username", "billy_28"], ["access_token", "43644ff311229f16585c0c00ebfa20b5"], ["first_name", "Billy28"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.795449"], ["updated_at", "2015-03-20 19:04:00.795449"]]
|
784226
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784227
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784228
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1551211299 LIMIT 1[0m
|
784229
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1551211299], ["username", "billy_29"], ["access_token", "3fd504e578641a6afdfb1f77b8ea730b"], ["first_name", "Billy29"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.798143"], ["updated_at", "2015-03-20 19:04:00.798143"]]
|
784230
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784231
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784232
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2135000113 LIMIT 1[0m
|
784233
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2135000113], ["username", "billy_30"], ["access_token", "61e45cb0045029d82493516934ea671a"], ["first_name", "Billy30"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.800957"], ["updated_at", "2015-03-20 19:04:00.800957"]]
|
784234
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784236
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1730227713 LIMIT 1[0m
|
784237
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1730227713], ["username", "billy_31"], ["access_token", "752de0a9c21c3f4fdf95f4b2092f1f87"], ["first_name", "Billy31"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.803671"], ["updated_at", "2015-03-20 19:04:00.803671"]]
|
784238
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784239
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784240
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -500519972 LIMIT 1[0m
|
784241
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -500519972], ["username", "billy_32"], ["access_token", "a074cb24193808c5148496abc9d8aa30"], ["first_name", "Billy32"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.806399"], ["updated_at", "2015-03-20 19:04:00.806399"]]
|
784242
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784243
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784244
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2116183752 LIMIT 1[0m
|
784245
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2116183752], ["username", "billy_33"], ["access_token", "e39f30c960dc4da7316dc61ec9bcf154"], ["first_name", "Billy33"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.809232"], ["updated_at", "2015-03-20 19:04:00.809232"]]
|
784246
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784247
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784248
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -415379185 LIMIT 1[0m
|
784249
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -415379185], ["username", "billy_34"], ["access_token", "095da8c50e14e6f41276fc5980e9e053"], ["first_name", "Billy34"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.811609"], ["updated_at", "2015-03-20 19:04:00.811609"]]
|
784250
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784251
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784252
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1625265920 LIMIT 1[0m
|
784253
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1625265920], ["username", "billy_35"], ["access_token", "5f9301fc82dc3958b12cf9b30472ae84"], ["first_name", "Billy35"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.813942"], ["updated_at", "2015-03-20 19:04:00.813942"]]
|
784254
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784255
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784256
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1219918815 LIMIT 1[0m
|
784257
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1219918815], ["username", "billy_36"], ["access_token", "185bda891512e9cb10101e13fbf973cc"], ["first_name", "Billy36"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.816177"], ["updated_at", "2015-03-20 19:04:00.816177"]]
|
784258
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784259
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784260
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -224533646 LIMIT 1[0m
|
784261
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -224533646], ["username", "billy_37"], ["access_token", "21a428759237f2556735960d5148f822"], ["first_name", "Billy37"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.818457"], ["updated_at", "2015-03-20 19:04:00.818457"]]
|
784262
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784264
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1676985046 LIMIT 1[0m
|
784265
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1676985046], ["username", "billy_38"], ["access_token", "ef8d5bf16879829efe2be5e2cfd2b563"], ["first_name", "Billy38"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.820770"], ["updated_at", "2015-03-20 19:04:00.820770"]]
|
784266
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784268
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1816720602 LIMIT 1[0m
|
784269
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1816720602], ["username", "billy_39"], ["access_token", "7959c82549ae6bc53ac695829d173d6c"], ["first_name", "Billy39"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.823061"], ["updated_at", "2015-03-20 19:04:00.823061"]]
|
784270
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784271
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784272
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1252525447 LIMIT 1[0m
|
784273
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1252525447], ["username", "billy_40"], ["access_token", "457ba8795638a97285b3e530a1bbcf81"], ["first_name", "Billy40"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.825318"], ["updated_at", "2015-03-20 19:04:00.825318"]]
|
784274
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784275
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784276
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -62549455 LIMIT 1[0m
|
784277
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -62549455], ["username", "billy_41"], ["access_token", "8ee297d039d85dd14b8c49d7be5341ed"], ["first_name", "Billy41"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.827584"], ["updated_at", "2015-03-20 19:04:00.827584"]]
|
784278
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784279
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784280
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -398567677 LIMIT 1[0m
|
784281
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -398567677], ["username", "billy_42"], ["access_token", "358ec04da7ffd15405d3a9326be17c56"], ["first_name", "Billy42"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.829815"], ["updated_at", "2015-03-20 19:04:00.829815"]]
|
784282
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784283
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784284
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1303268148 LIMIT 1[0m
|
784285
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1303268148], ["username", "billy_43"], ["access_token", "f0310968cb5208be00cc8f152019cf6b"], ["first_name", "Billy43"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.832069"], ["updated_at", "2015-03-20 19:04:00.832069"]]
|
784286
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784288
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1620160644 LIMIT 1[0m
|
784289
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1620160644], ["username", "billy_44"], ["access_token", "037b794225d0cd968f2541bd9eed531d"], ["first_name", "Billy44"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.834344"], ["updated_at", "2015-03-20 19:04:00.834344"]]
|
784290
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784291
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784292
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -636972004 LIMIT 1[0m
|
784293
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -636972004], ["username", "billy_45"], ["access_token", "f46c04a7458581a2ba57106e1da94df7"], ["first_name", "Billy45"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.836504"], ["updated_at", "2015-03-20 19:04:00.836504"]]
|
784294
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784295
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784296
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'billy%')[0m
|
784297
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784298
|
+
[1m[36mOpenStax::Accounts::Account Load (0.2ms)[0m [1mSELECT "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[0m
|
784299
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_20' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
784300
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."username" = 'billy_39' ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
784301
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
784302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
784303
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784304
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -930967692 LIMIT 1[0m
|
784305
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -930967692], ["username", "jstrav"], ["access_token", "51f0c03f7aa048a250cb5dd1fcc632a3"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.848092"], ["updated_at", "2015-03-20 19:04:00.848092"]]
|
784306
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784307
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784308
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -721772601 LIMIT 1[0m
|
784309
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -721772601], ["username", "mary"], ["access_token", "52bf8bf58d17b4eabe8f391ffc10dfaa"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.850691"], ["updated_at", "2015-03-20 19:04:00.850691"]]
|
784310
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784311
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784312
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -142322431 LIMIT 1[0m
|
784313
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -142322431], ["username", "jstead"], ["access_token", "56eca6a92056f9580b55085e9d6b3ccd"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.853201"], ["updated_at", "2015-03-20 19:04:00.853201"]]
|
784314
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784315
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784316
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1006460014 LIMIT 1[0m
|
784317
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1006460014], ["username", "bigbear"], ["access_token", "cb495a29abc01358dd6c98bb1a354665"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.855816"], ["updated_at", "2015-03-20 19:04:00.855816"]]
|
784318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784320
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2076556312 LIMIT 1[0m
|
784321
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2076556312], ["username", "foo_bb"], ["access_token", "48a50f1402c5a91c2ade54cd6d78bc36"], ["first_name", "Bob"], ["last_name", "Brown"], ["created_at", "2015-03-20 19:04:00.858122"], ["updated_at", "2015-03-20 19:04:00.858122"]]
|
784322
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784323
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784324
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1428516781 LIMIT 1[0m
|
784325
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1428516781], ["username", "foo_bj"], ["access_token", "0dd56f8af471999c71896aa032e9c5b5"], ["first_name", "Bob"], ["last_name", "Jones"], ["created_at", "2015-03-20 19:04:00.860585"], ["updated_at", "2015-03-20 19:04:00.860585"]]
|
784326
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784327
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784328
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -647625080 LIMIT 1[0m
|
784329
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -647625080], ["username", "foo_tj"], ["access_token", "dbb196a7028f10ed1f85fe2bbb711c6b"], ["first_name", "Tim"], ["last_name", "Jones"], ["created_at", "2015-03-20 19:04:00.862918"], ["updated_at", "2015-03-20 19:04:00.862918"]]
|
784330
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784331
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784332
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')[0m
|
784333
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784334
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "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[0m
|
784335
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784336
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'foo%')[0m
|
784337
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784338
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "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[0m
|
784339
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
784340
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
784341
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784342
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -496297221 LIMIT 1[0m
|
784343
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -496297221], ["username", "jstrav"], ["access_token", "656b6fa0769b7f6b442ba1e37658ed7c"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:00.871065"], ["updated_at", "2015-03-20 19:04:00.871065"]]
|
784344
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784345
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784346
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1388351658 LIMIT 1[0m
|
784347
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1388351658], ["username", "mary"], ["access_token", "a3e7237ef00f24b19df086703c1f225b"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:00.873924"], ["updated_at", "2015-03-20 19:04:00.873924"]]
|
784348
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784350
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -343153084 LIMIT 1[0m
|
784351
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -343153084], ["username", "jstead"], ["access_token", "283a38215070fd99dcd9da108e1037a4"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:00.876553"], ["updated_at", "2015-03-20 19:04:00.876553"]]
|
784352
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784353
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784354
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1858650263 LIMIT 1[0m
|
784355
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1858650263], ["username", "bigbear"], ["access_token", "6fc27b7f0d9337b31c37ee61c5fe1909"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:00.879022"], ["updated_at", "2015-03-20 19:04:00.879022"]]
|
784356
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784357
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784358
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -958517116 LIMIT 1[0m
|
784359
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -958517116], ["username", "billy_00"], ["access_token", "32d92313a75b5033284caf2d71db65db"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:04:00.881445"], ["updated_at", "2015-03-20 19:04:00.881445"]]
|
784360
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784362
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2084767986 LIMIT 1[0m
|
784363
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2084767986], ["username", "billy_01"], ["access_token", "df9957b75539492d080f856e9fbd2f6f"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:04:00.883882"], ["updated_at", "2015-03-20 19:04:00.883882"]]
|
784364
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784365
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784366
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -441843973 LIMIT 1[0m
|
784367
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -441843973], ["username", "billy_02"], ["access_token", "df4418e54b3ccd211931d08c48e89336"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:04:00.886121"], ["updated_at", "2015-03-20 19:04:00.886121"]]
|
784368
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784370
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -523837298 LIMIT 1[0m
|
784371
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -523837298], ["username", "billy_03"], ["access_token", "099d9ba187cb29f91e9bece019b18320"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:04:00.888294"], ["updated_at", "2015-03-20 19:04:00.888294"]]
|
784372
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784373
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784374
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -951295814 LIMIT 1[0m
|
784375
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -951295814], ["username", "billy_04"], ["access_token", "ccaf857682b8dfe0000339146f737d62"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:00.890522"], ["updated_at", "2015-03-20 19:04:00.890522"]]
|
784376
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784377
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784378
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2059476837 LIMIT 1[0m
|
784379
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2059476837], ["username", "billy_05"], ["access_token", "60920b26559c1d941df28e72f2abfc04"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:00.893440"], ["updated_at", "2015-03-20 19:04:00.893440"]]
|
784380
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784382
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1394655290 LIMIT 1[0m
|
784383
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1394655290], ["username", "billy_06"], ["access_token", "8622c8a03890f808375975baa5b5e953"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:00.895844"], ["updated_at", "2015-03-20 19:04:00.895844"]]
|
784384
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784386
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -519681945 LIMIT 1[0m
|
784387
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -519681945], ["username", "billy_07"], ["access_token", "5c0643c3c08b28cca9a18a99d3f18f82"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:00.897975"], ["updated_at", "2015-03-20 19:04:00.897975"]]
|
784388
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784390
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1463185493 LIMIT 1[0m
|
784391
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1463185493], ["username", "billy_08"], ["access_token", "bd93a6171946ddd381397390a7b6a866"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:00.900077"], ["updated_at", "2015-03-20 19:04:00.900077"]]
|
784392
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784393
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784394
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1374968576 LIMIT 1[0m
|
784395
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1374968576], ["username", "billy_09"], ["access_token", "a30c33671c33bfe1eaec406a4938b286"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:00.902379"], ["updated_at", "2015-03-20 19:04:00.902379"]]
|
784396
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784398
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1823838486 LIMIT 1[0m
|
784399
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1823838486], ["username", "billy_10"], ["access_token", "d95648d007bf63c39873c0eaad28a1fd"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:00.904677"], ["updated_at", "2015-03-20 19:04:00.904677"]]
|
784400
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784401
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784402
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -488308040 LIMIT 1[0m
|
784403
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -488308040], ["username", "billy_11"], ["access_token", "72869ab8b2e03ac31f87e3d96f4dee48"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:00.906998"], ["updated_at", "2015-03-20 19:04:00.906998"]]
|
784404
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784405
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784406
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -593871545 LIMIT 1[0m
|
784407
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -593871545], ["username", "billy_12"], ["access_token", "bc9cd8efb7763ead57caf811245a0622"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:00.909308"], ["updated_at", "2015-03-20 19:04:00.909308"]]
|
784408
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784410
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -639100456 LIMIT 1[0m
|
784411
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -639100456], ["username", "billy_13"], ["access_token", "df16a4edf807c4e802a668a93b5b26a2"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:00.911674"], ["updated_at", "2015-03-20 19:04:00.911674"]]
|
784412
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784413
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784414
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1103196617 LIMIT 1[0m
|
784415
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1103196617], ["username", "billy_14"], ["access_token", "a3c9c3274d9eb970672f677e6a98b6bf"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:00.914029"], ["updated_at", "2015-03-20 19:04:00.914029"]]
|
784416
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784418
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -124509459 LIMIT 1[0m
|
784419
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -124509459], ["username", "billy_15"], ["access_token", "437a8e5dfbcbafc1358607ee85106d3b"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:00.916399"], ["updated_at", "2015-03-20 19:04:00.916399"]]
|
784420
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784422
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1186567356 LIMIT 1[0m
|
784423
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1186567356], ["username", "billy_16"], ["access_token", "95a13da5caa508f0c16647e0277f33dc"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:00.918713"], ["updated_at", "2015-03-20 19:04:00.918713"]]
|
784424
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784425
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784426
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1549453164 LIMIT 1[0m
|
784427
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1549453164], ["username", "billy_17"], ["access_token", "e1b9655d747848d17a2cbf3f4381e7a1"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:00.921032"], ["updated_at", "2015-03-20 19:04:00.921032"]]
|
784428
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784430
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2047820423 LIMIT 1[0m
|
784431
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2047820423], ["username", "billy_18"], ["access_token", "a85511a7ea73aeabaf222a7195467286"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:00.923326"], ["updated_at", "2015-03-20 19:04:00.923326"]]
|
784432
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784434
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -651270824 LIMIT 1[0m
|
784435
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -651270824], ["username", "billy_19"], ["access_token", "82f1f22864470feb0d0bc5f3e20dda51"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:00.925599"], ["updated_at", "2015-03-20 19:04:00.925599"]]
|
784436
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784437
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784438
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -912354476 LIMIT 1[0m
|
784439
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -912354476], ["username", "billy_20"], ["access_token", "a6792a8a2c9b66d580eda0fb8df2679b"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:00.927881"], ["updated_at", "2015-03-20 19:04:00.927881"]]
|
784440
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784442
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -32269478 LIMIT 1[0m
|
784443
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -32269478], ["username", "billy_21"], ["access_token", "e7e2c9dabd3186ce72047622cc36ff4a"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:00.930190"], ["updated_at", "2015-03-20 19:04:00.930190"]]
|
784444
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784445
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784446
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1411800581 LIMIT 1[0m
|
784447
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1411800581], ["username", "billy_22"], ["access_token", "379cf15edf0dec73af4faa91c3c43c87"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:00.932397"], ["updated_at", "2015-03-20 19:04:00.932397"]]
|
784448
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784450
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -798798938 LIMIT 1[0m
|
784451
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -798798938], ["username", "billy_23"], ["access_token", "e733f66d0b53fd83e9a512ef71cb5171"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:00.934594"], ["updated_at", "2015-03-20 19:04:00.934594"]]
|
784452
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784454
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -977246546 LIMIT 1[0m
|
784455
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -977246546], ["username", "billy_24"], ["access_token", "37ea739d7ec466e7010e85152dae6ee0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:00.936768"], ["updated_at", "2015-03-20 19:04:00.936768"]]
|
784456
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784458
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -470086837 LIMIT 1[0m
|
784459
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -470086837], ["username", "billy_25"], ["access_token", "96e48204afc9770a7e04e740c72539d9"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:00.938938"], ["updated_at", "2015-03-20 19:04:00.938938"]]
|
784460
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784461
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784462
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -175750843 LIMIT 1[0m
|
784463
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -175750843], ["username", "billy_26"], ["access_token", "be792e663062926533c769d2c3e7aa70"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:00.941206"], ["updated_at", "2015-03-20 19:04:00.941206"]]
|
784464
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784466
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1273422656 LIMIT 1[0m
|
784467
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1273422656], ["username", "billy_27"], ["access_token", "4c87e7fcc914a3a400a43b615c9b57d4"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:00.943610"], ["updated_at", "2015-03-20 19:04:00.943610"]]
|
784468
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784469
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784470
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -807587313 LIMIT 1[0m
|
784471
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -807587313], ["username", "billy_28"], ["access_token", "05f5a8977d72adf80c063ac78bd67420"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:00.945844"], ["updated_at", "2015-03-20 19:04:00.945844"]]
|
784472
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784473
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784474
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1204649231 LIMIT 1[0m
|
784475
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1204649231], ["username", "billy_29"], ["access_token", "47b48359e08124c7c0b342242d86883d"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:00.948066"], ["updated_at", "2015-03-20 19:04:00.948066"]]
|
784476
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784478
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -223678581 LIMIT 1[0m
|
784479
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -223678581], ["username", "billy_30"], ["access_token", "54033c106060ff7be859e8e8bd04a9b8"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:00.950359"], ["updated_at", "2015-03-20 19:04:00.950359"]]
|
784480
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784482
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1638375636 LIMIT 1[0m
|
784483
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1638375636], ["username", "billy_31"], ["access_token", "b57308abf7515469d546b6a2f78104db"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:00.952638"], ["updated_at", "2015-03-20 19:04:00.952638"]]
|
784484
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784485
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784486
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -888101027 LIMIT 1[0m
|
784487
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -888101027], ["username", "billy_32"], ["access_token", "0101fb445664b1ba02cbb97c816c7d2a"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:00.954961"], ["updated_at", "2015-03-20 19:04:00.954961"]]
|
784488
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784489
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784490
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1514537960 LIMIT 1[0m
|
784491
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1514537960], ["username", "billy_33"], ["access_token", "c8b8398559c34509498461374fae24bf"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:00.957257"], ["updated_at", "2015-03-20 19:04:00.957257"]]
|
784492
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784494
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -637813307 LIMIT 1[0m
|
784495
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -637813307], ["username", "billy_34"], ["access_token", "b85ac128f06693e29b3b0ab544e929e0"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:00.959397"], ["updated_at", "2015-03-20 19:04:00.959397"]]
|
784496
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784497
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784498
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1687998627 LIMIT 1[0m
|
784499
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1687998627], ["username", "billy_35"], ["access_token", "3d78252be8f20101ec9da6fe9e01ba01"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:00.961624"], ["updated_at", "2015-03-20 19:04:00.961624"]]
|
784500
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784502
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -796315578 LIMIT 1[0m
|
784503
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -796315578], ["username", "billy_36"], ["access_token", "47cd167ace232c95cea4aa9d3f3231ee"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:00.963838"], ["updated_at", "2015-03-20 19:04:00.963838"]]
|
784504
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784505
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784506
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2117856800 LIMIT 1[0m
|
784507
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2117856800], ["username", "billy_37"], ["access_token", "ac466f883b26aea0e0f0955ebcd0e207"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:00.966004"], ["updated_at", "2015-03-20 19:04:00.966004"]]
|
784508
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784509
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784510
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2034704129 LIMIT 1[0m
|
784511
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2034704129], ["username", "billy_38"], ["access_token", "3fe14a0acde2969032d1283fd719c81f"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:00.968186"], ["updated_at", "2015-03-20 19:04:00.968186"]]
|
784512
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784513
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784514
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1810333282 LIMIT 1[0m
|
784515
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1810333282], ["username", "billy_39"], ["access_token", "c1ba524a5698ec34ed249586a289654a"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:00.970389"], ["updated_at", "2015-03-20 19:04:00.970389"]]
|
784516
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784518
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1094054623 LIMIT 1[0m
|
784519
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1094054623], ["username", "billy_40"], ["access_token", "86cd6858ed6e26f4088250593138d286"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:00.972536"], ["updated_at", "2015-03-20 19:04:00.972536"]]
|
784520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784522
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1541285937 LIMIT 1[0m
|
784523
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1541285937], ["username", "billy_41"], ["access_token", "4b182a7ed1a59560b867454364c3467c"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:00.974815"], ["updated_at", "2015-03-20 19:04:00.974815"]]
|
784524
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784525
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784526
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -436299396 LIMIT 1[0m
|
784527
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -436299396], ["username", "billy_42"], ["access_token", "15889c20e027b13cbe45cb14e975c7c5"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:00.977112"], ["updated_at", "2015-03-20 19:04:00.977112"]]
|
784528
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784530
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1561351886 LIMIT 1[0m
|
784531
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1561351886], ["username", "billy_43"], ["access_token", "e79f67a395ad13f11a713772e6c508e1"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:00.979203"], ["updated_at", "2015-03-20 19:04:00.979203"]]
|
784532
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784533
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784534
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1902156492 LIMIT 1[0m
|
784535
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1902156492], ["username", "billy_44"], ["access_token", "15c1b60a4e6edbe844e7830994a6a153"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:00.981453"], ["updated_at", "2015-03-20 19:04:00.981453"]]
|
784536
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784537
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784538
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -224434503 LIMIT 1[0m
|
784539
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -224434503], ["username", "billy_45"], ["access_token", "8c6510b080b6fac997bdee89e8088397"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:00.983941"], ["updated_at", "2015-03-20 19:04:00.983941"]]
|
784540
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784542
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -149839026 LIMIT 1[0m
|
784543
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -149839026], ["username", "billy_46"], ["access_token", "310f3afb39c573fb9fafc63a0a6915a4"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:00.986282"], ["updated_at", "2015-03-20 19:04:00.986282"]]
|
784544
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784546
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -687355093 LIMIT 1[0m
|
784547
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -687355093], ["username", "billy_47"], ["access_token", "4853e522a1bae7dde60bab71de0a1fea"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:00.988659"], ["updated_at", "2015-03-20 19:04:00.988659"]]
|
784548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784550
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1179202341 LIMIT 1[0m
|
784551
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1179202341], ["username", "billy_48"], ["access_token", "b40f3a29241e46d2420c1c1367bc7284"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:00.990975"], ["updated_at", "2015-03-20 19:04:00.990975"]]
|
784552
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784553
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784554
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -388390643 LIMIT 1[0m
|
784555
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -388390643], ["username", "billy_49"], ["access_token", "d586316e33a79a686cdeda2ebf20f178"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:00.993338"], ["updated_at", "2015-03-20 19:04:00.993338"]]
|
784556
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784557
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784558
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%')[0m
|
784559
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."username" LIKE 'jstra%') ORDER BY "openstax_accounts_accounts"."username" ASC
|
784560
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784561
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
784562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
784563
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784564
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -525091034 LIMIT 1[0m
|
784565
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -525091034], ["username", "jstrav"], ["access_token", "89ae4bd085165e6d11b9da49b7d57c14"], ["first_name", "John"], ["last_name", "Stravinsky"], ["created_at", "2015-03-20 19:04:01.004517"], ["updated_at", "2015-03-20 19:04:01.004517"]]
|
784566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784567
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784568
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2036337289 LIMIT 1[0m
|
784569
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "full_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2036337289], ["username", "mary"], ["access_token", "a5f555c81df317156cc2925e13cb7b01"], ["first_name", "Mary"], ["last_name", "Mighty"], ["full_name", "Mary Mighty"], ["created_at", "2015-03-20 19:04:01.007179"], ["updated_at", "2015-03-20 19:04:01.007179"]]
|
784570
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784572
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1037743206 LIMIT 1[0m
|
784573
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1037743206], ["username", "jstead"], ["access_token", "dd7d6f6ec0b91fbdf6687ad2985159a8"], ["first_name", "John"], ["last_name", "Stead"], ["created_at", "2015-03-20 19:04:01.009667"], ["updated_at", "2015-03-20 19:04:01.009667"]]
|
784574
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784575
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784576
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1814940875 LIMIT 1[0m
|
784577
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1814940875], ["username", "bigbear"], ["access_token", "447f841f9b7c1d1fc002d132ec1445db"], ["first_name", "Bob"], ["last_name", "JST"], ["created_at", "2015-03-20 19:04:01.011935"], ["updated_at", "2015-03-20 19:04:01.011935"]]
|
784578
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784579
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784580
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2080291163 LIMIT 1[0m
|
784581
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2080291163], ["username", "billy_00"], ["access_token", "ba4d7481b95507e5f5dfbc40e31e61eb"], ["first_name", "Billy00"], ["last_name", "Bob_49"], ["created_at", "2015-03-20 19:04:01.014315"], ["updated_at", "2015-03-20 19:04:01.014315"]]
|
784582
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784584
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1865759028 LIMIT 1[0m
|
784585
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1865759028], ["username", "billy_01"], ["access_token", "7b9ac1389f5409c4a011d172ecef4b95"], ["first_name", "Billy01"], ["last_name", "Bob_48"], ["created_at", "2015-03-20 19:04:01.016552"], ["updated_at", "2015-03-20 19:04:01.016552"]]
|
784586
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784588
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1607557657 LIMIT 1[0m
|
784589
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1607557657], ["username", "billy_02"], ["access_token", "42c1ef1c2d1f038f4e43f6e08a4cb9c1"], ["first_name", "Billy02"], ["last_name", "Bob_47"], ["created_at", "2015-03-20 19:04:01.018966"], ["updated_at", "2015-03-20 19:04:01.018966"]]
|
784590
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784591
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784592
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -100084273 LIMIT 1[0m
|
784593
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -100084273], ["username", "billy_03"], ["access_token", "805398676d4c1f907cf84a23863009a2"], ["first_name", "Billy03"], ["last_name", "Bob_46"], ["created_at", "2015-03-20 19:04:01.021275"], ["updated_at", "2015-03-20 19:04:01.021275"]]
|
784594
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784595
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784596
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1516251869 LIMIT 1[0m
|
784597
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1516251869], ["username", "billy_04"], ["access_token", "ba68f5248b0c36c78736eff9c77d0c51"], ["first_name", "Billy04"], ["last_name", "Bob_45"], ["created_at", "2015-03-20 19:04:01.023509"], ["updated_at", "2015-03-20 19:04:01.023509"]]
|
784598
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784599
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784600
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1366065379 LIMIT 1[0m
|
784601
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1366065379], ["username", "billy_05"], ["access_token", "830acb579ed49b5dc9b3272530a55ae6"], ["first_name", "Billy05"], ["last_name", "Bob_44"], ["created_at", "2015-03-20 19:04:01.025895"], ["updated_at", "2015-03-20 19:04:01.025895"]]
|
784602
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784603
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784604
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1422399033 LIMIT 1[0m
|
784605
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1422399033], ["username", "billy_06"], ["access_token", "f742a06aef39b6a676d909c5a67f8560"], ["first_name", "Billy06"], ["last_name", "Bob_43"], ["created_at", "2015-03-20 19:04:01.028075"], ["updated_at", "2015-03-20 19:04:01.028075"]]
|
784606
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784607
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784608
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1711404637 LIMIT 1[0m
|
784609
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1711404637], ["username", "billy_07"], ["access_token", "9f2a13d6c4462322c367bb2de97d1707"], ["first_name", "Billy07"], ["last_name", "Bob_42"], ["created_at", "2015-03-20 19:04:01.030253"], ["updated_at", "2015-03-20 19:04:01.030253"]]
|
784610
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784611
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784612
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -251595563 LIMIT 1[0m
|
784613
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -251595563], ["username", "billy_08"], ["access_token", "fe3663dac2817884c120d104c244eb8d"], ["first_name", "Billy08"], ["last_name", "Bob_41"], ["created_at", "2015-03-20 19:04:01.032513"], ["updated_at", "2015-03-20 19:04:01.032513"]]
|
784614
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784616
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1951058696 LIMIT 1[0m
|
784617
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1951058696], ["username", "billy_09"], ["access_token", "f3f4a513c539b6183df5f10301f3c3fd"], ["first_name", "Billy09"], ["last_name", "Bob_40"], ["created_at", "2015-03-20 19:04:01.034749"], ["updated_at", "2015-03-20 19:04:01.034749"]]
|
784618
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784619
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784620
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -818238205 LIMIT 1[0m
|
784621
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -818238205], ["username", "billy_10"], ["access_token", "db4303fc9d60c51a626ea08390607ae2"], ["first_name", "Billy10"], ["last_name", "Bob_39"], ["created_at", "2015-03-20 19:04:01.037000"], ["updated_at", "2015-03-20 19:04:01.037000"]]
|
784622
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784624
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -563612824 LIMIT 1[0m
|
784625
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -563612824], ["username", "billy_11"], ["access_token", "eb19860d8ecddea12923f05d840b094a"], ["first_name", "Billy11"], ["last_name", "Bob_38"], ["created_at", "2015-03-20 19:04:01.039422"], ["updated_at", "2015-03-20 19:04:01.039422"]]
|
784626
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784628
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1395206726 LIMIT 1[0m
|
784629
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1395206726], ["username", "billy_12"], ["access_token", "b3466cbc22f1ae7f0683aa19601b33dd"], ["first_name", "Billy12"], ["last_name", "Bob_37"], ["created_at", "2015-03-20 19:04:01.041752"], ["updated_at", "2015-03-20 19:04:01.041752"]]
|
784630
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784632
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -841319187 LIMIT 1[0m
|
784633
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -841319187], ["username", "billy_13"], ["access_token", "1324ac007e2e997cf6543e1d0594b47f"], ["first_name", "Billy13"], ["last_name", "Bob_36"], ["created_at", "2015-03-20 19:04:01.044234"], ["updated_at", "2015-03-20 19:04:01.044234"]]
|
784634
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784636
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2133546501 LIMIT 1[0m
|
784637
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2133546501], ["username", "billy_14"], ["access_token", "57529dec75672df1c6c679fb999efd7b"], ["first_name", "Billy14"], ["last_name", "Bob_35"], ["created_at", "2015-03-20 19:04:01.047164"], ["updated_at", "2015-03-20 19:04:01.047164"]]
|
784638
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784639
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784640
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1726852450 LIMIT 1[0m
|
784641
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1726852450], ["username", "billy_15"], ["access_token", "89d2722d694cf55d3fd6ef7f59c87dc3"], ["first_name", "Billy15"], ["last_name", "Bob_34"], ["created_at", "2015-03-20 19:04:01.049700"], ["updated_at", "2015-03-20 19:04:01.049700"]]
|
784642
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784643
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784644
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -448440126 LIMIT 1[0m
|
784645
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -448440126], ["username", "billy_16"], ["access_token", "4cbc9d8093ebd88b3b3d8e4d23bcd8da"], ["first_name", "Billy16"], ["last_name", "Bob_33"], ["created_at", "2015-03-20 19:04:01.052233"], ["updated_at", "2015-03-20 19:04:01.052233"]]
|
784646
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784648
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1071881621 LIMIT 1[0m
|
784649
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1071881621], ["username", "billy_17"], ["access_token", "ce54de9d4e67861a9dfc87499e2c3b84"], ["first_name", "Billy17"], ["last_name", "Bob_32"], ["created_at", "2015-03-20 19:04:01.054766"], ["updated_at", "2015-03-20 19:04:01.054766"]]
|
784650
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784651
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784652
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -146536142 LIMIT 1[0m
|
784653
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -146536142], ["username", "billy_18"], ["access_token", "e5231f52f47e300edf4dcbe7df7032a0"], ["first_name", "Billy18"], ["last_name", "Bob_31"], ["created_at", "2015-03-20 19:04:01.057159"], ["updated_at", "2015-03-20 19:04:01.057159"]]
|
784654
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784656
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1489140716 LIMIT 1[0m
|
784657
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1489140716], ["username", "billy_19"], ["access_token", "a08010be61b7bd616eccc7d63f2240fa"], ["first_name", "Billy19"], ["last_name", "Bob_30"], ["created_at", "2015-03-20 19:04:01.059612"], ["updated_at", "2015-03-20 19:04:01.059612"]]
|
784658
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784660
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -827040302 LIMIT 1[0m
|
784661
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -827040302], ["username", "billy_20"], ["access_token", "ab7b77e5707ce1944aa921e114ed6ef0"], ["first_name", "Billy20"], ["last_name", "Bob_29"], ["created_at", "2015-03-20 19:04:01.062133"], ["updated_at", "2015-03-20 19:04:01.062133"]]
|
784662
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784664
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -996211392 LIMIT 1[0m
|
784665
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -996211392], ["username", "billy_21"], ["access_token", "be3a1b426a3b039a86e6590060748350"], ["first_name", "Billy21"], ["last_name", "Bob_28"], ["created_at", "2015-03-20 19:04:01.064613"], ["updated_at", "2015-03-20 19:04:01.064613"]]
|
784666
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784667
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784668
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -301456868 LIMIT 1[0m
|
784669
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -301456868], ["username", "billy_22"], ["access_token", "ae2090f5fded6993349f53ba9c6dccd5"], ["first_name", "Billy22"], ["last_name", "Bob_27"], ["created_at", "2015-03-20 19:04:01.067003"], ["updated_at", "2015-03-20 19:04:01.067003"]]
|
784670
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784672
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -759401213 LIMIT 1[0m
|
784673
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -759401213], ["username", "billy_23"], ["access_token", "e8e1806c3ec54aa8a98081b607b3dbff"], ["first_name", "Billy23"], ["last_name", "Bob_26"], ["created_at", "2015-03-20 19:04:01.077125"], ["updated_at", "2015-03-20 19:04:01.077125"]]
|
784674
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784675
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784676
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -927104943 LIMIT 1[0m
|
784677
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -927104943], ["username", "billy_24"], ["access_token", "68e2a9e1f81a0562a6e21dfabbc913c0"], ["first_name", "Billy24"], ["last_name", "Bob_25"], ["created_at", "2015-03-20 19:04:01.079835"], ["updated_at", "2015-03-20 19:04:01.079835"]]
|
784678
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784680
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -205881602 LIMIT 1[0m
|
784681
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -205881602], ["username", "billy_25"], ["access_token", "0b14bd1c7bf60d3e09c7baa7e820d3f1"], ["first_name", "Billy25"], ["last_name", "Bob_24"], ["created_at", "2015-03-20 19:04:01.082566"], ["updated_at", "2015-03-20 19:04:01.082566"]]
|
784682
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784683
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784684
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1035911028 LIMIT 1[0m
|
784685
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1035911028], ["username", "billy_26"], ["access_token", "04521b836f494b7308de178ef13e0ea5"], ["first_name", "Billy26"], ["last_name", "Bob_23"], ["created_at", "2015-03-20 19:04:01.085308"], ["updated_at", "2015-03-20 19:04:01.085308"]]
|
784686
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784687
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784688
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -96040034 LIMIT 1[0m
|
784689
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -96040034], ["username", "billy_27"], ["access_token", "58846740c2055daa68d3c0aad60fbd5b"], ["first_name", "Billy27"], ["last_name", "Bob_22"], ["created_at", "2015-03-20 19:04:01.087999"], ["updated_at", "2015-03-20 19:04:01.087999"]]
|
784690
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784691
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784692
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -323084828 LIMIT 1[0m
|
784693
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -323084828], ["username", "billy_28"], ["access_token", "26d36e78081291ab5a888d55e5828592"], ["first_name", "Billy28"], ["last_name", "Bob_21"], ["created_at", "2015-03-20 19:04:01.090612"], ["updated_at", "2015-03-20 19:04:01.090612"]]
|
784694
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784695
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784696
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1559910613 LIMIT 1[0m
|
784697
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1559910613], ["username", "billy_29"], ["access_token", "e2ed74dcf614efb23ddbd612c1745389"], ["first_name", "Billy29"], ["last_name", "Bob_20"], ["created_at", "2015-03-20 19:04:01.093427"], ["updated_at", "2015-03-20 19:04:01.093427"]]
|
784698
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784700
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2071194258 LIMIT 1[0m
|
784701
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2071194258], ["username", "billy_30"], ["access_token", "9e884527efad5c40dbccd4df10b89644"], ["first_name", "Billy30"], ["last_name", "Bob_19"], ["created_at", "2015-03-20 19:04:01.096268"], ["updated_at", "2015-03-20 19:04:01.096268"]]
|
784702
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784704
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -298635063 LIMIT 1[0m
|
784705
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -298635063], ["username", "billy_31"], ["access_token", "82761fd19fad9a251e6b9816b6fd6cac"], ["first_name", "Billy31"], ["last_name", "Bob_18"], ["created_at", "2015-03-20 19:04:01.098886"], ["updated_at", "2015-03-20 19:04:01.098886"]]
|
784706
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784708
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -802802216 LIMIT 1[0m
|
784709
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -802802216], ["username", "billy_32"], ["access_token", "024d0acd94dcf6f2e2c860f2a580e634"], ["first_name", "Billy32"], ["last_name", "Bob_17"], ["created_at", "2015-03-20 19:04:01.101584"], ["updated_at", "2015-03-20 19:04:01.101584"]]
|
784710
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784712
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1067487473 LIMIT 1[0m
|
784713
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1067487473], ["username", "billy_33"], ["access_token", "9cf9584de93855f9c7fd4e3f35fdf749"], ["first_name", "Billy33"], ["last_name", "Bob_16"], ["created_at", "2015-03-20 19:04:01.104154"], ["updated_at", "2015-03-20 19:04:01.104154"]]
|
784714
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784716
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -875245245 LIMIT 1[0m
|
784717
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -875245245], ["username", "billy_34"], ["access_token", "09cb0ad1cdc6c205f03aa48a5954bd73"], ["first_name", "Billy34"], ["last_name", "Bob_15"], ["created_at", "2015-03-20 19:04:01.106749"], ["updated_at", "2015-03-20 19:04:01.106749"]]
|
784718
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784719
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784720
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1851840160 LIMIT 1[0m
|
784721
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1851840160], ["username", "billy_35"], ["access_token", "2b5b9c686ec23f4e3fa91a520b7e6d6c"], ["first_name", "Billy35"], ["last_name", "Bob_14"], ["created_at", "2015-03-20 19:04:01.109523"], ["updated_at", "2015-03-20 19:04:01.109523"]]
|
784722
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784724
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2108893577 LIMIT 1[0m
|
784725
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2108893577], ["username", "billy_36"], ["access_token", "eedb3c075609ac80aefafaf6c0aeae28"], ["first_name", "Billy36"], ["last_name", "Bob_13"], ["created_at", "2015-03-20 19:04:01.112545"], ["updated_at", "2015-03-20 19:04:01.112545"]]
|
784726
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784727
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784728
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1521910 LIMIT 1[0m
|
784729
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1521910], ["username", "billy_37"], ["access_token", "497d5a5d26087470979ff609ce3a697b"], ["first_name", "Billy37"], ["last_name", "Bob_12"], ["created_at", "2015-03-20 19:04:01.115096"], ["updated_at", "2015-03-20 19:04:01.115096"]]
|
784730
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784732
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1842268484 LIMIT 1[0m
|
784733
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1842268484], ["username", "billy_38"], ["access_token", "c40d0ff6db7246e134a8fa26ba9b1647"], ["first_name", "Billy38"], ["last_name", "Bob_11"], ["created_at", "2015-03-20 19:04:01.117571"], ["updated_at", "2015-03-20 19:04:01.117571"]]
|
784734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784736
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1184580958 LIMIT 1[0m
|
784737
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1184580958], ["username", "billy_39"], ["access_token", "8b8848b22760478aa36d1718d6c51ccf"], ["first_name", "Billy39"], ["last_name", "Bob_10"], ["created_at", "2015-03-20 19:04:01.119811"], ["updated_at", "2015-03-20 19:04:01.119811"]]
|
784738
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784739
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784740
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -696490899 LIMIT 1[0m
|
784741
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -696490899], ["username", "billy_40"], ["access_token", "569d900abd605e99a7e3b9ba162fcc7a"], ["first_name", "Billy40"], ["last_name", "Bob_09"], ["created_at", "2015-03-20 19:04:01.122153"], ["updated_at", "2015-03-20 19:04:01.122153"]]
|
784742
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784743
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784744
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1534399411 LIMIT 1[0m
|
784745
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1534399411], ["username", "billy_41"], ["access_token", "8fbb35b84c867996bd000249c4dbcce3"], ["first_name", "Billy41"], ["last_name", "Bob_08"], ["created_at", "2015-03-20 19:04:01.124282"], ["updated_at", "2015-03-20 19:04:01.124282"]]
|
784746
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784747
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784748
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -570264810 LIMIT 1[0m
|
784749
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -570264810], ["username", "billy_42"], ["access_token", "afde5e863ce3ca97a614fbfca4172089"], ["first_name", "Billy42"], ["last_name", "Bob_07"], ["created_at", "2015-03-20 19:04:01.126544"], ["updated_at", "2015-03-20 19:04:01.126544"]]
|
784750
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784751
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784752
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -640142716 LIMIT 1[0m
|
784753
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -640142716], ["username", "billy_43"], ["access_token", "618e7d9112efb5e4410232d4804244a4"], ["first_name", "Billy43"], ["last_name", "Bob_06"], ["created_at", "2015-03-20 19:04:01.129135"], ["updated_at", "2015-03-20 19:04:01.129135"]]
|
784754
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784756
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1427013104 LIMIT 1[0m
|
784757
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1427013104], ["username", "billy_44"], ["access_token", "7ff3bf0c2b0f52a464d417e69d19ee29"], ["first_name", "Billy44"], ["last_name", "Bob_05"], ["created_at", "2015-03-20 19:04:01.131516"], ["updated_at", "2015-03-20 19:04:01.131516"]]
|
784758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784760
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -2024628567 LIMIT 1[0m
|
784761
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -2024628567], ["username", "billy_45"], ["access_token", "0d50fdce1ebfe2a1b7e36ed1bbe32d8a"], ["first_name", "Billy45"], ["last_name", "Bob_04"], ["created_at", "2015-03-20 19:04:01.133878"], ["updated_at", "2015-03-20 19:04:01.133878"]]
|
784762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784763
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784764
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1115697318 LIMIT 1[0m
|
784765
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1115697318], ["username", "billy_46"], ["access_token", "6550d20dc1855dd4be949242704ceafc"], ["first_name", "Billy46"], ["last_name", "Bob_03"], ["created_at", "2015-03-20 19:04:01.136480"], ["updated_at", "2015-03-20 19:04:01.136480"]]
|
784766
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784768
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -136237628 LIMIT 1[0m
|
784769
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -136237628], ["username", "billy_47"], ["access_token", "bb5daa7e6ca5c3e88041118766992d4d"], ["first_name", "Billy47"], ["last_name", "Bob_02"], ["created_at", "2015-03-20 19:04:01.138850"], ["updated_at", "2015-03-20 19:04:01.138850"]]
|
784770
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784771
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784772
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1814065395 LIMIT 1[0m
|
784773
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -1814065395], ["username", "billy_48"], ["access_token", "b30a799ede7e8c239d6035a2e62b00b7"], ["first_name", "Billy48"], ["last_name", "Bob_01"], ["created_at", "2015-03-20 19:04:01.141240"], ["updated_at", "2015-03-20 19:04:01.141240"]]
|
784774
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784776
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -138686129 LIMIT 1[0m
|
784777
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "first_name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["openstax_uid", -138686129], ["username", "billy_49"], ["access_token", "b3b53664cb353f1da6b340eb652ebaf8"], ["first_name", "Billy49"], ["last_name", "Bob_00"], ["created_at", "2015-03-20 19:04:01.143892"], ["updated_at", "2015-03-20 19:04:01.143892"]]
|
784778
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784779
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784780
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts"[0m
|
784781
|
+
[1m[35mOpenStax::Accounts::Account Load (1.2ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."username" ASC
|
784782
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784783
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
784784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
784785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784786
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1[0m
|
784787
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", 1], ["username", "some_user"], ["access_token", "464c14f8a54cbf2cb8f3a8a95f8259ef"], ["created_at", "2015-03-20 19:04:01.167888"], ["updated_at", "2015-03-20 19:04:01.167888"]]
|
784788
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784789
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784790
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["account_id", 1], ["created_at", "2015-03-20 19:04:01.169624"], ["updated_at", "2015-03-20 19:04:01.169624"]]
|
784791
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784792
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784793
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
|
784794
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", 2], ["username", "another_user"], ["access_token", "c2980d142469cbeac520796defe9bf43"], ["created_at", "2015-03-20 19:04:01.171963"], ["updated_at", "2015-03-20 19:04:01.171963"]]
|
784795
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784797
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("account_id", "created_at", "updated_at") VALUES (?, ?, ?) [["account_id", 2], ["created_at", "2015-03-20 19:04:01.173688"], ["updated_at", "2015-03-20 19:04:01.173688"]]
|
784798
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784799
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784800
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1524116186 LIMIT 1[0m
|
784801
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1524116186], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.185319"], ["updated_at", "2015-03-20 19:04:01.185319"]]
|
784802
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784803
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784804
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1976169108 LIMIT 1[0m
|
784805
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1976169108], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.190015"], ["updated_at", "2015-03-20 19:04:01.190015"]]
|
784806
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784808
|
+
[1m[36mOpenStax::Accounts::GroupNesting Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -1976169108 LIMIT 1[0m
|
784809
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 2]]
|
784810
|
+
[1m[36mSQL (0.1ms)[0m [1mSELECT "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" = ?[0m [["container_group_id", -1976169108]]
|
784811
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
|
784812
|
+
- -1976169108
|
784813
|
+
' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
|
784814
|
+
[1m[36mOpenStax::Accounts::Group Load (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1[0m [["id", 1]]
|
784815
|
+
[1m[35mSQL (0.1ms)[0m SELECT DISTINCT "openstax_accounts_groups"."id" FROM "openstax_accounts_groups" LEFT OUTER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["member_group_id", -1524116186]]
|
784816
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
|
784817
|
+
- -1524116186
|
784818
|
+
' WHERE "openstax_accounts_groups"."id" = ?[0m [["id", 1]]
|
784819
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1976169108
|
784820
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -1524116186[0m
|
784821
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", -1524116186], ["member_group_id", -1976169108], ["created_at", "2015-03-20 19:04:01.196073"], ["updated_at", "2015-03-20 19:04:01.196073"]]
|
784822
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784823
|
+
[1m[35mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."group_id" = -1976169108) LIMIT 1
|
784824
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784825
|
+
[1m[35mOpenStax::Accounts::GroupMember Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."group_id" = -1976169108) LIMIT 1
|
784826
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", -1976169108], ["user_id", 1], ["created_at", "2015-03-20 19:04:01.217619"], ["updated_at", "2015-03-20 19:04:01.217619"]]
|
784827
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784828
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784829
|
+
[1m[35mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 1 AND "openstax_accounts_group_members"."id" != 1 AND "openstax_accounts_group_members"."group_id" = -1976169108) LIMIT 1
|
784830
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "openstax_accounts_group_members" SET "group_id" = ?, "updated_at" = ? WHERE "openstax_accounts_group_members"."id" = ?[0m [["group_id", -1976169108], ["updated_at", "2015-03-20 19:04:01.225137"], ["id", 1]]
|
784831
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784832
|
+
[1m[36mOwnership Load (0.1ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ?[0m [["owner_id", 1], ["owner_type", "User"]]
|
784833
|
+
[1m[35mOpenStax::Accounts::Group Load (0.2ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
|
784834
|
+
[1m[36mOpenStax::Accounts::Group Load (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1[0m [["id", 2]]
|
784835
|
+
[1m[35mSQL (0.0ms)[0m SELECT DISTINCT "openstax_accounts_groups"."id" FROM "openstax_accounts_groups" LEFT OUTER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."container_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."member_group_id" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["member_group_id", -1976169108]]
|
784836
|
+
[1m[36mSQL (0.2ms)[0m [1mSELECT "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[0m [["member_group_id", -1976169108]]
|
784837
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
|
784838
|
+
- -1976169108
|
784839
|
+
- -1524116186
|
784840
|
+
' WHERE "openstax_accounts_groups"."id" = ? [["id", 2]]
|
784841
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784842
|
+
[1m[35mOwnership Load (0.2ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784843
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
784844
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "User"], ["created_at", "2015-03-20 19:04:01.255524"], ["updated_at", "2015-03-20 19:04:01.255524"]]
|
784845
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784846
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
784847
|
+
[1m[36mOwnership Load (0.0ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ?[0m [["owner_id", 1], ["owner_type", "User"]]
|
784848
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
|
784849
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784850
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784852
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "User"], ["created_at", "2015-03-20 19:04:01.262404"], ["updated_at", "2015-03-20 19:04:01.262404"]]
|
784853
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784854
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
784855
|
+
[1m[36mOwnership Load (0.0ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ?[0m [["owner_id", 1], ["owner_type", "User"]]
|
784856
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
|
784857
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784858
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784859
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784860
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 2], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-03-20 19:04:01.269141"], ["updated_at", "2015-03-20 19:04:01.269141"]]
|
784861
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784862
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
784863
|
+
[1m[36mOwnership Load (0.0ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ?[0m [["owner_id", 1], ["owner_type", "User"]]
|
784864
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
|
784865
|
+
[1m[36mOpenStax::Accounts::Group Load (0.2ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784866
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784867
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784868
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784869
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784870
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "ownerships" ("owner_id", "owner_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["owner_id", 1], ["owner_type", "OpenStax::Accounts::Group"], ["created_at", "2015-03-20 19:04:01.277689"], ["updated_at", "2015-03-20 19:04:01.277689"]]
|
784871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784872
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
784873
|
+
[1m[36mOwnership Load (0.0ms)[0m [1mSELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_id" = ? AND "ownerships"."owner_type" = ?[0m [["owner_id", 1], ["owner_type", "User"]]
|
784874
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_members"."group_id" INNER JOIN "openstax_accounts_accounts" ON "openstax_accounts_group_members"."user_id" = "openstax_accounts_accounts"."openstax_uid" WHERE "openstax_accounts_accounts"."id" = ? [["id", 1]]
|
784875
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784876
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784877
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784878
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784879
|
+
[1m[36mOpenStax::Accounts::Group Load (0.2ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IN (-1976169108, -1524116186)[0m
|
784880
|
+
[1m[35mOwnership Load (0.1ms)[0m SELECT "ownerships".* FROM "ownerships" WHERE "ownerships"."owner_type" = 'OpenStax::Accounts::Group' AND "ownerships"."owner_id" IN (2, 1)
|
784881
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
784882
|
+
[1m[35m (0.0ms)[0m begin transaction
|
784883
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" IS NULL LIMIT 1[0m
|
784884
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784885
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1[0m
|
784886
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "MyGroup"], ["openstax_uid", 1], ["created_at", "2015-03-20 19:04:01.298645"], ["updated_at", "2015-03-20 19:04:01.298645"]]
|
784887
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784888
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 1 LIMIT 1
|
784889
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
784890
|
+
[1m[35m (0.1ms)[0m begin transaction
|
784891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784892
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
784893
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.304871"], ["updated_at", "2015-03-20 19:04:01.304871"]]
|
784894
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784895
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784896
|
+
Processing by OauthController#token as */*
|
784897
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
784898
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
784899
|
+
Started POST "/api/dummy?test=true" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784900
|
+
Processing by Api::DummyController#dummy as */*
|
784901
|
+
Parameters: {"test"=>"true"}
|
784902
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
784903
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
784904
|
+
[1m[35m (0.3ms)[0m begin transaction
|
784905
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784906
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -961527898 LIMIT 1
|
784907
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -961527898], ["username", "152ae27fe174d789b25451622dcb3f19"], ["access_token", "8fc63093d05204115939d24e5c39e117"], ["created_at", "2015-03-20 19:04:01.354801"], ["updated_at", "2015-03-20 19:04:01.354801"]]
|
784908
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784909
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784910
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2077803864 LIMIT 1
|
784911
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -2077803864], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.357673"], ["updated_at", "2015-03-20 19:04:01.357673"]]
|
784912
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784914
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -2077803864 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
|
784915
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784916
|
+
Started DELETE "/api/groups/-2077803864" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784917
|
+
Processing by Api::GroupsController#destroy as application/vnd.accounts.openstax.v1
|
784918
|
+
Parameters: {"id"=>"-2077803864"}
|
784919
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
784920
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
784921
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
784922
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784923
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -635451453 LIMIT 1[0m
|
784924
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -635451453], ["username", "b4b3a3663583542804c409f9857654b2"], ["access_token", "eceb0edc60a3d22d3578cefb74de0733"], ["created_at", "2015-03-20 19:04:01.373890"], ["updated_at", "2015-03-20 19:04:01.373890"]]
|
784925
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784926
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
784927
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1380853142 LIMIT 1[0m
|
784928
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -1380853142], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.376761"], ["updated_at", "2015-03-20 19:04:01.376761"]]
|
784929
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784930
|
+
Started POST "/api/groups" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784931
|
+
Processing by Api::GroupsController#create as application/vnd.accounts.openstax.v1
|
784932
|
+
Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil}
|
784933
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
784934
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
784935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
784936
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784937
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1143775111 LIMIT 1[0m
|
784938
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["openstax_uid", -1143775111], ["username", "461634036d31dabca37d294ccc454642"], ["access_token", "06ff33114d341e8652d03a96de279821"], ["created_at", "2015-03-20 19:04:01.386379"], ["updated_at", "2015-03-20 19:04:01.386379"]]
|
784939
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784940
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784941
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -75220187 LIMIT 1[0m
|
784942
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", -75220187], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.388888"], ["updated_at", "2015-03-20 19:04:01.388888"]]
|
784943
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784944
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784945
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = -75220187 AND "openstax_accounts_groups"."id" != 1) LIMIT 1[0m
|
784946
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784947
|
+
Started PUT "/api/groups/-75220187" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784948
|
+
Processing by Api::GroupsController#update as application/vnd.accounts.openstax.v1
|
784949
|
+
Parameters: {"{\"name\":\"MyGroup\",\"is_public\":false}"=>nil, "id"=>"-75220187"}
|
784950
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
784951
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
784952
|
+
[1m[35m (0.0ms)[0m begin transaction
|
784953
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784954
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1943165105 LIMIT 1
|
784955
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -1943165105], ["username", "64601fdf1cbda41d5b06d59fb3a4bace"], ["access_token", "d5470a10cd2528d799611394766c7d7e"], ["created_at", "2015-03-20 19:04:01.399708"], ["updated_at", "2015-03-20 19:04:01.399708"]]
|
784956
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784957
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784958
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -380013051 LIMIT 1
|
784959
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -380013051], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.402370"], ["updated_at", "2015-03-20 19:04:01.402370"]]
|
784960
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784961
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784962
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1999851045 LIMIT 1
|
784963
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -1999851045], ["username", "495699b26001ed7127ef02d131ea1ba7"], ["access_token", "26eee6bce10e18a6587c0ff7f4571cf8"], ["created_at", "2015-03-20 19:04:01.404725"], ["updated_at", "2015-03-20 19:04:01.404725"]]
|
784964
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784965
|
+
Started POST "/api/groups/-380013051/members/-1999851045" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784966
|
+
Processing by Api::GroupMembersController#create as application/vnd.accounts.openstax.v1
|
784967
|
+
Parameters: {"group_id"=>"-380013051", "user_id"=>"-1999851045"}
|
784968
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
784969
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
784970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
784971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784972
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -835432254 LIMIT 1
|
784973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -835432254], ["username", "9b9be463e82fa50115abd367852423a7"], ["access_token", "b4cd96885291cffc0ed27af876bb7432"], ["created_at", "2015-03-20 19:04:01.421137"], ["updated_at", "2015-03-20 19:04:01.421137"]]
|
784974
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784975
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784976
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -708977092 LIMIT 1
|
784977
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -708977092], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.423720"], ["updated_at", "2015-03-20 19:04:01.423720"]]
|
784978
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784979
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784980
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -474318065 LIMIT 1
|
784981
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -474318065], ["username", "14ace4b87ea9b28ca87137633a558d22"], ["access_token", "e82a4b4f00a4a1ddcad7113f4e073b32"], ["created_at", "2015-03-20 19:04:01.426435"], ["updated_at", "2015-03-20 19:04:01.426435"]]
|
784982
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784984
|
+
[1m[35mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = -474318065 AND "openstax_accounts_group_members"."group_id" = -708977092) LIMIT 1
|
784985
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", -708977092], ["user_id", -474318065], ["created_at", "2015-03-20 19:04:01.429037"], ["updated_at", "2015-03-20 19:04:01.429037"]]
|
784986
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784987
|
+
Started DELETE "/api/groups/-708977092/members/-474318065" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
784988
|
+
Processing by Api::GroupMembersController#destroy as application/vnd.accounts.openstax.v1
|
784989
|
+
Parameters: {"group_id"=>"-708977092", "user_id"=>"-474318065"}
|
784990
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
784991
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
784992
|
+
[1m[35m (0.0ms)[0m begin transaction
|
784993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784994
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1208563093 LIMIT 1
|
784995
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -1208563093], ["username", "46617ebb2bc77a25e681b405f730600e"], ["access_token", "df969a45b8fb8ffbf4fc8c577df96685"], ["created_at", "2015-03-20 19:04:01.438728"], ["updated_at", "2015-03-20 19:04:01.438728"]]
|
784996
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
784997
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
784998
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -2114816084 LIMIT 1
|
784999
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -2114816084], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.444560"], ["updated_at", "2015-03-20 19:04:01.444560"]]
|
785000
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785001
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785002
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -992055268 LIMIT 1
|
785003
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -992055268], ["username", "9ca38c261c5aea9e5327d9df7a9e44df"], ["access_token", "d4e857d661d12aef0e60fc71bbf52a7d"], ["created_at", "2015-03-20 19:04:01.449100"], ["updated_at", "2015-03-20 19:04:01.449100"]]
|
785004
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785005
|
+
Started POST "/api/groups/-2114816084/owners/-992055268" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785006
|
+
Processing by Api::GroupOwnersController#create as application/vnd.accounts.openstax.v1
|
785007
|
+
Parameters: {"group_id"=>"-2114816084", "user_id"=>"-992055268"}
|
785008
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785009
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
785010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785012
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1690729305 LIMIT 1
|
785013
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -1690729305], ["username", "3b4ab7e276498eaee630521757e4c056"], ["access_token", "64d4ceb3b27d051ca7d5994f8700f069"], ["created_at", "2015-03-20 19:04:01.465148"], ["updated_at", "2015-03-20 19:04:01.465148"]]
|
785014
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785015
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785016
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -396716980 LIMIT 1
|
785017
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -396716980], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.468139"], ["updated_at", "2015-03-20 19:04:01.468139"]]
|
785018
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
785019
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
785020
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -359605276 LIMIT 1
|
785021
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -359605276], ["username", "48cda86b5d50ddf07377248ae2245172"], ["access_token", "36bdefc3a22cacb99eaab167c67928cd"], ["created_at", "2015-03-20 19:04:01.471057"], ["updated_at", "2015-03-20 19:04:01.471057"]]
|
785022
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785024
|
+
[1m[35mOpenStax::Accounts::GroupOwner Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = -359605276 AND "openstax_accounts_group_owners"."group_id" = -396716980) LIMIT 1
|
785025
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", -396716980], ["user_id", -359605276], ["created_at", "2015-03-20 19:04:01.474279"], ["updated_at", "2015-03-20 19:04:01.474279"]]
|
785026
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
785027
|
+
Started DELETE "/api/groups/-396716980/owners/-359605276" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785028
|
+
Processing by Api::GroupOwnersController#destroy as application/vnd.accounts.openstax.v1
|
785029
|
+
Parameters: {"group_id"=>"-396716980", "user_id"=>"-359605276"}
|
785030
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785031
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
785032
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785033
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785034
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785035
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.485025"], ["updated_at", "2015-03-20 19:04:01.485025"]]
|
785036
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785037
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785038
|
+
Processing by OauthController#token as */*
|
785039
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785040
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
785041
|
+
Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785042
|
+
Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
|
785043
|
+
Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
|
785044
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785045
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
785046
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785047
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785048
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785049
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.509170"], ["updated_at", "2015-03-20 19:04:01.509170"]]
|
785050
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785051
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785052
|
+
Processing by OauthController#token as */*
|
785053
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785054
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785055
|
+
Started GET "/api/application_users?q=something" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785056
|
+
Processing by Api::ApplicationUsersController#index as application/vnd.accounts.openstax.v1
|
785057
|
+
Parameters: {"q"=>"something"}
|
785058
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785059
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
785060
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785061
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785062
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785063
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.522995"], ["updated_at", "2015-03-20 19:04:01.522995"]]
|
785064
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785065
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785066
|
+
Processing by OauthController#token as */*
|
785067
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785068
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785069
|
+
Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785070
|
+
Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
|
785071
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785072
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
785073
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785074
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
785075
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785076
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.537500"], ["updated_at", "2015-03-20 19:04:01.537500"]]
|
785077
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785078
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785079
|
+
Processing by OauthController#token as */*
|
785080
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785081
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785082
|
+
Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785083
|
+
Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
|
785084
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785085
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
785086
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785088
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785089
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "first_name", "last_name", "full_name", "title", "openstax_uid", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["username", "some_user"], ["first_name", "Some"], ["last_name", "User"], ["full_name", "SomeUser"], ["title", "Sir"], ["openstax_uid", 1], ["access_token", "secret"], ["created_at", "2015-03-20 19:04:01.558280"], ["updated_at", "2015-03-20 19:04:01.558280"]]
|
785090
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785091
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785092
|
+
Processing by OauthController#token as */*
|
785093
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785094
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785095
|
+
Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785096
|
+
Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
|
785097
|
+
Parameters: {"{\"id\":1,\"read_updates\":1}"=>nil}
|
785098
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785099
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
785100
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785102
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -562499291 LIMIT 1
|
785103
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -562499291], ["username", "1b6c9c13ad6e2716926769254d5e6f18"], ["access_token", "d5d9d5aeefeff58d55475a04673faa02"], ["created_at", "2015-03-20 19:04:01.573212"], ["updated_at", "2015-03-20 19:04:01.573212"]]
|
785104
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785105
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785106
|
+
Processing by OauthController#token as */*
|
785107
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785108
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785109
|
+
Started GET "/api/users?q=something" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785110
|
+
Processing by Api::UsersController#index as application/vnd.accounts.openstax.v1
|
785111
|
+
Parameters: {"q"=>"something"}
|
785112
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785113
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
785114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785115
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785116
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -1791865057 LIMIT 1
|
785117
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -1791865057], ["username", "fe0df719c07762f0f6f1dab1a8dc75f4"], ["access_token", "a9cc49f7c8c0dcc4b0c832de786b3c85"], ["created_at", "2015-03-20 19:04:01.592852"], ["updated_at", "2015-03-20 19:04:01.592852"]]
|
785118
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785119
|
+
Started PUT "/api/user" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785120
|
+
Processing by Api::UsersController#update as application/vnd.accounts.openstax.v1
|
785121
|
+
Parameters: {"{\"username\":\"fe0df719c07762f0f6f1dab1a8dc75f4\",\"first_name\":null,\"last_name\":null,\"full_name\":null,\"title\":null}"=>nil}
|
785122
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785123
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
785124
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785125
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785126
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -749698999 LIMIT 1
|
785127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -749698999], ["username", "bc381c552efb9a63941a52d5eaaf6cd8"], ["access_token", "d1c0e8897c50d5965b75f3bbfa9d9027"], ["created_at", "2015-03-20 19:04:01.602659"], ["updated_at", "2015-03-20 19:04:01.602659"]]
|
785128
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785130
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -516699697 LIMIT 1
|
785131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -516699697], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.605541"], ["updated_at", "2015-03-20 19:04:01.605541"]]
|
785132
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785134
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -1971301895 LIMIT 1
|
785135
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -1971301895], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.608046"], ["updated_at", "2015-03-20 19:04:01.608046"]]
|
785136
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785137
|
+
Started POST "/api/groups/-516699697/nestings/-1971301895" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785138
|
+
Processing by Api::GroupNestingsController#create as application/vnd.accounts.openstax.v1
|
785139
|
+
Parameters: {"group_id"=>"-516699697", "member_group_id"=>"-1971301895"}
|
785140
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785141
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
785142
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785144
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = -652042034 LIMIT 1
|
785145
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", -652042034], ["username", "736a2cc9b8d0ab25cfff44b531042907"], ["access_token", "f83d340a4a357b4453df15804840f2be"], ["created_at", "2015-03-20 19:04:01.622921"], ["updated_at", "2015-03-20 19:04:01.622921"]]
|
785146
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785147
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785148
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -953538207 LIMIT 1
|
785149
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -953538207], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.625734"], ["updated_at", "2015-03-20 19:04:01.625734"]]
|
785150
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785151
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785152
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = -473821671 LIMIT 1
|
785153
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", -473821671], ["name", "MyGroup"], ["created_at", "2015-03-20 19:04:01.628278"], ["updated_at", "2015-03-20 19:04:01.628278"]]
|
785154
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785156
|
+
[1m[35mOpenStax::Accounts::GroupNesting Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = -473821671 LIMIT 1
|
785157
|
+
[1m[36mOpenStax::Accounts::Group Load (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1[0m [["id", 2]]
|
785158
|
+
[1m[35mSQL (0.0ms)[0m SELECT "openstax_accounts_groups"."id" AS t0_r0, "openstax_accounts_groups"."openstax_uid" AS t0_r1, "openstax_accounts_groups"."is_public" AS t0_r2, "openstax_accounts_groups"."name" AS t0_r3, "openstax_accounts_groups"."cached_subtree_group_ids" AS t0_r4, "openstax_accounts_groups"."cached_supertree_group_ids" AS t0_r5, "openstax_accounts_groups"."created_at" AS t0_r6, "openstax_accounts_groups"."updated_at" AS t0_r7, "openstax_accounts_group_nestings"."id" AS t1_r0, "openstax_accounts_group_nestings"."member_group_id" AS t1_r1, "openstax_accounts_group_nestings"."container_group_id" AS t1_r2, "openstax_accounts_group_nestings"."created_at" AS t1_r3, "openstax_accounts_group_nestings"."updated_at" AS t1_r4 FROM "openstax_accounts_groups" LEFT OUTER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_group_nestings"."member_group_id" = "openstax_accounts_groups"."openstax_uid" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", -473821671]]
|
785159
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = '---
|
785160
|
+
- -473821671
|
785161
|
+
' WHERE "openstax_accounts_groups"."id" = ?[0m [["id", 2]]
|
785162
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."id" = ? LIMIT 1 [["id", 1]]
|
785163
|
+
[1m[36mSQL (0.0ms)[0m [1mSELECT 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[0m [["member_group_id", -953538207]]
|
785164
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = '---
|
785165
|
+
- -953538207
|
785166
|
+
' WHERE "openstax_accounts_groups"."id" = ? [["id", 1]]
|
785167
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "openstax_accounts_groups" SET "cached_supertree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -473821671[0m
|
785168
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "openstax_accounts_groups" SET "cached_subtree_group_ids" = NULL WHERE "openstax_accounts_groups"."id" = -953538207
|
785169
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["container_group_id", -953538207], ["member_group_id", -473821671], ["created_at", "2015-03-20 19:04:01.630713"], ["updated_at", "2015-03-20 19:04:01.630713"]]
|
785170
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
785171
|
+
Started DELETE "/api/groups/-953538207/nestings/-473821671" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785172
|
+
Processing by Api::GroupNestingsController#destroy as application/vnd.accounts.openstax.v1
|
785173
|
+
Parameters: {"group_id"=>"-953538207", "member_group_id"=>"-473821671"}
|
785174
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785175
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
785176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785177
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785178
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 10 LIMIT 1
|
785179
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "access_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["openstax_uid", 10], ["username", "some_user"], ["access_token", "85e6a29b6a3e84c821953fe12cecd528"], ["created_at", "2015-03-20 19:04:01.649656"], ["updated_at", "2015-03-20 19:04:01.649656"]]
|
785180
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785181
|
+
Processing by OpenStax::Accounts::Dev::AccountsController#become as HTML
|
785182
|
+
Parameters: {"id"=>"10"}
|
785183
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? LIMIT 1[0m [["openstax_uid", 10]]
|
785184
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."account_id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["account_id", 1]]
|
785185
|
+
Redirected to http://test.host/
|
785186
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
|
785187
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
785188
|
+
[1m[35m (0.0ms)[0m begin transaction
|
785189
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
785190
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1
|
785191
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["username", "u"], ["openstax_uid", 2], ["created_at", "2015-03-20 19:04:01.675026"], ["updated_at", "2015-03-20 19:04:01.675026"]]
|
785192
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785193
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts"[0m
|
785194
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
785195
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
785196
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785197
|
+
Processing by OauthController#token as */*
|
785198
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785199
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785200
|
+
Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785201
|
+
Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
|
785202
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785203
|
+
[1m[35mOpenStax::Accounts::Account Load (0.2ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1 [["openstax_uid", 2]]
|
785204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785205
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 1) LIMIT 1
|
785206
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "openstax_accounts_accounts" SET "username" = ?, "updated_at" = ? WHERE "openstax_accounts_accounts"."id" = ?[0m [["username", "user"], ["updated_at", "2015-03-20 19:04:01.706507"], ["id", 1]]
|
785207
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785208
|
+
[1m[36mOpenStax::Accounts::Account Load (0.0ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["openstax_uid", 4]]
|
785209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785210
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 4 LIMIT 1[0m
|
785211
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 4], ["username", "fuego"], ["created_at", "2015-03-20 19:04:01.708978"], ["updated_at", "2015-03-20 19:04:01.708978"]]
|
785212
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785213
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785214
|
+
Processing by OauthController#token as */*
|
785215
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785216
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785217
|
+
Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785218
|
+
Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
|
785219
|
+
Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
|
785220
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785221
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "openstax_accounts_accounts"
|
785222
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
785223
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
785224
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1[0m
|
785225
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
|
785226
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785227
|
+
Processing by OauthController#token as */*
|
785228
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785229
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785230
|
+
Started GET "/api/application_users/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785231
|
+
Processing by Api::ApplicationUsersController#updates as application/vnd.accounts.openstax.v1
|
785232
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785233
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["openstax_uid", 2]]
|
785234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785235
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 2 AND "openstax_accounts_accounts"."id" != 1) LIMIT 1[0m
|
785236
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785237
|
+
[1m[36mOpenStax::Accounts::Account Load (0.0ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = ? ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m [["openstax_uid", 4]]
|
785238
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785239
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE ("openstax_accounts_accounts"."openstax_uid" = 4 AND "openstax_accounts_accounts"."id" != 2) LIMIT 1[0m
|
785240
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785241
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785242
|
+
Processing by OauthController#token as */*
|
785243
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785244
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785245
|
+
Started PUT "/api/application_users/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785246
|
+
Processing by Api::ApplicationUsersController#updated as application/vnd.accounts.openstax.v1
|
785247
|
+
Parameters: {"{\"user_id\":2,\"read_updates\":1},{\"user_id\":4,\"read_updates\":2}"=>nil}
|
785248
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785249
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_accounts"[0m
|
785250
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
785251
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1[0m
|
785252
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1
|
785253
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1[0m
|
785254
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
785255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
785256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785257
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 2 LIMIT 1[0m
|
785258
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 2], ["username", "User"], ["created_at", "2015-03-20 19:04:01.755563"], ["updated_at", "2015-03-20 19:04:01.755563"]]
|
785259
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785261
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 3 LIMIT 1[0m
|
785262
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_accounts" ("openstax_uid", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["openstax_uid", 3], ["username", "Fuego"], ["created_at", "2015-03-20 19:04:01.757645"], ["updated_at", "2015-03-20 19:04:01.757645"]]
|
785263
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785264
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785265
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 2 LIMIT 1[0m
|
785266
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Member Group"], ["openstax_uid", 2], ["created_at", "2015-03-20 19:04:01.759852"], ["updated_at", "2015-03-20 19:04:01.759852"]]
|
785267
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785268
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785269
|
+
[1m[36mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 2) LIMIT 1[0m
|
785270
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 2], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.762174"], ["updated_at", "2015-03-20 19:04:01.762174"]]
|
785271
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785272
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785273
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 4 LIMIT 1[0m
|
785274
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_groups" ("name", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Container Group"], ["openstax_uid", 4], ["created_at", "2015-03-20 19:04:01.764061"], ["updated_at", "2015-03-20 19:04:01.764061"]]
|
785275
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785276
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785277
|
+
[1m[36mOpenStax::Accounts::GroupOwner Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 2 AND "openstax_accounts_group_owners"."group_id" = 4) LIMIT 1[0m
|
785278
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 4], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.766294"], ["updated_at", "2015-03-20 19:04:01.766294"]]
|
785279
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785281
|
+
[1m[36mOpenStax::Accounts::GroupNesting Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 2 LIMIT 1[0m
|
785282
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 4], ["member_group_id", 2], ["created_at", "2015-03-20 19:04:01.779364"], ["updated_at", "2015-03-20 19:04:01.779364"]]
|
785283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785284
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "openstax_accounts_groups"
|
785285
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1[0m
|
785286
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785287
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1[0m
|
785288
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 2], ["id", 1]]
|
785289
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785290
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
|
785291
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785292
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.2ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 4], ["id", 1]]
|
785293
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785294
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 4], ["id", 1]]
|
785295
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785296
|
+
Processing by OauthController#token as */*
|
785297
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785298
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785299
|
+
Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785300
|
+
Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
|
785301
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
785302
|
+
[1m[36mOpenStax::Accounts::GroupOwner Load (0.1ms)[0m [1mSELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ?[0m [["group_id", 2]]
|
785303
|
+
[1m[35mOpenStax::Accounts::GroupMember Load (0.1ms)[0m SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
|
785304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785305
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 1]]
|
785306
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785307
|
+
[1m[35mOpenStax::Accounts::GroupNesting Load (0.1ms)[0m SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
|
785308
|
+
[1m[36mOpenStax::Accounts::GroupOwner Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ?[0m [["group_id", 3]]
|
785309
|
+
[1m[35mOpenStax::Accounts::GroupMember Load (0.1ms)[0m SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 3]]
|
785310
|
+
[1m[36mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ?[0m [["container_group_id", 3]]
|
785311
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 2]]
|
785312
|
+
[1m[36mOpenStax::Accounts::GroupMember Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ?[0m [["group_id", 2]]
|
785313
|
+
[1m[35mOpenStax::Accounts::GroupOwner Load (0.0ms)[0m SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
|
785314
|
+
[1m[36mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ?[0m [["container_group_id", 2]]
|
785315
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785316
|
+
[1m[36mOpenStax::Accounts::GroupNesting Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1[0m
|
785317
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2015-03-20 19:04:01.831499"], ["updated_at", "2015-03-20 19:04:01.831499"]]
|
785318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785320
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1[0m
|
785321
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "openstax_accounts_groups" SET "name" = ?, "updated_at" = ? WHERE "openstax_accounts_groups"."id" = ? [["name", "M"], ["updated_at", "2015-03-20 19:04:01.834098"], ["id", 1]]
|
785322
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785323
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]]
|
785324
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
785325
|
+
[1m[35mOpenStax::Accounts::GroupOwner Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
|
785326
|
+
[1m[36mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1[0m
|
785327
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = 3 LIMIT 1
|
785328
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_groups" ("openstax_uid", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["openstax_uid", 3], ["name", "Fuego's Deputies"], ["created_at", "2015-03-20 19:04:01.839642"], ["updated_at", "2015-03-20 19:04:01.839642"]]
|
785329
|
+
[1m[35mOpenStax::Accounts::GroupOwner Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
|
785330
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", 3], ["user_id", 3], ["created_at", "2015-03-20 19:04:01.841709"], ["updated_at", "2015-03-20 19:04:01.841709"]]
|
785331
|
+
[1m[35mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1
|
785332
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", 3], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.843744"], ["updated_at", "2015-03-20 19:04:01.843744"]]
|
785333
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785334
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785335
|
+
Processing by OauthController#token as */*
|
785336
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785337
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785338
|
+
Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785339
|
+
Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
|
785340
|
+
Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
|
785341
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785342
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_groups"[0m
|
785343
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785344
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1[0m
|
785345
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785346
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785347
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 2], ["id", 3]]
|
785348
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1[0m
|
785349
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
|
785350
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1[0m
|
785351
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785352
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ?[0m [["container_group_id", 4], ["id", 1]]
|
785353
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
|
785354
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785355
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
|
785356
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1[0m
|
785357
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 2]]
|
785358
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785359
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
785360
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ?[0m [["group_id", 3], ["id", 1]]
|
785361
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785362
|
+
Processing by OauthController#token as */*
|
785363
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785364
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
785365
|
+
Started GET "/api/application_groups/updates" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785366
|
+
Processing by Api::ApplicationGroupsController#updates as application/vnd.accounts.openstax.v1
|
785367
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
785368
|
+
[1m[35mOpenStax::Accounts::GroupOwner Load (0.1ms)[0m SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 2]]
|
785369
|
+
[1m[36mOpenStax::Accounts::GroupMember Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ?[0m [["group_id", 2]]
|
785370
|
+
[1m[35mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
|
785371
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
785372
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."id" = ? [["id", 2]]
|
785373
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785374
|
+
[1m[35mOpenStax::Accounts::GroupOwner Load (0.1ms)[0m SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 3]]
|
785375
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785376
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."id" = ? [["id", 2]]
|
785377
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785378
|
+
[1m[35mOpenStax::Accounts::GroupMember Load (0.0ms)[0m SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 3]]
|
785379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785380
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."id" = ? [["id", 2]]
|
785381
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785382
|
+
[1m[35mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 3]]
|
785383
|
+
[1m[36mOpenStax::Accounts::Group Load (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1[0m [["openstax_uid", 2]]
|
785384
|
+
[1m[35mOpenStax::Accounts::GroupMember Load (0.0ms)[0m SELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ? [["group_id", 2]]
|
785385
|
+
[1m[36mOpenStax::Accounts::GroupOwner Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ?[0m [["group_id", 2]]
|
785386
|
+
[1m[35mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m SELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? [["container_group_id", 2]]
|
785387
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785388
|
+
[1m[35mOpenStax::Accounts::GroupNesting Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."member_group_id" = 3 LIMIT 1
|
785389
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_nestings" ("container_group_id", "member_group_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["container_group_id", 2], ["member_group_id", 3], ["created_at", "2015-03-20 19:04:01.897189"], ["updated_at", "2015-03-20 19:04:01.897189"]]
|
785390
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785391
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785392
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 2 AND "openstax_accounts_groups"."id" != 1) LIMIT 1
|
785393
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785394
|
+
[1m[35mOpenStax::Accounts::Group Load (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" WHERE "openstax_accounts_groups"."openstax_uid" = ? ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 [["openstax_uid", 3]]
|
785395
|
+
[1m[36mOpenStax::Accounts::GroupMember Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_members".* FROM "openstax_accounts_group_members" WHERE "openstax_accounts_group_members"."group_id" = ?[0m [["group_id", 3]]
|
785396
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785397
|
+
[1m[36mOpenStax::Accounts::GroupMember Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_group_members" WHERE ("openstax_accounts_group_members"."user_id" = 2 AND "openstax_accounts_group_members"."group_id" = 3) LIMIT 1[0m
|
785398
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "openstax_accounts_group_members" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["group_id", 3], ["user_id", 2], ["created_at", "2015-03-20 19:04:01.902721"], ["updated_at", "2015-03-20 19:04:01.902721"]]
|
785399
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
785400
|
+
[1m[35mOpenStax::Accounts::GroupOwner Load (0.0ms)[0m SELECT "openstax_accounts_group_owners".* FROM "openstax_accounts_group_owners" WHERE "openstax_accounts_group_owners"."group_id" = ? [["group_id", 3]]
|
785401
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785402
|
+
[1m[35mOpenStax::Accounts::GroupOwner Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_group_owners" WHERE ("openstax_accounts_group_owners"."user_id" = 3 AND "openstax_accounts_group_owners"."group_id" = 3) LIMIT 1
|
785403
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "openstax_accounts_group_owners" ("group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["group_id", 3], ["user_id", 3], ["created_at", "2015-03-20 19:04:01.905910"], ["updated_at", "2015-03-20 19:04:01.905910"]]
|
785404
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785405
|
+
[1m[36mOpenStax::Accounts::GroupNesting Load (0.0ms)[0m [1mSELECT "openstax_accounts_group_nestings".* FROM "openstax_accounts_group_nestings" WHERE "openstax_accounts_group_nestings"."container_group_id" = ?[0m [["container_group_id", 3]]
|
785406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785407
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_groups" WHERE ("openstax_accounts_groups"."openstax_uid" = 3 AND "openstax_accounts_groups"."id" != 3) LIMIT 1[0m
|
785408
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785409
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785410
|
+
Processing by OauthController#token as */*
|
785411
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
785412
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785413
|
+
Started PUT "/api/application_groups/updated" for 127.0.0.1 at 2015-03-20 14:04:01 -0500
|
785414
|
+
Processing by Api::ApplicationGroupsController#updated as application/vnd.accounts.openstax.v1
|
785415
|
+
Parameters: {"{\"group_id\":2,\"read_updates\":1},{\"group_id\":3,\"read_updates\":2}"=>nil}
|
785416
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
785417
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "openstax_accounts_groups"[0m
|
785418
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785419
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1[0m
|
785420
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785421
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785422
|
+
[1m[35mOpenStax::Accounts::Group Exists (0.0ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ? [["container_group_id", 2], ["id", 3]]
|
785423
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1[0m
|
785424
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1
|
785425
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1 OFFSET 1[0m
|
785426
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" ASC LIMIT 1
|
785427
|
+
[1m[36mOpenStax::Accounts::Group Exists (0.0ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" INNER JOIN "openstax_accounts_group_nestings" ON "openstax_accounts_groups"."openstax_uid" = "openstax_accounts_group_nestings"."member_group_id" WHERE "openstax_accounts_group_nestings"."container_group_id" = ? AND "openstax_accounts_groups"."id" = ?[0m [["container_group_id", 4], ["id", 1]]
|
785428
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
|
785429
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785430
|
+
[1m[35mOpenStax::Accounts::Group Load (0.1ms)[0m SELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1
|
785431
|
+
[1m[36mOpenStax::Accounts::Account Load (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" DESC LIMIT 1[0m
|
785432
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_owners" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_owners"."user_id" WHERE "openstax_accounts_group_owners"."group_id" = ? AND "openstax_accounts_accounts"."id" = ? [["group_id", 3], ["id", 2]]
|
785433
|
+
[1m[36mOpenStax::Accounts::Group Load (0.1ms)[0m [1mSELECT "openstax_accounts_groups".* FROM "openstax_accounts_groups" ORDER BY "openstax_accounts_groups"."id" DESC LIMIT 1[0m
|
785434
|
+
[1m[35mOpenStax::Accounts::Account Load (0.1ms)[0m SELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" ORDER BY "openstax_accounts_accounts"."id" ASC LIMIT 1
|
785435
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.1ms)[0m [1mSELECT "openstax_accounts_accounts".* FROM "openstax_accounts_accounts" INNER JOIN "openstax_accounts_group_members" ON "openstax_accounts_accounts"."openstax_uid" = "openstax_accounts_group_members"."user_id" WHERE "openstax_accounts_group_members"."group_id" = ? AND "openstax_accounts_accounts"."id" = ?[0m [["group_id", 3], ["id", 1]]
|
785436
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
785437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
785438
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
785439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
785440
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.1ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" IS NULL LIMIT 1
|
785441
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
785442
|
+
[1m[35mOpenStax::Accounts::Account Exists (0.0ms)[0m SELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1
|
785443
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "openstax_accounts_accounts" ("username", "access_token", "openstax_uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["username", "211bb63095092120a1fbfcc41b8a5c12"], ["access_token", "6201fc58973013d55c48f6cbb09d9075"], ["openstax_uid", 1], ["created_at", "2015-03-20 19:04:01.937071"], ["updated_at", "2015-03-20 19:04:01.937071"]]
|
785444
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
785445
|
+
[1m[36mOpenStax::Accounts::Account Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "openstax_accounts_accounts" WHERE "openstax_accounts_accounts"."openstax_uid" = 1 LIMIT 1[0m
|
785446
|
+
[1m[35m (0.9ms)[0m rollback transaction
|