social_auth 0.0.9

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.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +39 -0
  4. data/app/models/social_auth/facebook_service.rb +60 -0
  5. data/app/models/social_auth/google_plus_service.rb +106 -0
  6. data/app/models/social_auth/service.rb +152 -0
  7. data/app/models/social_auth/twitter_service.rb +67 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/generators/social_auth/install/install_generator.rb +37 -0
  10. data/lib/generators/social_auth/install/templates/create_social_auth_services.rb +12 -0
  11. data/lib/generators/social_auth/install/templates/initializer.rb +15 -0
  12. data/lib/social_auth.rb +73 -0
  13. data/lib/social_auth/acts_as_social_user.rb +23 -0
  14. data/lib/social_auth/engine.rb +12 -0
  15. data/lib/social_auth/railtie.rb +7 -0
  16. data/lib/social_auth/version.rb +3 -0
  17. data/lib/tasks/social_auth_tasks.rake +4 -0
  18. data/spec/dummy/rails-4.2.0/Gemfile +42 -0
  19. data/spec/dummy/rails-4.2.0/README.rdoc +28 -0
  20. data/spec/dummy/rails-4.2.0/Rakefile +6 -0
  21. data/spec/dummy/rails-4.2.0/app/assets/javascripts/application.js +16 -0
  22. data/spec/dummy/rails-4.2.0/app/assets/stylesheets/application.css +15 -0
  23. data/spec/dummy/rails-4.2.0/app/controllers/application_controller.rb +5 -0
  24. data/spec/dummy/rails-4.2.0/app/helpers/application_helper.rb +2 -0
  25. data/spec/dummy/rails-4.2.0/app/models/user.rb +2 -0
  26. data/spec/dummy/rails-4.2.0/app/views/layouts/application.html.erb +14 -0
  27. data/spec/dummy/rails-4.2.0/bin/bundle +3 -0
  28. data/spec/dummy/rails-4.2.0/bin/rails +4 -0
  29. data/spec/dummy/rails-4.2.0/bin/rake +4 -0
  30. data/spec/dummy/rails-4.2.0/bin/setup +29 -0
  31. data/spec/dummy/rails-4.2.0/config.ru +4 -0
  32. data/spec/dummy/rails-4.2.0/config/application.rb +26 -0
  33. data/spec/dummy/rails-4.2.0/config/boot.rb +3 -0
  34. data/spec/dummy/rails-4.2.0/config/database.yml +15 -0
  35. data/spec/dummy/rails-4.2.0/config/environment.rb +5 -0
  36. data/spec/dummy/rails-4.2.0/config/environments/development.rb +41 -0
  37. data/spec/dummy/rails-4.2.0/config/environments/production.rb +79 -0
  38. data/spec/dummy/rails-4.2.0/config/environments/test.rb +42 -0
  39. data/spec/dummy/rails-4.2.0/config/initializers/assets.rb +11 -0
  40. data/spec/dummy/rails-4.2.0/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/rails-4.2.0/config/initializers/cookies_serializer.rb +3 -0
  42. data/spec/dummy/rails-4.2.0/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/spec/dummy/rails-4.2.0/config/initializers/inflections.rb +16 -0
  44. data/spec/dummy/rails-4.2.0/config/initializers/mime_types.rb +4 -0
  45. data/spec/dummy/rails-4.2.0/config/initializers/session_store.rb +3 -0
  46. data/spec/dummy/rails-4.2.0/config/initializers/social_auth.rb +15 -0
  47. data/spec/dummy/rails-4.2.0/config/initializers/wrap_parameters.rb +14 -0
  48. data/spec/dummy/rails-4.2.0/config/locales/en.yml +23 -0
  49. data/spec/dummy/rails-4.2.0/config/routes.rb +56 -0
  50. data/spec/dummy/rails-4.2.0/config/secrets.yml +22 -0
  51. data/spec/dummy/rails-4.2.0/db/migrate/20150504044515878_create_social_auth_services.rb +12 -0
  52. data/spec/dummy/rails-4.2.0/db/migrate/20150504044519_create_users.rb +9 -0
  53. data/spec/dummy/rails-4.2.0/db/schema.rb +35 -0
  54. data/spec/dummy/rails-4.2.0/db/seeds.rb +7 -0
  55. data/spec/dummy/rails-4.2.0/log/test.log +2570 -0
  56. data/spec/dummy/rails-4.2.0/public/404.html +67 -0
  57. data/spec/dummy/rails-4.2.0/public/422.html +67 -0
  58. data/spec/dummy/rails-4.2.0/public/500.html +66 -0
  59. data/spec/dummy/rails-4.2.0/public/favicon.ico +0 -0
  60. data/spec/dummy/rails-4.2.0/public/robots.txt +5 -0
  61. data/spec/dummy/rails-4.2.0/test/fixtures/users.yml +7 -0
  62. data/spec/dummy/rails-4.2.0/test/models/user_test.rb +7 -0
  63. data/spec/dummy/rails-4.2.0/test/test_helper.rb +10 -0
  64. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_friends_request.yml +54 -0
  65. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_request.yml +50 -0
  66. data/spec/fixtures/vcr_cassettes/facebook_service/invalid_token.yml +50 -0
  67. data/spec/fixtures/vcr_cassettes/facebook_service/valid_friends_request.yml +110 -0
  68. data/spec/fixtures/vcr_cassettes/facebook_service/valid_request.yml +55 -0
  69. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_authorization.yml +51 -0
  70. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_friends_request.yml +53 -0
  71. data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_token.yml +51 -0
  72. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_authorization.yml +56 -0
  73. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_friends_request.yml +132 -0
  74. data/spec/fixtures/vcr_cassettes/google_plus_service/valid_request.yml +110 -0
  75. data/spec/fixtures/vcr_cassettes/twitter_service/invalid_friends_request.yml +47 -0
  76. data/spec/fixtures/vcr_cassettes/twitter_service/valid_friends_request.yml +159 -0
  77. data/spec/fixtures/vcr_cassettes/twitter_service/valid_request.yml +337 -0
  78. data/spec/models/facebook_service_spec.rb +127 -0
  79. data/spec/models/google_plus_service_spec.rb +133 -0
  80. data/spec/models/service_spec.rb +236 -0
  81. data/spec/models/twitter_service_spec.rb +100 -0
  82. data/spec/spec_helper.rb +74 -0
  83. data/spec/support/database.yml +15 -0
  84. data/spec/support/rails_template.rb +15 -0
  85. metadata +376 -0
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
@@ -0,0 +1,2570 @@
1
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreateUsers (20150504044519)
5
+  (0.4ms) BEGIN
6
+  (9.5ms) CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150504044519"]]
8
+  (0.5ms) COMMIT
9
+ Migrating to CreateSocialAuthServices (20150504044515878)
10
+  (0.4ms) BEGIN
11
+  (14.9ms) CREATE TABLE "social_auth_services" ("id" serial primary key, "type" character varying DEFAULT 'SocialAuth::Service', "access_token" json, "remote_id" character varying, "user_id" integer, "method" character varying, "created_at" timestamp, "updated_at" timestamp) 
12
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150504044515878"]]
13
+  (4.7ms) COMMIT
14
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
15
+  (7.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
16
+ FROM pg_constraint c
17
+ JOIN pg_class t1 ON c.conrelid = t1.oid
18
+ JOIN pg_class t2 ON c.confrelid = t2.oid
19
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
20
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
21
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
22
+ WHERE c.contype = 'f'
23
+ AND t1.relname = 'social_auth_services'
24
+ AND t3.nspname = ANY (current_schemas(false))
25
+ ORDER BY c.conname
26
+ 
27
+  (6.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
28
+ FROM pg_constraint c
29
+ JOIN pg_class t1 ON c.conrelid = t1.oid
30
+ JOIN pg_class t2 ON c.confrelid = t2.oid
31
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
32
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
33
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
34
+ WHERE c.contype = 'f'
35
+ AND t1.relname = 'users'
36
+ AND t3.nspname = ANY (current_schemas(false))
37
+ ORDER BY c.conname
38
+
39
+  (125.2ms) DROP DATABASE IF EXISTS "rails-4_2_0_test"
40
+  (412.1ms) CREATE DATABASE "rails-4_2_0_test" ENCODING = 'unicode'
41
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
42
+  (11.2ms) CREATE TABLE "social_auth_services" ("id" serial primary key, "type" character varying DEFAULT 'SocialAuth::Service', "access_token" json, "remote_id" character varying, "user_id" integer, "method" character varying, "created_at" timestamp, "updated_at" timestamp)
43
+  (8.5ms) CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
44
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
45
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
46
+  (0.5ms) SELECT version FROM "schema_migrations"
47
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504044515878')
48
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504044519')
49
+  (0.1ms) BEGIN
50
+  (0.2ms) SAVEPOINT active_record_1
51
+ SQL (1.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.644381"], ["updated_at", "2015-05-04 04:45:33.644381"]]
52
+  (0.2ms) RELEASE SAVEPOINT active_record_1
53
+  (0.2ms) ROLLBACK
54
+  (0.1ms) BEGIN
55
+  (0.2ms) SAVEPOINT active_record_1
56
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.671572"], ["updated_at", "2015-05-04 04:45:33.671572"]]
57
+  (0.2ms) RELEASE SAVEPOINT active_record_1
58
+  (0.3ms) ROLLBACK
59
+  (0.2ms) BEGIN
60
+  (0.1ms) SAVEPOINT active_record_1
61
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.679575"], ["updated_at", "2015-05-04 04:45:33.679575"]]
62
+  (0.1ms) RELEASE SAVEPOINT active_record_1
63
+  (0.2ms) ROLLBACK
64
+  (0.1ms) BEGIN
65
+  (0.1ms) SAVEPOINT active_record_1
66
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.702848"], ["updated_at", "2015-05-04 04:45:33.702848"]]
67
+  (0.2ms) RELEASE SAVEPOINT active_record_1
68
+  (4.0ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
69
+  (0.3ms) ROLLBACK
70
+  (0.1ms) BEGIN
71
+  (0.1ms) SAVEPOINT active_record_1
72
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.733901"], ["updated_at", "2015-05-04 04:45:33.733901"]]
73
+  (0.2ms) RELEASE SAVEPOINT active_record_1
74
+  (0.5ms) ROLLBACK
75
+  (0.2ms) BEGIN
76
+  (0.1ms) SAVEPOINT active_record_1
77
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.748474"], ["updated_at", "2015-05-04 04:45:33.748474"]]
78
+  (0.1ms) RELEASE SAVEPOINT active_record_1
79
+  (0.4ms) ROLLBACK
80
+  (0.1ms) BEGIN
81
+  (0.1ms) SAVEPOINT active_record_1
82
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.760463"], ["updated_at", "2015-05-04 04:45:33.760463"]]
83
+  (0.1ms) RELEASE SAVEPOINT active_record_1
84
+  (0.3ms) ROLLBACK
85
+  (0.2ms) BEGIN
86
+  (0.3ms) SAVEPOINT active_record_1
87
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.774295"], ["updated_at", "2015-05-04 04:45:33.774295"]]
88
+  (0.2ms) RELEASE SAVEPOINT active_record_1
89
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
90
+  (0.2ms) ROLLBACK
91
+  (0.1ms) BEGIN
92
+  (0.1ms) SAVEPOINT active_record_1
93
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.786782"], ["updated_at", "2015-05-04 04:45:33.786782"]]
94
+  (0.2ms) RELEASE SAVEPOINT active_record_1
95
+  (2.1ms) SAVEPOINT active_record_1
96
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
97
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 9], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:45:33.834025"], ["updated_at", "2015-05-04 04:45:33.834025"]]
98
+  (0.2ms) RELEASE SAVEPOINT active_record_1
99
+  (0.2ms) ROLLBACK
100
+  (0.1ms) BEGIN
101
+  (0.1ms) SAVEPOINT active_record_1
102
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.851957"], ["updated_at", "2015-05-04 04:45:33.851957"]]
103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104
+  (0.1ms) SAVEPOINT active_record_1
105
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
106
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 10], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:45:33.859248"], ["updated_at", "2015-05-04 04:45:33.859248"]]
107
+  (0.2ms) RELEASE SAVEPOINT active_record_1
108
+  (0.2ms) ROLLBACK
109
+  (0.1ms) BEGIN
110
+  (0.1ms) SAVEPOINT active_record_1
111
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.884394"], ["updated_at", "2015-05-04 04:45:33.884394"]]
112
+  (0.2ms) RELEASE SAVEPOINT active_record_1
113
+  (0.2ms) SAVEPOINT active_record_1
114
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
115
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 11], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:45:33.893457"], ["updated_at", "2015-05-04 04:45:33.893457"]]
116
+  (0.2ms) RELEASE SAVEPOINT active_record_1
117
+  (0.1ms) SAVEPOINT active_record_1
118
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
119
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
120
+  (0.2ms) ROLLBACK
121
+  (0.1ms) BEGIN
122
+  (0.1ms) SAVEPOINT active_record_1
123
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.918275"], ["updated_at", "2015-05-04 04:45:33.918275"]]
124
+  (0.2ms) RELEASE SAVEPOINT active_record_1
125
+  (0.2ms) ROLLBACK
126
+  (0.1ms) BEGIN
127
+  (0.1ms) SAVEPOINT active_record_1
128
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.925349"], ["updated_at", "2015-05-04 04:45:33.925349"]]
129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
130
+  (0.2ms) ROLLBACK
131
+  (0.1ms) BEGIN
132
+  (0.1ms) SAVEPOINT active_record_1
133
+ SQL (2.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.932011"], ["updated_at", "2015-05-04 04:45:33.932011"]]
134
+  (0.2ms) RELEASE SAVEPOINT active_record_1
135
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
136
+ ETHON: Libcurl initialized
137
+ SocialAuth::GooglePlusService Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
138
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
139
+  (0.2ms) SAVEPOINT active_record_1
140
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
141
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:33.992244"], ["updated_at", "2015-05-04 04:45:33.992244"]]
142
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["user_id", 15], ["created_at", "2015-05-04 04:45:33.994158"], ["updated_at", "2015-05-04 04:45:33.994158"]]
143
+  (0.2ms) RELEASE SAVEPOINT active_record_1
144
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
145
+  (0.2ms) ROLLBACK
146
+  (0.2ms) BEGIN
147
+  (0.1ms) SAVEPOINT active_record_1
148
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.000809"], ["updated_at", "2015-05-04 04:45:34.000809"]]
149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
150
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
151
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
152
+  (0.2ms) SAVEPOINT active_record_1
153
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
154
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
155
+  (0.1ms) ROLLBACK
156
+  (0.1ms) BEGIN
157
+  (0.1ms) SAVEPOINT active_record_1
158
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.031040"], ["updated_at", "2015-05-04 04:45:34.031040"]]
159
+  (0.2ms) RELEASE SAVEPOINT active_record_1
160
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
161
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
162
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
163
+  (0.2ms) SAVEPOINT active_record_1
164
+ SocialAuth::Service Exists (0.9ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService' AND "social_auth_services"."user_id" = 17) LIMIT 1
165
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["user_id", 17], ["method", "Connected"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["created_at", "2015-05-04 04:45:34.057621"], ["updated_at", "2015-05-04 04:45:34.057621"]]
166
+  (0.2ms) RELEASE SAVEPOINT active_record_1
167
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
168
+  (0.1ms) ROLLBACK
169
+  (0.1ms) BEGIN
170
+  (0.1ms) SAVEPOINT active_record_1
171
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.064298"], ["updated_at", "2015-05-04 04:45:34.064298"]]
172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
173
+  (0.2ms) ROLLBACK
174
+  (0.1ms) BEGIN
175
+  (0.1ms) SAVEPOINT active_record_1
176
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.083086"], ["updated_at", "2015-05-04 04:45:34.083086"]]
177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
178
+  (0.2ms) ROLLBACK
179
+  (0.2ms) BEGIN
180
+  (0.2ms) SAVEPOINT active_record_1
181
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.106376"], ["updated_at", "2015-05-04 04:45:34.106376"]]
182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
183
+  (0.3ms) ROLLBACK
184
+  (0.1ms) BEGIN
185
+  (0.1ms) SAVEPOINT active_record_1
186
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.131660"], ["updated_at", "2015-05-04 04:45:34.131660"]]
187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
188
+  (0.1ms) ROLLBACK
189
+  (0.1ms) BEGIN
190
+  (0.1ms) SAVEPOINT active_record_1
191
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.137865"], ["updated_at", "2015-05-04 04:45:34.137865"]]
192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
193
+  (0.1ms) SAVEPOINT active_record_1
194
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
195
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 22], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:45:34.145492"], ["updated_at", "2015-05-04 04:45:34.145492"]]
196
+  (0.2ms) RELEASE SAVEPOINT active_record_1
197
+  (0.2ms) ROLLBACK
198
+  (0.1ms) BEGIN
199
+  (0.2ms) SAVEPOINT active_record_1
200
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.178171"], ["updated_at", "2015-05-04 04:45:34.178171"]]
201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
202
+  (0.2ms) SAVEPOINT active_record_1
203
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
204
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 23], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:45:34.186273"], ["updated_at", "2015-05-04 04:45:34.186273"]]
205
+  (0.2ms) RELEASE SAVEPOINT active_record_1
206
+  (0.2ms) ROLLBACK
207
+  (0.1ms) BEGIN
208
+  (0.1ms) SAVEPOINT active_record_1
209
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.194074"], ["updated_at", "2015-05-04 04:45:34.194074"]]
210
+  (0.1ms) RELEASE SAVEPOINT active_record_1
211
+  (0.1ms) SAVEPOINT active_record_1
212
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
213
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 24], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:45:34.201390"], ["updated_at", "2015-05-04 04:45:34.201390"]]
214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
215
+  (0.1ms) SAVEPOINT active_record_1
216
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
217
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
218
+  (0.2ms) ROLLBACK
219
+  (0.1ms) BEGIN
220
+  (0.1ms) SAVEPOINT active_record_1
221
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.226510"], ["updated_at", "2015-05-04 04:45:34.226510"]]
222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
223
+  (0.1ms) SAVEPOINT active_record_1
224
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.229395"], ["updated_at", "2015-05-04 04:45:34.229395"]]
225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
226
+  (0.1ms) SAVEPOINT active_record_1
227
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 26]]
228
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
229
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 26], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:45:34.238001"], ["updated_at", "2015-05-04 04:45:34.238001"]]
230
+  (0.2ms) RELEASE SAVEPOINT active_record_1
231
+ SocialAuth::Service Exists (1.2ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 9 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
232
+  (0.2ms) ROLLBACK
233
+  (0.1ms) BEGIN
234
+  (0.1ms) SAVEPOINT active_record_1
235
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.249215"], ["updated_at", "2015-05-04 04:45:34.249215"]]
236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
237
+  (0.1ms) SAVEPOINT active_record_1
238
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.252053"], ["updated_at", "2015-05-04 04:45:34.252053"]]
239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
240
+  (0.1ms) SAVEPOINT active_record_1
241
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
242
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 28], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.256081"], ["updated_at", "2015-05-04 04:45:34.256081"]]
243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
244
+  (0.2ms) SAVEPOINT active_record_1
245
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.260646"], ["updated_at", "2015-05-04 04:45:34.260646"]]
246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
247
+  (0.1ms) SAVEPOINT active_record_1
248
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
249
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 29], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.264827"], ["updated_at", "2015-05-04 04:45:34.264827"]]
250
+  (0.2ms) RELEASE SAVEPOINT active_record_1
251
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
252
+  (0.3ms) ROLLBACK
253
+  (0.1ms) BEGIN
254
+  (0.1ms) SAVEPOINT active_record_1
255
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.284498"], ["updated_at", "2015-05-04 04:45:34.284498"]]
256
+  (0.2ms) RELEASE SAVEPOINT active_record_1
257
+  (0.2ms) SAVEPOINT active_record_1
258
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.289290"], ["updated_at", "2015-05-04 04:45:34.289290"]]
259
+  (0.2ms) RELEASE SAVEPOINT active_record_1
260
+  (0.1ms) SAVEPOINT active_record_1
261
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
262
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 31], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.293851"], ["updated_at", "2015-05-04 04:45:34.293851"]]
263
+  (0.2ms) RELEASE SAVEPOINT active_record_1
264
+  (0.1ms) SAVEPOINT active_record_1
265
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.298025"], ["updated_at", "2015-05-04 04:45:34.298025"]]
266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
267
+  (0.1ms) SAVEPOINT active_record_1
268
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
269
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 32], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.302905"], ["updated_at", "2015-05-04 04:45:34.302905"]]
270
+  (0.4ms) RELEASE SAVEPOINT active_record_1
271
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
272
+  (0.2ms) ROLLBACK
273
+  (0.1ms) BEGIN
274
+  (0.1ms) SAVEPOINT active_record_1
275
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.311494"], ["updated_at", "2015-05-04 04:45:34.311494"]]
276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
277
+  (0.1ms) SAVEPOINT active_record_1
278
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.314944"], ["updated_at", "2015-05-04 04:45:34.314944"]]
279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
280
+  (0.1ms) SAVEPOINT active_record_1
281
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
282
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 34], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.319826"], ["updated_at", "2015-05-04 04:45:34.319826"]]
283
+  (0.2ms) RELEASE SAVEPOINT active_record_1
284
+  (0.2ms) ROLLBACK
285
+  (0.1ms) BEGIN
286
+  (0.2ms) SAVEPOINT active_record_1
287
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.327116"], ["updated_at", "2015-05-04 04:45:34.327116"]]
288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
289
+  (0.1ms) SAVEPOINT active_record_1
290
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.330430"], ["updated_at", "2015-05-04 04:45:34.330430"]]
291
+  (0.3ms) RELEASE SAVEPOINT active_record_1
292
+  (0.1ms) SAVEPOINT active_record_1
293
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
294
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 36], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.335023"], ["updated_at", "2015-05-04 04:45:34.335023"]]
295
+  (0.2ms) RELEASE SAVEPOINT active_record_1
296
+  (0.2ms) SAVEPOINT active_record_1
297
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.340688"], ["updated_at", "2015-05-04 04:45:34.340688"]]
298
+  (0.2ms) RELEASE SAVEPOINT active_record_1
299
+  (0.1ms) SAVEPOINT active_record_1
300
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
301
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 37], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.345670"], ["updated_at", "2015-05-04 04:45:34.345670"]]
302
+  (0.2ms) RELEASE SAVEPOINT active_record_1
303
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 16]]
304
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
305
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 36]]
306
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 37]]
307
+  (0.2ms) ROLLBACK
308
+  (0.1ms) BEGIN
309
+  (0.1ms) SAVEPOINT active_record_1
310
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.358114"], ["updated_at", "2015-05-04 04:45:34.358114"]]
311
+  (0.2ms) RELEASE SAVEPOINT active_record_1
312
+  (0.1ms) SAVEPOINT active_record_1
313
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.362346"], ["updated_at", "2015-05-04 04:45:34.362346"]]
314
+  (0.2ms) RELEASE SAVEPOINT active_record_1
315
+  (0.1ms) SAVEPOINT active_record_1
316
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
317
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 39], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.367100"], ["updated_at", "2015-05-04 04:45:34.367100"]]
318
+  (0.1ms) RELEASE SAVEPOINT active_record_1
319
+  (0.1ms) SAVEPOINT active_record_1
320
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.373153"], ["updated_at", "2015-05-04 04:45:34.373153"]]
321
+  (0.1ms) RELEASE SAVEPOINT active_record_1
322
+  (0.1ms) SAVEPOINT active_record_1
323
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
324
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 40], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:45:34.377629"], ["updated_at", "2015-05-04 04:45:34.377629"]]
325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
326
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 18]]
327
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
328
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 39]]
329
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 40]]
330
+  (0.2ms) ROLLBACK
331
+  (0.1ms) BEGIN
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.388846"], ["updated_at", "2015-05-04 04:45:34.388846"]]
334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
335
+  (0.1ms) SAVEPOINT active_record_1
336
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
337
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 41], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:45:34.394210"], ["updated_at", "2015-05-04 04:45:34.394210"]]
338
+  (0.1ms) RELEASE SAVEPOINT active_record_1
339
+  (0.1ms) SAVEPOINT active_record_1
340
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 19 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 41) LIMIT 1
341
+ SQL (0.4ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 04:45:34.400555"], ["id", 19]]
342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
343
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
344
+  (0.2ms) SAVEPOINT active_record_1
345
+ SQL (0.3ms) DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 19]]
346
+  (0.2ms) RELEASE SAVEPOINT active_record_1
347
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
348
+  (0.1ms) ROLLBACK
349
+  (0.1ms) BEGIN
350
+  (0.1ms) SAVEPOINT active_record_1
351
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.411003"], ["updated_at", "2015-05-04 04:45:34.411003"]]
352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
353
+  (0.1ms) SAVEPOINT active_record_1
354
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
355
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 42], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:45:34.416375"], ["updated_at", "2015-05-04 04:45:34.416375"]]
356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
357
+  (0.1ms) SAVEPOINT active_record_1
358
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 20 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
359
+  (0.2ms) RELEASE SAVEPOINT active_record_1
360
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
361
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
362
+  (0.1ms) ROLLBACK
363
+  (0.2ms) BEGIN
364
+  (0.2ms) SAVEPOINT active_record_1
365
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.427639"], ["updated_at", "2015-05-04 04:45:34.427639"]]
366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
367
+  (0.1ms) SAVEPOINT active_record_1
368
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
369
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 43], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:45:34.433038"], ["updated_at", "2015-05-04 04:45:34.433038"]]
370
+  (0.3ms) RELEASE SAVEPOINT active_record_1
371
+  (0.2ms) ROLLBACK
372
+  (0.2ms) BEGIN
373
+  (0.2ms) SAVEPOINT active_record_1
374
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.443371"], ["updated_at", "2015-05-04 04:45:34.443371"]]
375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
376
+  (0.1ms) SAVEPOINT active_record_1
377
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
378
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 44], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:45:34.450206"], ["updated_at", "2015-05-04 04:45:34.450206"]]
379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
380
+  (0.2ms) ROLLBACK
381
+  (0.1ms) BEGIN
382
+  (0.1ms) SAVEPOINT active_record_1
383
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.457057"], ["updated_at", "2015-05-04 04:45:34.457057"]]
384
+  (0.1ms) RELEASE SAVEPOINT active_record_1
385
+  (0.2ms) SAVEPOINT active_record_1
386
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 45) LIMIT 1
387
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 45], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:45:34.463196"], ["updated_at", "2015-05-04 04:45:34.463196"]]
388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
389
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 45]]
390
+  (0.2ms) ROLLBACK
391
+  (0.2ms) BEGIN
392
+  (0.1ms) SAVEPOINT active_record_1
393
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.473089"], ["updated_at", "2015-05-04 04:45:34.473089"]]
394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
395
+  (0.1ms) SAVEPOINT active_record_1
396
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
397
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 46], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:45:34.479044"], ["updated_at", "2015-05-04 04:45:34.479044"]]
398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
399
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 46]]
400
+  (0.2ms) ROLLBACK
401
+  (0.1ms) BEGIN
402
+  (0.2ms) SAVEPOINT active_record_1
403
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.486390"], ["updated_at", "2015-05-04 04:45:34.486390"]]
404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
405
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 47]]
406
+  (0.1ms) ROLLBACK
407
+  (0.1ms) BEGIN
408
+  (0.1ms) SAVEPOINT active_record_1
409
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.492800"], ["updated_at", "2015-05-04 04:45:34.492800"]]
410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
411
+  (0.1ms) SAVEPOINT active_record_1
412
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.495803"], ["updated_at", "2015-05-04 04:45:34.495803"]]
413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
414
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 49) LIMIT 1
415
+  (0.2ms) ROLLBACK
416
+  (0.1ms) BEGIN
417
+  (0.1ms) SAVEPOINT active_record_1
418
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.502659"], ["updated_at", "2015-05-04 04:45:34.502659"]]
419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
420
+  (0.2ms) SAVEPOINT active_record_1
421
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.515544"], ["updated_at", "2015-05-04 04:45:34.515544"]]
422
+  (0.1ms) RELEASE SAVEPOINT active_record_1
423
+  (0.1ms) SAVEPOINT active_record_1
424
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 51) LIMIT 1
425
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 51], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:45:34.520388"], ["updated_at", "2015-05-04 04:45:34.520388"]]
426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
427
+  (0.1ms) SAVEPOINT active_record_1
428
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 51) LIMIT 1
429
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
430
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 51) LIMIT 1
431
+  (0.2ms) ROLLBACK
432
+  (0.1ms) BEGIN
433
+  (0.1ms) SAVEPOINT active_record_1
434
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.532594"], ["updated_at", "2015-05-04 04:45:34.532594"]]
435
+  (0.2ms) RELEASE SAVEPOINT active_record_1
436
+  (0.3ms) SAVEPOINT active_record_1
437
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.537586"], ["updated_at", "2015-05-04 04:45:34.537586"]]
438
+  (0.2ms) RELEASE SAVEPOINT active_record_1
439
+  (0.1ms) SAVEPOINT active_record_1
440
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.540377"], ["updated_at", "2015-05-04 04:45:34.540377"]]
441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
444
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 54], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.544897"], ["updated_at", "2015-05-04 04:45:34.544897"]]
445
+  (0.2ms) RELEASE SAVEPOINT active_record_1
446
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 53) LIMIT 1
447
+  (0.1ms) ROLLBACK
448
+  (0.1ms) BEGIN
449
+  (0.1ms) SAVEPOINT active_record_1
450
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.555103"], ["updated_at", "2015-05-04 04:45:34.555103"]]
451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
452
+  (0.2ms) SAVEPOINT active_record_1
453
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.558957"], ["updated_at", "2015-05-04 04:45:34.558957"]]
454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
455
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
456
+  (0.2ms) ROLLBACK
457
+  (0.1ms) BEGIN
458
+  (0.1ms) SAVEPOINT active_record_1
459
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.564892"], ["updated_at", "2015-05-04 04:45:34.564892"]]
460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
461
+  (0.2ms) SAVEPOINT active_record_1
462
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.567818"], ["updated_at", "2015-05-04 04:45:34.567818"]]
463
+  (0.2ms) RELEASE SAVEPOINT active_record_1
464
+  (0.6ms) SAVEPOINT active_record_1
465
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
466
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 58], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:45:34.573560"], ["updated_at", "2015-05-04 04:45:34.573560"]]
467
+  (0.2ms) RELEASE SAVEPOINT active_record_1
468
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
469
+  (0.2ms) ROLLBACK
470
+  (0.1ms) BEGIN
471
+  (0.1ms) SAVEPOINT active_record_1
472
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.582970"], ["updated_at", "2015-05-04 04:45:34.582970"]]
473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
474
+  (0.1ms) SAVEPOINT active_record_1
475
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.586441"], ["updated_at", "2015-05-04 04:45:34.586441"]]
476
+  (0.2ms) RELEASE SAVEPOINT active_record_1
477
+  (0.1ms) SAVEPOINT active_record_1
478
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 60) LIMIT 1
479
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 60], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:45:34.591887"], ["updated_at", "2015-05-04 04:45:34.591887"]]
480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
481
+  (0.1ms) SAVEPOINT active_record_1
482
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.594918"], ["updated_at", "2015-05-04 04:45:34.594918"]]
483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
484
+  (0.1ms) SAVEPOINT active_record_1
485
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 61) LIMIT 1
486
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 61], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:45:34.599324"], ["updated_at", "2015-05-04 04:45:34.599324"]]
487
+  (0.2ms) RELEASE SAVEPOINT active_record_1
488
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 29 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 61) LIMIT 1
489
+  (0.2ms) ROLLBACK
490
+  (0.2ms) BEGIN
491
+  (0.2ms) SAVEPOINT active_record_1
492
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.606849"], ["updated_at", "2015-05-04 04:45:34.606849"]]
493
+  (0.2ms) RELEASE SAVEPOINT active_record_1
494
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
495
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
496
+  (0.2ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
497
+  (0.1ms) SAVEPOINT active_record_1
498
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
499
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 62], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.617381"], ["updated_at", "2015-05-04 04:45:34.617381"]]
500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
501
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
502
+  (0.2ms) ROLLBACK
503
+  (0.1ms) BEGIN
504
+  (0.1ms) SAVEPOINT active_record_1
505
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.624026"], ["updated_at", "2015-05-04 04:45:34.624026"]]
506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
507
+  (0.1ms) SAVEPOINT active_record_1
508
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.627324"], ["updated_at", "2015-05-04 04:45:34.627324"]]
509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
510
+  (0.1ms) SAVEPOINT active_record_1
511
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
512
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 64], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.631633"], ["updated_at", "2015-05-04 04:45:34.631633"]]
513
+  (0.1ms) RELEASE SAVEPOINT active_record_1
514
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
515
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
516
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
517
+  (0.1ms) SAVEPOINT active_record_1
518
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 63) LIMIT 1
519
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 63], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.640834"], ["updated_at", "2015-05-04 04:45:34.640834"]]
520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
521
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
522
+  (0.2ms) ROLLBACK
523
+  (0.1ms) BEGIN
524
+  (0.1ms) SAVEPOINT active_record_1
525
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.646786"], ["updated_at", "2015-05-04 04:45:34.646786"]]
526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
527
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
528
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
529
+  (0.1ms) SAVEPOINT active_record_1
530
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
531
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 65], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.654250"], ["updated_at", "2015-05-04 04:45:34.654250"]]
532
+  (0.2ms) RELEASE SAVEPOINT active_record_1
533
+  (0.1ms) ROLLBACK
534
+  (0.1ms) BEGIN
535
+  (0.1ms) SAVEPOINT active_record_1
536
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.660216"], ["updated_at", "2015-05-04 04:45:34.660216"]]
537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
538
+  (0.1ms) SAVEPOINT active_record_1
539
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 66) LIMIT 1
540
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 66], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.665727"], ["updated_at", "2015-05-04 04:45:34.665727"]]
541
+  (0.2ms) RELEASE SAVEPOINT active_record_1
542
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
543
+  (0.1ms) SAVEPOINT active_record_1
544
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.669621"], ["updated_at", "2015-05-04 04:45:34.669621"]]
545
+  (0.9ms) RELEASE SAVEPOINT active_record_1
546
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
547
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
548
+  (0.2ms) SAVEPOINT active_record_1
549
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 67) LIMIT 1
550
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 67], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.677996"], ["updated_at", "2015-05-04 04:45:34.677996"]]
551
+  (0.6ms) RELEASE SAVEPOINT active_record_1
552
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services"
553
+  (0.6ms) ROLLBACK
554
+  (0.1ms) BEGIN
555
+  (0.1ms) SAVEPOINT active_record_1
556
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.691982"], ["updated_at", "2015-05-04 04:45:34.691982"]]
557
+  (0.2ms) RELEASE SAVEPOINT active_record_1
558
+  (0.2ms) SAVEPOINT active_record_1
559
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
560
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 68], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.700040"], ["updated_at", "2015-05-04 04:45:34.700040"]]
561
+  (0.2ms) RELEASE SAVEPOINT active_record_1
562
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
563
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
564
+  (0.1ms) SAVEPOINT active_record_1
565
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 68]]
566
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 36 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
567
+  (0.2ms) RELEASE SAVEPOINT active_record_1
568
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
569
+  (0.3ms) ROLLBACK
570
+  (0.1ms) BEGIN
571
+  (0.7ms) SAVEPOINT active_record_1
572
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.717052"], ["updated_at", "2015-05-04 04:45:34.717052"]]
573
+  (0.2ms) RELEASE SAVEPOINT active_record_1
574
+  (0.3ms) SAVEPOINT active_record_1
575
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 69) LIMIT 1
576
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 69], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:45:34.726293"], ["updated_at", "2015-05-04 04:45:34.726293"]]
577
+  (0.2ms) RELEASE SAVEPOINT active_record_1
578
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
579
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
580
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
581
+ SocialAuth::Service Load (0.2ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
582
+  (0.1ms) SAVEPOINT active_record_1
583
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 69]]
584
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 37 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 69) LIMIT 1
585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
586
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
587
+  (0.1ms) ROLLBACK
588
+  (0.2ms) BEGIN
589
+  (0.2ms) SAVEPOINT active_record_1
590
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.742028"], ["updated_at", "2015-05-04 04:45:34.742028"]]
591
+  (0.2ms) RELEASE SAVEPOINT active_record_1
592
+  (0.2ms) ROLLBACK
593
+  (0.1ms) BEGIN
594
+  (0.1ms) SAVEPOINT active_record_1
595
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.750888"], ["updated_at", "2015-05-04 04:45:34.750888"]]
596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
597
+  (0.2ms) ROLLBACK
598
+  (0.1ms) BEGIN
599
+  (0.1ms) SAVEPOINT active_record_1
600
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.757619"], ["updated_at", "2015-05-04 04:45:34.757619"]]
601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
602
+  (0.8ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
603
+ SocialAuth::TwitterService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
604
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
605
+  (0.3ms) SAVEPOINT active_record_1
606
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
607
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:45:34.849153"], ["updated_at", "2015-05-04 04:45:34.849153"]]
608
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["user_id", 73], ["created_at", "2015-05-04 04:45:34.852943"], ["updated_at", "2015-05-04 04:45:34.852943"]]
609
+  (0.2ms) RELEASE SAVEPOINT active_record_1
610
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
611
+  (0.2ms) ROLLBACK
612
+  (0.2ms) BEGIN
613
+  (0.2ms) SAVEPOINT active_record_1
614
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.865303"], ["updated_at", "2015-05-04 04:45:34.865303"]]
615
+  (0.2ms) RELEASE SAVEPOINT active_record_1
616
+ SocialAuth::TwitterService Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
617
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
618
+  (0.4ms) SAVEPOINT active_record_1
619
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
620
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
621
+  (0.3ms) ROLLBACK
622
+  (0.2ms) BEGIN
623
+  (0.1ms) SAVEPOINT active_record_1
624
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.947799"], ["updated_at", "2015-05-04 04:45:34.947799"]]
625
+  (0.2ms) RELEASE SAVEPOINT active_record_1
626
+  (0.2ms) ROLLBACK
627
+  (0.2ms) BEGIN
628
+  (0.1ms) SAVEPOINT active_record_1
629
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.955799"], ["updated_at", "2015-05-04 04:45:34.955799"]]
630
+  (0.2ms) RELEASE SAVEPOINT active_record_1
631
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
632
+ SocialAuth::TwitterService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Connected"]]
633
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
634
+  (0.2ms) SAVEPOINT active_record_1
635
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService' AND "social_auth_services"."user_id" = 76) LIMIT 1
636
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 76], ["method", "Connected"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:45:35.006405"], ["updated_at", "2015-05-04 04:45:35.006405"]]
637
+  (0.3ms) RELEASE SAVEPOINT active_record_1
638
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
639
+  (0.2ms) ROLLBACK
640
+  (0.1ms) BEGIN
641
+  (0.1ms) SAVEPOINT active_record_1
642
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:35.017333"], ["updated_at", "2015-05-04 04:45:35.017333"]]
643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
644
+  (0.2ms) SAVEPOINT active_record_1
645
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
646
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 77], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:45:35.027164"], ["updated_at", "2015-05-04 04:45:35.027164"]]
647
+  (0.2ms) RELEASE SAVEPOINT active_record_1
648
+  (0.5ms) ROLLBACK
649
+  (0.1ms) BEGIN
650
+  (0.2ms) SAVEPOINT active_record_1
651
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:35.114218"], ["updated_at", "2015-05-04 04:45:35.114218"]]
652
+  (0.2ms) RELEASE SAVEPOINT active_record_1
653
+  (0.3ms) SAVEPOINT active_record_1
654
+ SocialAuth::Service Exists (1.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
655
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 78], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:45:35.130518"], ["updated_at", "2015-05-04 04:45:35.130518"]]
656
+  (0.4ms) RELEASE SAVEPOINT active_record_1
657
+  (0.2ms) SAVEPOINT active_record_1
658
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
659
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
660
+  (0.3ms) ROLLBACK
661
+  (0.1ms) BEGIN
662
+  (0.2ms) SAVEPOINT active_record_1
663
+ SQL (1.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.017852"], ["updated_at", "2015-05-04 04:47:57.017852"]]
664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
665
+  (0.4ms) ROLLBACK
666
+  (0.2ms) BEGIN
667
+  (0.2ms) SAVEPOINT active_record_1
668
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.049180"], ["updated_at", "2015-05-04 04:47:57.049180"]]
669
+  (0.2ms) RELEASE SAVEPOINT active_record_1
670
+  (0.2ms) ROLLBACK
671
+  (0.2ms) BEGIN
672
+  (0.1ms) SAVEPOINT active_record_1
673
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.057650"], ["updated_at", "2015-05-04 04:47:57.057650"]]
674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
675
+  (0.2ms) ROLLBACK
676
+  (0.1ms) BEGIN
677
+  (0.1ms) SAVEPOINT active_record_1
678
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.085533"], ["updated_at", "2015-05-04 04:47:57.085533"]]
679
+  (0.2ms) RELEASE SAVEPOINT active_record_1
680
+  (1.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
681
+ SocialAuth::FacebookService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
682
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
683
+  (0.2ms) SAVEPOINT active_record_1
684
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
685
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.167492"], ["updated_at", "2015-05-04 04:47:57.167492"]]
686
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["user_id", 83], ["created_at", "2015-05-04 04:47:57.170049"], ["updated_at", "2015-05-04 04:47:57.170049"]]
687
+  (0.2ms) RELEASE SAVEPOINT active_record_1
688
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
689
+  (0.6ms) ROLLBACK
690
+  (0.1ms) BEGIN
691
+  (0.1ms) SAVEPOINT active_record_1
692
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.178530"], ["updated_at", "2015-05-04 04:47:57.178530"]]
693
+  (0.1ms) RELEASE SAVEPOINT active_record_1
694
+ SocialAuth::FacebookService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
695
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
696
+  (0.2ms) SAVEPOINT active_record_1
697
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
698
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
699
+  (0.2ms) ROLLBACK
700
+  (0.1ms) BEGIN
701
+  (0.1ms) SAVEPOINT active_record_1
702
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.209021"], ["updated_at", "2015-05-04 04:47:57.209021"]]
703
+  (0.3ms) RELEASE SAVEPOINT active_record_1
704
+  (0.2ms) ROLLBACK
705
+  (0.2ms) BEGIN
706
+  (0.2ms) SAVEPOINT active_record_1
707
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.222807"], ["updated_at", "2015-05-04 04:47:57.222807"]]
708
+  (0.3ms) RELEASE SAVEPOINT active_record_1
709
+  (0.2ms) ROLLBACK
710
+  (0.1ms) BEGIN
711
+  (0.1ms) SAVEPOINT active_record_1
712
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.238141"], ["updated_at", "2015-05-04 04:47:57.238141"]]
713
+  (0.2ms) RELEASE SAVEPOINT active_record_1
714
+  (0.8ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
715
+ SocialAuth::FacebookService Load (1.0ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Connected"]]
716
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
717
+  (0.6ms) SAVEPOINT active_record_1
718
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService' AND "social_auth_services"."user_id" = 87) LIMIT 1
719
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 87], ["method", "Connected"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:47:57.260159"], ["updated_at", "2015-05-04 04:47:57.260159"]]
720
+  (0.2ms) RELEASE SAVEPOINT active_record_1
721
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
722
+  (0.2ms) ROLLBACK
723
+  (0.1ms) BEGIN
724
+  (0.1ms) SAVEPOINT active_record_1
725
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.285885"], ["updated_at", "2015-05-04 04:47:57.285885"]]
726
+  (0.2ms) RELEASE SAVEPOINT active_record_1
727
+  (0.2ms) SAVEPOINT active_record_1
728
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
729
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 88], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:47:57.295169"], ["updated_at", "2015-05-04 04:47:57.295169"]]
730
+  (0.2ms) RELEASE SAVEPOINT active_record_1
731
+  (0.2ms) ROLLBACK
732
+  (0.1ms) BEGIN
733
+  (0.1ms) SAVEPOINT active_record_1
734
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.316408"], ["updated_at", "2015-05-04 04:47:57.316408"]]
735
+  (0.2ms) RELEASE SAVEPOINT active_record_1
736
+  (0.3ms) SAVEPOINT active_record_1
737
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
738
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 89], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:47:57.327391"], ["updated_at", "2015-05-04 04:47:57.327391"]]
739
+  (0.3ms) RELEASE SAVEPOINT active_record_1
740
+  (0.9ms) ROLLBACK
741
+  (0.2ms) BEGIN
742
+  (0.2ms) SAVEPOINT active_record_1
743
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.348209"], ["updated_at", "2015-05-04 04:47:57.348209"]]
744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
745
+  (0.2ms) SAVEPOINT active_record_1
746
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
747
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 90], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 04:47:57.357134"], ["updated_at", "2015-05-04 04:47:57.357134"]]
748
+  (0.2ms) RELEASE SAVEPOINT active_record_1
749
+  (0.2ms) SAVEPOINT active_record_1
750
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
751
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
752
+  (0.3ms) ROLLBACK
753
+  (0.1ms) BEGIN
754
+  (0.1ms) SAVEPOINT active_record_1
755
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.377719"], ["updated_at", "2015-05-04 04:47:57.377719"]]
756
+  (0.2ms) RELEASE SAVEPOINT active_record_1
757
+  (0.2ms) ROLLBACK
758
+  (0.2ms) BEGIN
759
+  (0.1ms) SAVEPOINT active_record_1
760
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.386383"], ["updated_at", "2015-05-04 04:47:57.386383"]]
761
+  (0.2ms) RELEASE SAVEPOINT active_record_1
762
+  (0.2ms) ROLLBACK
763
+  (0.1ms) BEGIN
764
+  (0.1ms) SAVEPOINT active_record_1
765
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.395910"], ["updated_at", "2015-05-04 04:47:57.395910"]]
766
+  (0.2ms) RELEASE SAVEPOINT active_record_1
767
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
768
+ ETHON: Libcurl initialized
769
+ SocialAuth::GooglePlusService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
770
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
771
+  (0.3ms) SAVEPOINT active_record_1
772
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
773
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.451390"], ["updated_at", "2015-05-04 04:47:57.451390"]]
774
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["user_id", 94], ["created_at", "2015-05-04 04:47:57.453297"], ["updated_at", "2015-05-04 04:47:57.453297"]]
775
+  (0.2ms) RELEASE SAVEPOINT active_record_1
776
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
777
+  (0.2ms) ROLLBACK
778
+  (0.2ms) BEGIN
779
+  (0.1ms) SAVEPOINT active_record_1
780
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.461675"], ["updated_at", "2015-05-04 04:47:57.461675"]]
781
+  (0.2ms) RELEASE SAVEPOINT active_record_1
782
+ SocialAuth::GooglePlusService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
783
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
784
+  (0.2ms) SAVEPOINT active_record_1
785
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
786
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
787
+  (0.2ms) ROLLBACK
788
+  (0.1ms) BEGIN
789
+  (0.1ms) SAVEPOINT active_record_1
790
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.493476"], ["updated_at", "2015-05-04 04:47:57.493476"]]
791
+  (0.2ms) RELEASE SAVEPOINT active_record_1
792
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
793
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
794
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
795
+  (0.2ms) SAVEPOINT active_record_1
796
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService' AND "social_auth_services"."user_id" = 96) LIMIT 1
797
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["user_id", 96], ["method", "Connected"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["created_at", "2015-05-04 04:47:57.516911"], ["updated_at", "2015-05-04 04:47:57.516911"]]
798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
799
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
800
+  (0.1ms) ROLLBACK
801
+  (0.1ms) BEGIN
802
+  (0.1ms) SAVEPOINT active_record_1
803
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.523815"], ["updated_at", "2015-05-04 04:47:57.523815"]]
804
+  (0.1ms) RELEASE SAVEPOINT active_record_1
805
+  (0.4ms) ROLLBACK
806
+  (0.1ms) BEGIN
807
+  (0.1ms) SAVEPOINT active_record_1
808
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.560813"], ["updated_at", "2015-05-04 04:47:57.560813"]]
809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
810
+  (0.2ms) ROLLBACK
811
+  (0.1ms) BEGIN
812
+  (0.1ms) SAVEPOINT active_record_1
813
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.582103"], ["updated_at", "2015-05-04 04:47:57.582103"]]
814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
815
+  (0.3ms) ROLLBACK
816
+  (0.7ms) BEGIN
817
+  (0.2ms) SAVEPOINT active_record_1
818
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.605768"], ["updated_at", "2015-05-04 04:47:57.605768"]]
819
+  (0.1ms) RELEASE SAVEPOINT active_record_1
820
+  (0.2ms) ROLLBACK
821
+  (0.1ms) BEGIN
822
+  (0.1ms) SAVEPOINT active_record_1
823
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.613241"], ["updated_at", "2015-05-04 04:47:57.613241"]]
824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
825
+  (0.1ms) SAVEPOINT active_record_1
826
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
827
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 101], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:47:57.620123"], ["updated_at", "2015-05-04 04:47:57.620123"]]
828
+  (0.2ms) RELEASE SAVEPOINT active_record_1
829
+  (0.2ms) ROLLBACK
830
+  (0.1ms) BEGIN
831
+  (0.1ms) SAVEPOINT active_record_1
832
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.651445"], ["updated_at", "2015-05-04 04:47:57.651445"]]
833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
834
+  (0.2ms) SAVEPOINT active_record_1
835
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
836
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 102], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:47:57.660767"], ["updated_at", "2015-05-04 04:47:57.660767"]]
837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
838
+  (0.2ms) ROLLBACK
839
+  (0.1ms) BEGIN
840
+  (0.1ms) SAVEPOINT active_record_1
841
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.668064"], ["updated_at", "2015-05-04 04:47:57.668064"]]
842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
843
+  (0.2ms) SAVEPOINT active_record_1
844
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
845
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 103], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 04:47:57.676967"], ["updated_at", "2015-05-04 04:47:57.676967"]]
846
+  (0.4ms) RELEASE SAVEPOINT active_record_1
847
+  (0.1ms) SAVEPOINT active_record_1
848
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
849
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
850
+  (0.2ms) ROLLBACK
851
+  (0.1ms) BEGIN
852
+  (0.1ms) SAVEPOINT active_record_1
853
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.702660"], ["updated_at", "2015-05-04 04:47:57.702660"]]
854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
855
+  (0.1ms) SAVEPOINT active_record_1
856
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.705767"], ["updated_at", "2015-05-04 04:47:57.705767"]]
857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
858
+  (0.1ms) SAVEPOINT active_record_1
859
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 105]]
860
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
861
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 105], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:47:57.715459"], ["updated_at", "2015-05-04 04:47:57.715459"]]
862
+  (0.2ms) RELEASE SAVEPOINT active_record_1
863
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 52 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
864
+  (0.3ms) ROLLBACK
865
+  (0.1ms) BEGIN
866
+  (0.1ms) SAVEPOINT active_record_1
867
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.724772"], ["updated_at", "2015-05-04 04:47:57.724772"]]
868
+  (0.2ms) RELEASE SAVEPOINT active_record_1
869
+  (0.1ms) SAVEPOINT active_record_1
870
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.730075"], ["updated_at", "2015-05-04 04:47:57.730075"]]
871
+  (0.2ms) RELEASE SAVEPOINT active_record_1
872
+  (0.1ms) SAVEPOINT active_record_1
873
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
874
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 107], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.734708"], ["updated_at", "2015-05-04 04:47:57.734708"]]
875
+  (0.2ms) RELEASE SAVEPOINT active_record_1
876
+  (0.1ms) SAVEPOINT active_record_1
877
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.738992"], ["updated_at", "2015-05-04 04:47:57.738992"]]
878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
879
+  (0.1ms) SAVEPOINT active_record_1
880
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
881
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 108], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.743682"], ["updated_at", "2015-05-04 04:47:57.743682"]]
882
+  (0.2ms) RELEASE SAVEPOINT active_record_1
883
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
884
+  (0.2ms) ROLLBACK
885
+  (0.1ms) BEGIN
886
+  (0.1ms) SAVEPOINT active_record_1
887
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.754341"], ["updated_at", "2015-05-04 04:47:57.754341"]]
888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
889
+  (0.1ms) SAVEPOINT active_record_1
890
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.758099"], ["updated_at", "2015-05-04 04:47:57.758099"]]
891
+  (0.2ms) RELEASE SAVEPOINT active_record_1
892
+  (0.1ms) SAVEPOINT active_record_1
893
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
894
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 110], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.763799"], ["updated_at", "2015-05-04 04:47:57.763799"]]
895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
896
+  (0.1ms) SAVEPOINT active_record_1
897
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.767688"], ["updated_at", "2015-05-04 04:47:57.767688"]]
898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
899
+  (0.1ms) SAVEPOINT active_record_1
900
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
901
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 111], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.771677"], ["updated_at", "2015-05-04 04:47:57.771677"]]
902
+  (0.1ms) RELEASE SAVEPOINT active_record_1
903
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
904
+  (0.2ms) ROLLBACK
905
+  (0.2ms) BEGIN
906
+  (0.1ms) SAVEPOINT active_record_1
907
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.781035"], ["updated_at", "2015-05-04 04:47:57.781035"]]
908
+  (0.1ms) RELEASE SAVEPOINT active_record_1
909
+  (0.1ms) SAVEPOINT active_record_1
910
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.784815"], ["updated_at", "2015-05-04 04:47:57.784815"]]
911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
912
+  (0.2ms) SAVEPOINT active_record_1
913
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
914
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 113], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.789338"], ["updated_at", "2015-05-04 04:47:57.789338"]]
915
+  (0.1ms) RELEASE SAVEPOINT active_record_1
916
+  (0.1ms) ROLLBACK
917
+  (0.1ms) BEGIN
918
+  (0.1ms) SAVEPOINT active_record_1
919
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.794709"], ["updated_at", "2015-05-04 04:47:57.794709"]]
920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
921
+  (0.1ms) SAVEPOINT active_record_1
922
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.797856"], ["updated_at", "2015-05-04 04:47:57.797856"]]
923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
924
+  (0.1ms) SAVEPOINT active_record_1
925
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
926
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 115], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.802359"], ["updated_at", "2015-05-04 04:47:57.802359"]]
927
+  (0.3ms) RELEASE SAVEPOINT active_record_1
928
+  (0.2ms) SAVEPOINT active_record_1
929
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.809891"], ["updated_at", "2015-05-04 04:47:57.809891"]]
930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
931
+  (0.1ms) SAVEPOINT active_record_1
932
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
933
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 116], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.815571"], ["updated_at", "2015-05-04 04:47:57.815571"]]
934
+  (0.5ms) RELEASE SAVEPOINT active_record_1
935
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 59]]
936
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
937
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 115]]
938
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 116]]
939
+  (0.2ms) ROLLBACK
940
+  (0.1ms) BEGIN
941
+  (0.1ms) SAVEPOINT active_record_1
942
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.831504"], ["updated_at", "2015-05-04 04:47:57.831504"]]
943
+  (0.1ms) RELEASE SAVEPOINT active_record_1
944
+  (0.1ms) SAVEPOINT active_record_1
945
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.835371"], ["updated_at", "2015-05-04 04:47:57.835371"]]
946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
947
+  (0.1ms) SAVEPOINT active_record_1
948
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
949
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 118], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.839747"], ["updated_at", "2015-05-04 04:47:57.839747"]]
950
+  (0.3ms) RELEASE SAVEPOINT active_record_1
951
+  (0.1ms) SAVEPOINT active_record_1
952
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.844840"], ["updated_at", "2015-05-04 04:47:57.844840"]]
953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
954
+  (0.1ms) SAVEPOINT active_record_1
955
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
956
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 119], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 04:47:57.849074"], ["updated_at", "2015-05-04 04:47:57.849074"]]
957
+  (0.1ms) RELEASE SAVEPOINT active_record_1
958
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 61]]
959
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
960
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 118]]
961
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 119]]
962
+  (0.3ms) ROLLBACK
963
+  (0.1ms) BEGIN
964
+  (0.1ms) SAVEPOINT active_record_1
965
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.862774"], ["updated_at", "2015-05-04 04:47:57.862774"]]
966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
967
+  (0.2ms) SAVEPOINT active_record_1
968
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
969
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 120], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:47:57.870512"], ["updated_at", "2015-05-04 04:47:57.870512"]]
970
+  (0.2ms) RELEASE SAVEPOINT active_record_1
971
+  (0.3ms) SAVEPOINT active_record_1
972
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 62 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 120) LIMIT 1
973
+ SQL (0.4ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 04:47:57.879571"], ["id", 62]]
974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
975
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
976
+  (0.1ms) SAVEPOINT active_record_1
977
+ SQL (0.2ms) DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 62]]
978
+  (0.1ms) RELEASE SAVEPOINT active_record_1
979
+  (0.2ms) SELECT COUNT(*) FROM "social_auth_services"
980
+  (0.1ms) ROLLBACK
981
+  (0.1ms) BEGIN
982
+  (0.1ms) SAVEPOINT active_record_1
983
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.890312"], ["updated_at", "2015-05-04 04:47:57.890312"]]
984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
985
+  (0.1ms) SAVEPOINT active_record_1
986
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
987
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 121], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:47:57.896221"], ["updated_at", "2015-05-04 04:47:57.896221"]]
988
+  (0.1ms) RELEASE SAVEPOINT active_record_1
989
+  (0.1ms) SAVEPOINT active_record_1
990
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 63 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
991
+  (0.2ms) RELEASE SAVEPOINT active_record_1
992
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
993
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
994
+  (0.2ms) ROLLBACK
995
+  (0.1ms) BEGIN
996
+  (0.1ms) SAVEPOINT active_record_1
997
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.907037"], ["updated_at", "2015-05-04 04:47:57.907037"]]
998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
999
+  (0.1ms) SAVEPOINT active_record_1
1000
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1001
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 122], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:47:57.912761"], ["updated_at", "2015-05-04 04:47:57.912761"]]
1002
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1003
+  (0.1ms) ROLLBACK
1004
+  (0.1ms) BEGIN
1005
+  (0.1ms) SAVEPOINT active_record_1
1006
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.919173"], ["updated_at", "2015-05-04 04:47:57.919173"]]
1007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1008
+  (0.1ms) SAVEPOINT active_record_1
1009
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1010
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 123], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 04:47:57.935672"], ["updated_at", "2015-05-04 04:47:57.935672"]]
1011
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1012
+  (0.2ms) ROLLBACK
1013
+  (0.1ms) BEGIN
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.942602"], ["updated_at", "2015-05-04 04:47:57.942602"]]
1016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1017
+  (0.2ms) SAVEPOINT active_record_1
1018
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 124) LIMIT 1
1019
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 124], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:47:57.950140"], ["updated_at", "2015-05-04 04:47:57.950140"]]
1020
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1021
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 124]]
1022
+  (0.2ms) ROLLBACK
1023
+  (0.1ms) BEGIN
1024
+  (0.1ms) SAVEPOINT active_record_1
1025
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.958156"], ["updated_at", "2015-05-04 04:47:57.958156"]]
1026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.2ms) SAVEPOINT active_record_1
1028
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1029
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 125], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:47:57.964898"], ["updated_at", "2015-05-04 04:47:57.964898"]]
1030
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1031
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 125]]
1032
+  (0.2ms) ROLLBACK
1033
+  (0.1ms) BEGIN
1034
+  (0.1ms) SAVEPOINT active_record_1
1035
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.971249"], ["updated_at", "2015-05-04 04:47:57.971249"]]
1036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1037
+ SocialAuth::Service Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 126]]
1038
+  (0.2ms) ROLLBACK
1039
+  (0.2ms) BEGIN
1040
+  (0.1ms) SAVEPOINT active_record_1
1041
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.978364"], ["updated_at", "2015-05-04 04:47:57.978364"]]
1042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1043
+  (0.2ms) SAVEPOINT active_record_1
1044
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.981411"], ["updated_at", "2015-05-04 04:47:57.981411"]]
1045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1046
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 128) LIMIT 1
1047
+  (0.2ms) ROLLBACK
1048
+  (0.1ms) BEGIN
1049
+  (0.1ms) SAVEPOINT active_record_1
1050
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.988190"], ["updated_at", "2015-05-04 04:47:57.988190"]]
1051
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1052
+  (0.2ms) SAVEPOINT active_record_1
1053
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:57.992471"], ["updated_at", "2015-05-04 04:47:57.992471"]]
1054
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1055
+  (0.1ms) SAVEPOINT active_record_1
1056
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 130) LIMIT 1
1057
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 130], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 04:47:57.999564"], ["updated_at", "2015-05-04 04:47:57.999564"]]
1058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
+  (0.1ms) SAVEPOINT active_record_1
1060
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 130) LIMIT 1
1061
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1062
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 130) LIMIT 1
1063
+  (0.2ms) ROLLBACK
1064
+  (0.1ms) BEGIN
1065
+  (0.3ms) SAVEPOINT active_record_1
1066
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.010868"], ["updated_at", "2015-05-04 04:47:58.010868"]]
1067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1068
+  (0.1ms) SAVEPOINT active_record_1
1069
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.014235"], ["updated_at", "2015-05-04 04:47:58.014235"]]
1070
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1071
+  (0.1ms) SAVEPOINT active_record_1
1072
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.016437"], ["updated_at", "2015-05-04 04:47:58.016437"]]
1073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.1ms) SAVEPOINT active_record_1
1075
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1076
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 133], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.021076"], ["updated_at", "2015-05-04 04:47:58.021076"]]
1077
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1078
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 132) LIMIT 1
1079
+  (0.2ms) ROLLBACK
1080
+  (0.1ms) BEGIN
1081
+  (0.2ms) SAVEPOINT active_record_1
1082
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.028474"], ["updated_at", "2015-05-04 04:47:58.028474"]]
1083
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1084
+  (0.1ms) SAVEPOINT active_record_1
1085
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.032173"], ["updated_at", "2015-05-04 04:47:58.032173"]]
1086
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1087
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1088
+  (0.3ms) ROLLBACK
1089
+  (0.1ms) BEGIN
1090
+  (0.1ms) SAVEPOINT active_record_1
1091
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.038903"], ["updated_at", "2015-05-04 04:47:58.038903"]]
1092
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1093
+  (0.2ms) SAVEPOINT active_record_1
1094
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.043546"], ["updated_at", "2015-05-04 04:47:58.043546"]]
1095
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1096
+  (0.1ms) SAVEPOINT active_record_1
1097
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1098
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 137], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:47:58.048611"], ["updated_at", "2015-05-04 04:47:58.048611"]]
1099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1100
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1101
+  (0.1ms) ROLLBACK
1102
+  (0.1ms) BEGIN
1103
+  (0.1ms) SAVEPOINT active_record_1
1104
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.056750"], ["updated_at", "2015-05-04 04:47:58.056750"]]
1105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1106
+  (0.1ms) SAVEPOINT active_record_1
1107
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.060451"], ["updated_at", "2015-05-04 04:47:58.060451"]]
1108
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1109
+  (0.1ms) SAVEPOINT active_record_1
1110
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 139) LIMIT 1
1111
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 139], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:47:58.065280"], ["updated_at", "2015-05-04 04:47:58.065280"]]
1112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
+  (0.1ms) SAVEPOINT active_record_1
1114
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.068376"], ["updated_at", "2015-05-04 04:47:58.068376"]]
1115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1116
+  (0.1ms) SAVEPOINT active_record_1
1117
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 140) LIMIT 1
1118
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 140], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 04:47:58.072392"], ["updated_at", "2015-05-04 04:47:58.072392"]]
1119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1120
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 72 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 140) LIMIT 1
1121
+  (0.3ms) ROLLBACK
1122
+  (0.1ms) BEGIN
1123
+  (0.1ms) SAVEPOINT active_record_1
1124
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.080295"], ["updated_at", "2015-05-04 04:47:58.080295"]]
1125
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1126
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1127
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1128
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1129
+  (0.2ms) SAVEPOINT active_record_1
1130
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1131
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 141], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.090540"], ["updated_at", "2015-05-04 04:47:58.090540"]]
1132
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1133
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1134
+  (0.2ms) ROLLBACK
1135
+  (0.2ms) BEGIN
1136
+  (0.2ms) SAVEPOINT active_record_1
1137
+ SQL (0.7ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.100866"], ["updated_at", "2015-05-04 04:47:58.100866"]]
1138
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1139
+  (0.1ms) SAVEPOINT active_record_1
1140
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.105675"], ["updated_at", "2015-05-04 04:47:58.105675"]]
1141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1142
+  (0.1ms) SAVEPOINT active_record_1
1143
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1144
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 143], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.110432"], ["updated_at", "2015-05-04 04:47:58.110432"]]
1145
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1146
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1147
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1148
+  (0.2ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1149
+  (0.1ms) SAVEPOINT active_record_1
1150
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 142) LIMIT 1
1151
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 142], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.118593"], ["updated_at", "2015-05-04 04:47:58.118593"]]
1152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1153
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1154
+  (0.2ms) ROLLBACK
1155
+  (0.1ms) BEGIN
1156
+  (0.1ms) SAVEPOINT active_record_1
1157
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.125271"], ["updated_at", "2015-05-04 04:47:58.125271"]]
1158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1159
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1160
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1161
+  (0.2ms) SAVEPOINT active_record_1
1162
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1163
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 144], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.133719"], ["updated_at", "2015-05-04 04:47:58.133719"]]
1164
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1165
+  (0.1ms) ROLLBACK
1166
+  (0.1ms) BEGIN
1167
+  (0.1ms) SAVEPOINT active_record_1
1168
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.138560"], ["updated_at", "2015-05-04 04:47:58.138560"]]
1169
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1170
+  (0.1ms) SAVEPOINT active_record_1
1171
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 145) LIMIT 1
1172
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 145], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.144980"], ["updated_at", "2015-05-04 04:47:58.144980"]]
1173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1174
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1175
+  (0.2ms) SAVEPOINT active_record_1
1176
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.149681"], ["updated_at", "2015-05-04 04:47:58.149681"]]
1177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1178
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1179
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1180
+  (0.1ms) SAVEPOINT active_record_1
1181
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 146) LIMIT 1
1182
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 146], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.155658"], ["updated_at", "2015-05-04 04:47:58.155658"]]
1183
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1184
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1185
+  (0.1ms) ROLLBACK
1186
+  (0.1ms) BEGIN
1187
+  (0.2ms) SAVEPOINT active_record_1
1188
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.161618"], ["updated_at", "2015-05-04 04:47:58.161618"]]
1189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1190
+  (0.2ms) SAVEPOINT active_record_1
1191
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1192
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 147], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.169555"], ["updated_at", "2015-05-04 04:47:58.169555"]]
1193
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1194
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1195
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1196
+  (0.2ms) SAVEPOINT active_record_1
1197
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 147]]
1198
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 79 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1199
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1200
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1201
+  (0.2ms) ROLLBACK
1202
+  (0.1ms) BEGIN
1203
+  (0.1ms) SAVEPOINT active_record_1
1204
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.182684"], ["updated_at", "2015-05-04 04:47:58.182684"]]
1205
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1206
+  (0.1ms) SAVEPOINT active_record_1
1207
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 148) LIMIT 1
1208
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 148], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 04:47:58.188703"], ["updated_at", "2015-05-04 04:47:58.188703"]]
1209
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1210
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1211
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1212
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1213
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1214
+  (0.2ms) SAVEPOINT active_record_1
1215
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 148]]
1216
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 80 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 148) LIMIT 1
1217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1218
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1219
+  (0.1ms) ROLLBACK
1220
+  (0.1ms) BEGIN
1221
+  (0.1ms) SAVEPOINT active_record_1
1222
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.204921"], ["updated_at", "2015-05-04 04:47:58.204921"]]
1223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1224
+  (0.1ms) ROLLBACK
1225
+  (0.1ms) BEGIN
1226
+  (0.1ms) SAVEPOINT active_record_1
1227
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.211356"], ["updated_at", "2015-05-04 04:47:58.211356"]]
1228
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1229
+  (0.1ms) ROLLBACK
1230
+  (0.1ms) BEGIN
1231
+  (0.1ms) SAVEPOINT active_record_1
1232
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.218313"], ["updated_at", "2015-05-04 04:47:58.218313"]]
1233
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1234
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1235
+ SocialAuth::TwitterService Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
1236
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1237
+  (0.3ms) SAVEPOINT active_record_1
1238
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1239
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 04:47:58.312318"], ["updated_at", "2015-05-04 04:47:58.312318"]]
1240
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["user_id", 152], ["created_at", "2015-05-04 04:47:58.314169"], ["updated_at", "2015-05-04 04:47:58.314169"]]
1241
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1242
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1243
+  (0.2ms) ROLLBACK
1244
+  (0.1ms) BEGIN
1245
+  (0.1ms) SAVEPOINT active_record_1
1246
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.321024"], ["updated_at", "2015-05-04 04:47:58.321024"]]
1247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1248
+ SocialAuth::TwitterService Load (0.7ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
1249
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1250
+  (0.2ms) SAVEPOINT active_record_1
1251
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1252
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1253
+  (0.2ms) ROLLBACK
1254
+  (0.1ms) BEGIN
1255
+  (0.1ms) SAVEPOINT active_record_1
1256
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.397038"], ["updated_at", "2015-05-04 04:47:58.397038"]]
1257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1258
+  (0.2ms) ROLLBACK
1259
+  (0.1ms) BEGIN
1260
+  (0.1ms) SAVEPOINT active_record_1
1261
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.403492"], ["updated_at", "2015-05-04 04:47:58.403492"]]
1262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1263
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1264
+ SocialAuth::TwitterService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Connected"]]
1265
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1266
+  (0.2ms) SAVEPOINT active_record_1
1267
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService' AND "social_auth_services"."user_id" = 155) LIMIT 1
1268
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 155], ["method", "Connected"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:47:58.445678"], ["updated_at", "2015-05-04 04:47:58.445678"]]
1269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1270
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1271
+  (0.2ms) ROLLBACK
1272
+  (0.1ms) BEGIN
1273
+  (0.1ms) SAVEPOINT active_record_1
1274
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.453182"], ["updated_at", "2015-05-04 04:47:58.453182"]]
1275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1276
+  (0.1ms) SAVEPOINT active_record_1
1277
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1278
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 156], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:47:58.460351"], ["updated_at", "2015-05-04 04:47:58.460351"]]
1279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1280
+  (0.2ms) ROLLBACK
1281
+  (0.1ms) BEGIN
1282
+  (0.1ms) SAVEPOINT active_record_1
1283
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.524872"], ["updated_at", "2015-05-04 04:47:58.524872"]]
1284
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1285
+  (0.2ms) SAVEPOINT active_record_1
1286
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1287
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 157], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 04:47:58.532878"], ["updated_at", "2015-05-04 04:47:58.532878"]]
1288
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1289
+  (0.1ms) SAVEPOINT active_record_1
1290
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1291
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1292
+  (0.2ms) ROLLBACK
1293
+  (0.1ms) BEGIN
1294
+  (0.3ms) SAVEPOINT active_record_1
1295
+ SQL (1.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.828196"], ["updated_at", "2015-05-04 05:00:12.828196"]]
1296
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1297
+  (1.1ms) ROLLBACK
1298
+  (0.2ms) BEGIN
1299
+  (0.2ms) SAVEPOINT active_record_1
1300
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.859469"], ["updated_at", "2015-05-04 05:00:12.859469"]]
1301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
+  (0.2ms) ROLLBACK
1303
+  (0.1ms) BEGIN
1304
+  (0.1ms) SAVEPOINT active_record_1
1305
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.866617"], ["updated_at", "2015-05-04 05:00:12.866617"]]
1306
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1307
+  (0.3ms) ROLLBACK
1308
+  (0.2ms) BEGIN
1309
+  (0.2ms) SAVEPOINT active_record_1
1310
+ SQL (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.890029"], ["updated_at", "2015-05-04 05:00:12.890029"]]
1311
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1312
+  (1.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1313
+ SocialAuth::FacebookService Load (0.7ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
1314
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1315
+  (0.2ms) SAVEPOINT active_record_1
1316
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1317
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:12.967621"], ["updated_at", "2015-05-04 05:00:12.967621"]]
1318
+ SQL (0.8ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["user_id", 162], ["created_at", "2015-05-04 05:00:12.970318"], ["updated_at", "2015-05-04 05:00:12.970318"]]
1319
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1320
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1321
+  (0.3ms) ROLLBACK
1322
+  (0.1ms) BEGIN
1323
+  (0.1ms) SAVEPOINT active_record_1
1324
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.982005"], ["updated_at", "2015-05-04 05:00:12.982005"]]
1325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1326
+ SocialAuth::FacebookService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
1327
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1328
+  (0.2ms) SAVEPOINT active_record_1
1329
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1330
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1331
+  (0.2ms) ROLLBACK
1332
+  (0.1ms) BEGIN
1333
+  (0.3ms) SAVEPOINT active_record_1
1334
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.014945"], ["updated_at", "2015-05-04 05:00:13.014945"]]
1335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1336
+  (0.3ms) ROLLBACK
1337
+  (0.2ms) BEGIN
1338
+  (0.1ms) SAVEPOINT active_record_1
1339
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.029170"], ["updated_at", "2015-05-04 05:00:13.029170"]]
1340
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1341
+  (0.2ms) ROLLBACK
1342
+  (0.1ms) BEGIN
1343
+  (0.1ms) SAVEPOINT active_record_1
1344
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.043681"], ["updated_at", "2015-05-04 05:00:13.043681"]]
1345
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1346
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1347
+ SocialAuth::FacebookService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1348
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1349
+  (0.2ms) SAVEPOINT active_record_1
1350
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService' AND "social_auth_services"."user_id" = 166) LIMIT 1
1351
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 166], ["method", "Connected"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:13.062937"], ["updated_at", "2015-05-04 05:00:13.062937"]]
1352
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1353
+  (0.8ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1354
+  (0.2ms) ROLLBACK
1355
+  (0.2ms) BEGIN
1356
+  (0.2ms) SAVEPOINT active_record_1
1357
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.093959"], ["updated_at", "2015-05-04 05:00:13.093959"]]
1358
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1359
+  (0.2ms) SAVEPOINT active_record_1
1360
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1361
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 167], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:13.105870"], ["updated_at", "2015-05-04 05:00:13.105870"]]
1362
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1363
+  (0.3ms) ROLLBACK
1364
+  (0.1ms) BEGIN
1365
+  (0.1ms) SAVEPOINT active_record_1
1366
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.126946"], ["updated_at", "2015-05-04 05:00:13.126946"]]
1367
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1368
+  (0.2ms) SAVEPOINT active_record_1
1369
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1370
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 168], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:13.136438"], ["updated_at", "2015-05-04 05:00:13.136438"]]
1371
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1372
+  (0.2ms) ROLLBACK
1373
+  (0.2ms) BEGIN
1374
+  (0.1ms) SAVEPOINT active_record_1
1375
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.155283"], ["updated_at", "2015-05-04 05:00:13.155283"]]
1376
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1377
+  (0.2ms) SAVEPOINT active_record_1
1378
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1379
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 169], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:13.165635"], ["updated_at", "2015-05-04 05:00:13.165635"]]
1380
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1381
+  (0.1ms) SAVEPOINT active_record_1
1382
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1383
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1384
+  (0.3ms) ROLLBACK
1385
+  (0.1ms) BEGIN
1386
+  (0.2ms) SAVEPOINT active_record_1
1387
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.187267"], ["updated_at", "2015-05-04 05:00:13.187267"]]
1388
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1389
+  (0.2ms) ROLLBACK
1390
+  (0.2ms) BEGIN
1391
+  (0.2ms) SAVEPOINT active_record_1
1392
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.195733"], ["updated_at", "2015-05-04 05:00:13.195733"]]
1393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1394
+  (0.2ms) ROLLBACK
1395
+  (0.1ms) BEGIN
1396
+  (0.1ms) SAVEPOINT active_record_1
1397
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.203137"], ["updated_at", "2015-05-04 05:00:13.203137"]]
1398
+  (1.0ms) RELEASE SAVEPOINT active_record_1
1399
+  (1.8ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
1400
+ ETHON: Libcurl initialized
1401
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
1402
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
1403
+  (0.2ms) SAVEPOINT active_record_1
1404
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1405
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.262848"], ["updated_at", "2015-05-04 05:00:13.262848"]]
1406
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["user_id", 173], ["created_at", "2015-05-04 05:00:13.265127"], ["updated_at", "2015-05-04 05:00:13.265127"]]
1407
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1408
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
1409
+  (0.3ms) ROLLBACK
1410
+  (0.1ms) BEGIN
1411
+  (0.1ms) SAVEPOINT active_record_1
1412
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.274092"], ["updated_at", "2015-05-04 05:00:13.274092"]]
1413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1414
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
1415
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
1416
+  (0.2ms) SAVEPOINT active_record_1
1417
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1418
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1419
+  (0.1ms) ROLLBACK
1420
+  (0.1ms) BEGIN
1421
+  (0.1ms) SAVEPOINT active_record_1
1422
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.306666"], ["updated_at", "2015-05-04 05:00:13.306666"]]
1423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1424
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
1425
+ SocialAuth::GooglePlusService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
1426
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
1427
+  (0.1ms) SAVEPOINT active_record_1
1428
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService' AND "social_auth_services"."user_id" = 175) LIMIT 1
1429
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["user_id", 175], ["method", "Connected"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["created_at", "2015-05-04 05:00:13.331792"], ["updated_at", "2015-05-04 05:00:13.331792"]]
1430
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1431
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
1432
+  (0.4ms) ROLLBACK
1433
+  (0.1ms) BEGIN
1434
+  (0.1ms) SAVEPOINT active_record_1
1435
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.340224"], ["updated_at", "2015-05-04 05:00:13.340224"]]
1436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1437
+  (0.2ms) ROLLBACK
1438
+  (0.1ms) BEGIN
1439
+  (0.2ms) SAVEPOINT active_record_1
1440
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.368052"], ["updated_at", "2015-05-04 05:00:13.368052"]]
1441
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1442
+  (0.2ms) ROLLBACK
1443
+  (0.1ms) BEGIN
1444
+  (0.1ms) SAVEPOINT active_record_1
1445
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.390726"], ["updated_at", "2015-05-04 05:00:13.390726"]]
1446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1447
+  (0.2ms) ROLLBACK
1448
+  (0.1ms) BEGIN
1449
+  (0.1ms) SAVEPOINT active_record_1
1450
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.411187"], ["updated_at", "2015-05-04 05:00:13.411187"]]
1451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1452
+  (0.6ms) ROLLBACK
1453
+  (0.2ms) BEGIN
1454
+  (0.1ms) SAVEPOINT active_record_1
1455
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.426664"], ["updated_at", "2015-05-04 05:00:13.426664"]]
1456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1457
+  (0.1ms) SAVEPOINT active_record_1
1458
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1459
+ SQL (0.7ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 180], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:13.433764"], ["updated_at", "2015-05-04 05:00:13.433764"]]
1460
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1461
+  (0.2ms) ROLLBACK
1462
+  (0.1ms) BEGIN
1463
+  (0.1ms) SAVEPOINT active_record_1
1464
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.465274"], ["updated_at", "2015-05-04 05:00:13.465274"]]
1465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1466
+  (0.2ms) SAVEPOINT active_record_1
1467
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1468
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 181], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:13.473283"], ["updated_at", "2015-05-04 05:00:13.473283"]]
1469
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1470
+  (0.1ms) ROLLBACK
1471
+  (0.1ms) BEGIN
1472
+  (0.1ms) SAVEPOINT active_record_1
1473
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.480054"], ["updated_at", "2015-05-04 05:00:13.480054"]]
1474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1475
+  (0.2ms) SAVEPOINT active_record_1
1476
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1477
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 182], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:13.488805"], ["updated_at", "2015-05-04 05:00:13.488805"]]
1478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1479
+  (0.1ms) SAVEPOINT active_record_1
1480
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
1481
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1482
+  (0.3ms) ROLLBACK
1483
+  (0.1ms) BEGIN
1484
+  (0.1ms) SAVEPOINT active_record_1
1485
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.514421"], ["updated_at", "2015-05-04 05:00:13.514421"]]
1486
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1487
+  (0.2ms) SAVEPOINT active_record_1
1488
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.517613"], ["updated_at", "2015-05-04 05:00:13.517613"]]
1489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1490
+  (0.1ms) SAVEPOINT active_record_1
1491
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 184]]
1492
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1493
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 184], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:13.527081"], ["updated_at", "2015-05-04 05:00:13.527081"]]
1494
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1495
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 95 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1496
+  (0.4ms) ROLLBACK
1497
+  (0.2ms) BEGIN
1498
+  (0.2ms) SAVEPOINT active_record_1
1499
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.539567"], ["updated_at", "2015-05-04 05:00:13.539567"]]
1500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1501
+  (0.1ms) SAVEPOINT active_record_1
1502
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.543245"], ["updated_at", "2015-05-04 05:00:13.543245"]]
1503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1504
+  (0.1ms) SAVEPOINT active_record_1
1505
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1506
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 186], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.548720"], ["updated_at", "2015-05-04 05:00:13.548720"]]
1507
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1508
+  (0.3ms) SAVEPOINT active_record_1
1509
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.553896"], ["updated_at", "2015-05-04 05:00:13.553896"]]
1510
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1511
+  (0.1ms) SAVEPOINT active_record_1
1512
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1513
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 187], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.560133"], ["updated_at", "2015-05-04 05:00:13.560133"]]
1514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1515
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
1516
+  (0.2ms) ROLLBACK
1517
+  (0.2ms) BEGIN
1518
+  (0.1ms) SAVEPOINT active_record_1
1519
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.571186"], ["updated_at", "2015-05-04 05:00:13.571186"]]
1520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1521
+  (0.3ms) SAVEPOINT active_record_1
1522
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.574783"], ["updated_at", "2015-05-04 05:00:13.574783"]]
1523
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1524
+  (0.2ms) SAVEPOINT active_record_1
1525
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1526
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 189], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.579474"], ["updated_at", "2015-05-04 05:00:13.579474"]]
1527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1528
+  (0.1ms) SAVEPOINT active_record_1
1529
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.583517"], ["updated_at", "2015-05-04 05:00:13.583517"]]
1530
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1531
+  (0.3ms) SAVEPOINT active_record_1
1532
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1533
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 190], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.589665"], ["updated_at", "2015-05-04 05:00:13.589665"]]
1534
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1535
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
1536
+  (0.1ms) ROLLBACK
1537
+  (0.1ms) BEGIN
1538
+  (0.1ms) SAVEPOINT active_record_1
1539
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.596785"], ["updated_at", "2015-05-04 05:00:13.596785"]]
1540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1541
+  (0.1ms) SAVEPOINT active_record_1
1542
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.600455"], ["updated_at", "2015-05-04 05:00:13.600455"]]
1543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
+  (0.1ms) SAVEPOINT active_record_1
1545
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1546
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 192], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.605746"], ["updated_at", "2015-05-04 05:00:13.605746"]]
1547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1548
+  (0.2ms) ROLLBACK
1549
+  (0.1ms) BEGIN
1550
+  (0.1ms) SAVEPOINT active_record_1
1551
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.611379"], ["updated_at", "2015-05-04 05:00:13.611379"]]
1552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1553
+  (0.1ms) SAVEPOINT active_record_1
1554
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.614317"], ["updated_at", "2015-05-04 05:00:13.614317"]]
1555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1556
+  (0.1ms) SAVEPOINT active_record_1
1557
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1558
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 194], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.619133"], ["updated_at", "2015-05-04 05:00:13.619133"]]
1559
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1560
+  (0.2ms) SAVEPOINT active_record_1
1561
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.626821"], ["updated_at", "2015-05-04 05:00:13.626821"]]
1562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1563
+  (0.1ms) SAVEPOINT active_record_1
1564
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1565
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 195], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.631284"], ["updated_at", "2015-05-04 05:00:13.631284"]]
1566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1567
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 102]]
1568
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
1569
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 194]]
1570
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 195]]
1571
+  (0.2ms) ROLLBACK
1572
+  (0.1ms) BEGIN
1573
+  (0.1ms) SAVEPOINT active_record_1
1574
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.647169"], ["updated_at", "2015-05-04 05:00:13.647169"]]
1575
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1576
+  (0.2ms) SAVEPOINT active_record_1
1577
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.653510"], ["updated_at", "2015-05-04 05:00:13.653510"]]
1578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1579
+  (0.1ms) SAVEPOINT active_record_1
1580
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1581
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 197], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.658327"], ["updated_at", "2015-05-04 05:00:13.658327"]]
1582
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1583
+  (0.1ms) SAVEPOINT active_record_1
1584
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.662443"], ["updated_at", "2015-05-04 05:00:13.662443"]]
1585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1586
+  (0.1ms) SAVEPOINT active_record_1
1587
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1588
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 198], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:13.666539"], ["updated_at", "2015-05-04 05:00:13.666539"]]
1589
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1590
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 104]]
1591
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
1592
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 197]]
1593
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 198]]
1594
+  (0.2ms) ROLLBACK
1595
+  (0.1ms) BEGIN
1596
+  (0.1ms) SAVEPOINT active_record_1
1597
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.680244"], ["updated_at", "2015-05-04 05:00:13.680244"]]
1598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1599
+  (0.1ms) SAVEPOINT active_record_1
1600
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1601
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 199], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:13.686782"], ["updated_at", "2015-05-04 05:00:13.686782"]]
1602
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1603
+  (0.1ms) SAVEPOINT active_record_1
1604
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 105 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 199) LIMIT 1
1605
+ SQL (0.4ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:13.694586"], ["id", 105]]
1606
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1607
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1608
+  (0.2ms) ROLLBACK
1609
+  (0.1ms) BEGIN
1610
+  (0.1ms) SAVEPOINT active_record_1
1611
+ SQL (1.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.701120"], ["updated_at", "2015-05-04 05:00:13.701120"]]
1612
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1613
+  (0.2ms) SAVEPOINT active_record_1
1614
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1615
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 200], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:13.709653"], ["updated_at", "2015-05-04 05:00:13.709653"]]
1616
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1617
+  (0.1ms) SAVEPOINT active_record_1
1618
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 106 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1620
+  (0.2ms) ROLLBACK
1621
+  (0.2ms) BEGIN
1622
+  (0.3ms) SAVEPOINT active_record_1
1623
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.721947"], ["updated_at", "2015-05-04 05:00:13.721947"]]
1624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1625
+  (0.2ms) SAVEPOINT active_record_1
1626
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1627
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 201], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:13.728197"], ["updated_at", "2015-05-04 05:00:13.728197"]]
1628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1629
+  (0.1ms) SAVEPOINT active_record_1
1630
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 107 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 201) LIMIT 1
1631
+ SQL (0.5ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:13.734214"], ["id", 107]]
1632
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1633
+  (0.5ms) ROLLBACK
1634
+  (0.1ms) BEGIN
1635
+  (0.1ms) SAVEPOINT active_record_1
1636
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.749300"], ["updated_at", "2015-05-04 05:00:13.749300"]]
1637
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1638
+  (0.1ms) SAVEPOINT active_record_1
1639
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1640
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 202], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:13.756227"], ["updated_at", "2015-05-04 05:00:13.756227"]]
1641
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1642
+  (0.1ms) SAVEPOINT active_record_1
1643
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 108 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 202) LIMIT 1
1644
+ SQL (0.5ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:13.762696"], ["id", 108]]
1645
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1646
+  (0.2ms) ROLLBACK
1647
+  (0.1ms) BEGIN
1648
+  (0.2ms) SAVEPOINT active_record_1
1649
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.768984"], ["updated_at", "2015-05-04 05:00:13.768984"]]
1650
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1651
+  (0.1ms) SAVEPOINT active_record_1
1652
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 203) LIMIT 1
1653
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 203], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:13.776602"], ["updated_at", "2015-05-04 05:00:13.776602"]]
1654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1655
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 203]]
1656
+  (0.3ms) ROLLBACK
1657
+  (0.1ms) BEGIN
1658
+  (0.1ms) SAVEPOINT active_record_1
1659
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.784325"], ["updated_at", "2015-05-04 05:00:13.784325"]]
1660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1661
+  (0.1ms) SAVEPOINT active_record_1
1662
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1663
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 204], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:13.790327"], ["updated_at", "2015-05-04 05:00:13.790327"]]
1664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1665
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 204]]
1666
+  (0.1ms) ROLLBACK
1667
+  (0.1ms) BEGIN
1668
+  (0.1ms) SAVEPOINT active_record_1
1669
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.796100"], ["updated_at", "2015-05-04 05:00:13.796100"]]
1670
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1671
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 205]]
1672
+  (0.1ms) ROLLBACK
1673
+  (0.1ms) BEGIN
1674
+  (0.1ms) SAVEPOINT active_record_1
1675
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.801730"], ["updated_at", "2015-05-04 05:00:13.801730"]]
1676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1677
+  (0.2ms) SAVEPOINT active_record_1
1678
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.805143"], ["updated_at", "2015-05-04 05:00:13.805143"]]
1679
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1680
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 207) LIMIT 1
1681
+  (0.1ms) ROLLBACK
1682
+  (0.1ms) BEGIN
1683
+  (0.1ms) SAVEPOINT active_record_1
1684
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.812650"], ["updated_at", "2015-05-04 05:00:13.812650"]]
1685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1686
+  (0.1ms) SAVEPOINT active_record_1
1687
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.815791"], ["updated_at", "2015-05-04 05:00:13.815791"]]
1688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1689
+  (0.2ms) SAVEPOINT active_record_1
1690
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 209) LIMIT 1
1691
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 209], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:13.822039"], ["updated_at", "2015-05-04 05:00:13.822039"]]
1692
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1693
+  (0.1ms) SAVEPOINT active_record_1
1694
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 209) LIMIT 1
1695
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1696
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 209) LIMIT 1
1697
+  (0.1ms) ROLLBACK
1698
+  (0.1ms) BEGIN
1699
+  (0.1ms) SAVEPOINT active_record_1
1700
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.834864"], ["updated_at", "2015-05-04 05:00:13.834864"]]
1701
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1702
+  (0.2ms) SAVEPOINT active_record_1
1703
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.839699"], ["updated_at", "2015-05-04 05:00:13.839699"]]
1704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1705
+  (0.1ms) SAVEPOINT active_record_1
1706
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.841930"], ["updated_at", "2015-05-04 05:00:13.841930"]]
1707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1708
+  (0.1ms) SAVEPOINT active_record_1
1709
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1710
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 212], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.846126"], ["updated_at", "2015-05-04 05:00:13.846126"]]
1711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1712
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 211) LIMIT 1
1713
+  (0.2ms) ROLLBACK
1714
+  (0.4ms) BEGIN
1715
+  (0.2ms) SAVEPOINT active_record_1
1716
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.858509"], ["updated_at", "2015-05-04 05:00:13.858509"]]
1717
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1718
+  (0.1ms) SAVEPOINT active_record_1
1719
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.863660"], ["updated_at", "2015-05-04 05:00:13.863660"]]
1720
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1721
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1722
+  (0.1ms) ROLLBACK
1723
+  (0.1ms) BEGIN
1724
+  (0.1ms) SAVEPOINT active_record_1
1725
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.869815"], ["updated_at", "2015-05-04 05:00:13.869815"]]
1726
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1727
+  (0.3ms) SAVEPOINT active_record_1
1728
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.875783"], ["updated_at", "2015-05-04 05:00:13.875783"]]
1729
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1730
+  (0.1ms) SAVEPOINT active_record_1
1731
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1732
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 216], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:13.882313"], ["updated_at", "2015-05-04 05:00:13.882313"]]
1733
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1734
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1735
+  (0.2ms) ROLLBACK
1736
+  (0.1ms) BEGIN
1737
+  (0.1ms) SAVEPOINT active_record_1
1738
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.890605"], ["updated_at", "2015-05-04 05:00:13.890605"]]
1739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1740
+  (0.1ms) SAVEPOINT active_record_1
1741
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.893886"], ["updated_at", "2015-05-04 05:00:13.893886"]]
1742
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1743
+  (0.1ms) SAVEPOINT active_record_1
1744
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 218) LIMIT 1
1745
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 218], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:13.898674"], ["updated_at", "2015-05-04 05:00:13.898674"]]
1746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1747
+  (0.1ms) SAVEPOINT active_record_1
1748
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.902728"], ["updated_at", "2015-05-04 05:00:13.902728"]]
1749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1750
+  (0.1ms) SAVEPOINT active_record_1
1751
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 219) LIMIT 1
1752
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 219], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:13.907652"], ["updated_at", "2015-05-04 05:00:13.907652"]]
1753
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1754
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 115 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 219) LIMIT 1
1755
+  (0.2ms) ROLLBACK
1756
+  (0.1ms) BEGIN
1757
+  (0.1ms) SAVEPOINT active_record_1
1758
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.914979"], ["updated_at", "2015-05-04 05:00:13.914979"]]
1759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
1761
+ SocialAuth::Service Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1762
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1763
+  (0.2ms) SAVEPOINT active_record_1
1764
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1765
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 220], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.930837"], ["updated_at", "2015-05-04 05:00:13.930837"]]
1766
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1767
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1768
+  (0.1ms) ROLLBACK
1769
+  (0.1ms) BEGIN
1770
+  (0.1ms) SAVEPOINT active_record_1
1771
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.936865"], ["updated_at", "2015-05-04 05:00:13.936865"]]
1772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1773
+  (0.2ms) SAVEPOINT active_record_1
1774
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.940478"], ["updated_at", "2015-05-04 05:00:13.940478"]]
1775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1776
+  (0.1ms) SAVEPOINT active_record_1
1777
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1778
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 222], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.944844"], ["updated_at", "2015-05-04 05:00:13.944844"]]
1779
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1780
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1781
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1782
+  (0.2ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1783
+  (0.1ms) SAVEPOINT active_record_1
1784
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 221) LIMIT 1
1785
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 221], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.953211"], ["updated_at", "2015-05-04 05:00:13.953211"]]
1786
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1787
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1788
+  (0.1ms) ROLLBACK
1789
+  (0.1ms) BEGIN
1790
+  (0.1ms) SAVEPOINT active_record_1
1791
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.959636"], ["updated_at", "2015-05-04 05:00:13.959636"]]
1792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1793
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1794
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1795
+  (0.1ms) SAVEPOINT active_record_1
1796
+ SocialAuth::Service Exists (0.3ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1797
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 223], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.967582"], ["updated_at", "2015-05-04 05:00:13.967582"]]
1798
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1799
+  (0.1ms) ROLLBACK
1800
+  (0.1ms) BEGIN
1801
+  (0.1ms) SAVEPOINT active_record_1
1802
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.973982"], ["updated_at", "2015-05-04 05:00:13.973982"]]
1803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1804
+  (0.1ms) SAVEPOINT active_record_1
1805
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 224) LIMIT 1
1806
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 224], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.979419"], ["updated_at", "2015-05-04 05:00:13.979419"]]
1807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1808
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
1809
+  (0.1ms) SAVEPOINT active_record_1
1810
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:13.983409"], ["updated_at", "2015-05-04 05:00:13.983409"]]
1811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1812
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1813
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1814
+  (0.1ms) SAVEPOINT active_record_1
1815
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 225) LIMIT 1
1816
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 225], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:13.990471"], ["updated_at", "2015-05-04 05:00:13.990471"]]
1817
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1818
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1819
+  (0.1ms) ROLLBACK
1820
+  (0.1ms) BEGIN
1821
+  (0.1ms) SAVEPOINT active_record_1
1822
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.996651"], ["updated_at", "2015-05-04 05:00:13.996651"]]
1823
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1824
+  (0.1ms) SAVEPOINT active_record_1
1825
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1826
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 226], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:14.003112"], ["updated_at", "2015-05-04 05:00:14.003112"]]
1827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1828
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
1829
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1830
+  (0.2ms) SAVEPOINT active_record_1
1831
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 226]]
1832
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 122 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
1833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1834
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1835
+  (0.1ms) ROLLBACK
1836
+  (0.1ms) BEGIN
1837
+  (0.1ms) SAVEPOINT active_record_1
1838
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.015273"], ["updated_at", "2015-05-04 05:00:14.015273"]]
1839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1840
+  (0.1ms) SAVEPOINT active_record_1
1841
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 227) LIMIT 1
1842
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 227], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:14.021825"], ["updated_at", "2015-05-04 05:00:14.021825"]]
1843
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1844
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1845
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
1846
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
1847
+ SocialAuth::Service Load (0.2ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
1848
+  (0.1ms) SAVEPOINT active_record_1
1849
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 227]]
1850
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 123 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 227) LIMIT 1
1851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1852
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
1853
+  (0.1ms) ROLLBACK
1854
+  (0.1ms) BEGIN
1855
+  (0.1ms) SAVEPOINT active_record_1
1856
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.035262"], ["updated_at", "2015-05-04 05:00:14.035262"]]
1857
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1858
+  (0.2ms) ROLLBACK
1859
+  (0.1ms) BEGIN
1860
+  (0.1ms) SAVEPOINT active_record_1
1861
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.042094"], ["updated_at", "2015-05-04 05:00:14.042094"]]
1862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1863
+  (0.2ms) ROLLBACK
1864
+  (0.1ms) BEGIN
1865
+  (0.1ms) SAVEPOINT active_record_1
1866
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.050371"], ["updated_at", "2015-05-04 05:00:14.050371"]]
1867
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1868
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1869
+ SocialAuth::TwitterService Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
1870
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1871
+  (0.2ms) SAVEPOINT active_record_1
1872
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1873
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:14.142087"], ["updated_at", "2015-05-04 05:00:14.142087"]]
1874
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["user_id", 231], ["created_at", "2015-05-04 05:00:14.144002"], ["updated_at", "2015-05-04 05:00:14.144002"]]
1875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1876
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1877
+  (0.2ms) ROLLBACK
1878
+  (0.1ms) BEGIN
1879
+  (0.1ms) SAVEPOINT active_record_1
1880
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.151383"], ["updated_at", "2015-05-04 05:00:14.151383"]]
1881
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1882
+ SocialAuth::TwitterService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
1883
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1884
+  (0.1ms) SAVEPOINT active_record_1
1885
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1886
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1887
+  (0.1ms) ROLLBACK
1888
+  (0.1ms) BEGIN
1889
+  (0.1ms) SAVEPOINT active_record_1
1890
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.231454"], ["updated_at", "2015-05-04 05:00:14.231454"]]
1891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1892
+  (0.2ms) ROLLBACK
1893
+  (0.1ms) BEGIN
1894
+  (0.1ms) SAVEPOINT active_record_1
1895
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.238661"], ["updated_at", "2015-05-04 05:00:14.238661"]]
1896
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1897
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1898
+ SocialAuth::TwitterService Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Connected"]]
1899
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
1900
+  (0.1ms) SAVEPOINT active_record_1
1901
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService' AND "social_auth_services"."user_id" = 234) LIMIT 1
1902
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 234], ["method", "Connected"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:14.281358"], ["updated_at", "2015-05-04 05:00:14.281358"]]
1903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1904
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
1905
+  (0.2ms) ROLLBACK
1906
+  (0.1ms) BEGIN
1907
+  (0.1ms) SAVEPOINT active_record_1
1908
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.288512"], ["updated_at", "2015-05-04 05:00:14.288512"]]
1909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1910
+  (0.1ms) SAVEPOINT active_record_1
1911
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1912
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 235], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:14.295571"], ["updated_at", "2015-05-04 05:00:14.295571"]]
1913
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1914
+  (0.2ms) ROLLBACK
1915
+  (0.1ms) BEGIN
1916
+  (0.1ms) SAVEPOINT active_record_1
1917
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.369633"], ["updated_at", "2015-05-04 05:00:14.369633"]]
1918
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1919
+  (0.2ms) SAVEPOINT active_record_1
1920
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1921
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 236], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:14.378268"], ["updated_at", "2015-05-04 05:00:14.378268"]]
1922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1923
+  (0.1ms) SAVEPOINT active_record_1
1924
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
1925
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
1926
+  (0.3ms) ROLLBACK
1927
+  (0.2ms) BEGIN
1928
+  (1.5ms) SAVEPOINT active_record_1
1929
+ SQL (1.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.930896"], ["updated_at", "2015-05-04 05:00:49.930896"]]
1930
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1931
+  (0.3ms) ROLLBACK
1932
+  (0.1ms) BEGIN
1933
+  (0.1ms) SAVEPOINT active_record_1
1934
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.963172"], ["updated_at", "2015-05-04 05:00:49.963172"]]
1935
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1936
+  (0.3ms) ROLLBACK
1937
+  (0.2ms) BEGIN
1938
+  (0.2ms) SAVEPOINT active_record_1
1939
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.973328"], ["updated_at", "2015-05-04 05:00:49.973328"]]
1940
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1941
+  (0.2ms) ROLLBACK
1942
+  (0.1ms) BEGIN
1943
+  (0.4ms) SAVEPOINT active_record_1
1944
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.999949"], ["updated_at", "2015-05-04 05:00:49.999949"]]
1945
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1946
+  (1.7ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1947
+ SocialAuth::FacebookService Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
1948
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1949
+  (0.2ms) SAVEPOINT active_record_1
1950
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1951
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.087971"], ["updated_at", "2015-05-04 05:00:50.087971"]]
1952
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["user_id", 241], ["created_at", "2015-05-04 05:00:50.091381"], ["updated_at", "2015-05-04 05:00:50.091381"]]
1953
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1954
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1955
+  (0.2ms) ROLLBACK
1956
+  (0.1ms) BEGIN
1957
+  (0.2ms) SAVEPOINT active_record_1
1958
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.102015"], ["updated_at", "2015-05-04 05:00:50.102015"]]
1959
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1960
+ SocialAuth::FacebookService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
1961
+  (0.7ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1962
+  (0.2ms) SAVEPOINT active_record_1
1963
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1964
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
1965
+  (0.2ms) ROLLBACK
1966
+  (0.1ms) BEGIN
1967
+  (0.2ms) SAVEPOINT active_record_1
1968
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.139154"], ["updated_at", "2015-05-04 05:00:50.139154"]]
1969
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1970
+  (0.2ms) ROLLBACK
1971
+  (0.2ms) BEGIN
1972
+  (0.1ms) SAVEPOINT active_record_1
1973
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.172511"], ["updated_at", "2015-05-04 05:00:50.172511"]]
1974
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1975
+  (0.2ms) ROLLBACK
1976
+  (0.1ms) BEGIN
1977
+  (0.2ms) SAVEPOINT active_record_1
1978
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.187551"], ["updated_at", "2015-05-04 05:00:50.187551"]]
1979
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1980
+  (0.7ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1981
+ SocialAuth::FacebookService Load (0.8ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1982
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "10204796229055532"], ["method", "Connected"]]
1983
+  (0.3ms) SAVEPOINT active_record_1
1984
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService' AND "social_auth_services"."user_id" = 245) LIMIT 1
1985
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 245], ["method", "Connected"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:50.210860"], ["updated_at", "2015-05-04 05:00:50.210860"]]
1986
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1987
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
1988
+  (0.2ms) ROLLBACK
1989
+  (0.2ms) BEGIN
1990
+  (0.3ms) SAVEPOINT active_record_1
1991
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.220486"], ["updated_at", "2015-05-04 05:00:50.220486"]]
1992
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1993
+  (0.2ms) SAVEPOINT active_record_1
1994
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
1995
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 246], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:50.230278"], ["updated_at", "2015-05-04 05:00:50.230278"]]
1996
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1997
+  (0.2ms) ROLLBACK
1998
+  (0.2ms) BEGIN
1999
+  (0.2ms) SAVEPOINT active_record_1
2000
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.253701"], ["updated_at", "2015-05-04 05:00:50.253701"]]
2001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2002
+  (0.2ms) SAVEPOINT active_record_1
2003
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
2004
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 247], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:50.263297"], ["updated_at", "2015-05-04 05:00:50.263297"]]
2005
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2006
+  (0.3ms) ROLLBACK
2007
+  (0.2ms) BEGIN
2008
+  (0.3ms) SAVEPOINT active_record_1
2009
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.281189"], ["updated_at", "2015-05-04 05:00:50.281189"]]
2010
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2011
+  (0.2ms) SAVEPOINT active_record_1
2012
+ SocialAuth::Service Exists (0.4ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
2013
+ SQL (0.6ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::FacebookService"], ["remote_id", "10204796229055532"], ["user_id", 248], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"CAAVcHuFT94wBABZCLk1HBB9OY6jdgwIwuOGcfBoY0srXB9Fh535odH9Y2SwHfZC7H8lHovvy8Wt9NZBx8IsieNiCZAZB5uptn9q2MxytBD93IDo3Kf0ZCmaiIAZAvCBfG9h18jKfp091uE5c6aXZB4sLyOkCWvO4O5CYgItX4G3eWoAqmnUinoZCQfzT629GQNU0ZBAUQ0AckiXh09xY0fnkhw\"}"], ["created_at", "2015-05-04 05:00:50.290402"], ["updated_at", "2015-05-04 05:00:50.290402"]]
2014
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2015
+  (0.1ms) SAVEPOINT active_record_1
2016
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1
2017
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2018
+  (0.2ms) ROLLBACK
2019
+  (0.1ms) BEGIN
2020
+  (0.2ms) SAVEPOINT active_record_1
2021
+ SQL (1.8ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.313239"], ["updated_at", "2015-05-04 05:00:50.313239"]]
2022
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2023
+  (0.3ms) ROLLBACK
2024
+  (0.2ms) BEGIN
2025
+  (0.2ms) SAVEPOINT active_record_1
2026
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.326393"], ["updated_at", "2015-05-04 05:00:50.326393"]]
2027
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2028
+  (0.2ms) ROLLBACK
2029
+  (0.1ms) BEGIN
2030
+  (0.2ms) SAVEPOINT active_record_1
2031
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.335060"], ["updated_at", "2015-05-04 05:00:50.335060"]]
2032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2033
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
2034
+ ETHON: Libcurl initialized
2035
+ SocialAuth::GooglePlusService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
2036
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
2037
+  (0.2ms) SAVEPOINT active_record_1
2038
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2039
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.390685"], ["updated_at", "2015-05-04 05:00:50.390685"]]
2040
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["user_id", 252], ["created_at", "2015-05-04 05:00:50.393191"], ["updated_at", "2015-05-04 05:00:50.393191"]]
2041
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2042
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
2043
+  (0.4ms) ROLLBACK
2044
+  (0.1ms) BEGIN
2045
+  (0.1ms) SAVEPOINT active_record_1
2046
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.402285"], ["updated_at", "2015-05-04 05:00:50.402285"]]
2047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2048
+ SocialAuth::GooglePlusService Load (0.8ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
2049
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
2050
+  (0.2ms) SAVEPOINT active_record_1
2051
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2052
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2053
+  (0.3ms) ROLLBACK
2054
+  (0.1ms) BEGIN
2055
+  (0.1ms) SAVEPOINT active_record_1
2056
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.440974"], ["updated_at", "2015-05-04 05:00:50.440974"]]
2057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2058
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
2059
+ SocialAuth::GooglePlusService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
2060
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "117652050090394249462"], ["method", "Connected"]]
2061
+  (0.2ms) SAVEPOINT active_record_1
2062
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService' AND "social_auth_services"."user_id" = 254) LIMIT 1
2063
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "117652050090394249462"], ["user_id", 254], ["method", "Connected"], ["access_token", "{\"refresh_token\":\"1/YIe5kRpXUZCbfvhh3AHD2S0GalGEQA-2K2KPe4XBZXA\"}"], ["created_at", "2015-05-04 05:00:50.471563"], ["updated_at", "2015-05-04 05:00:50.471563"]]
2064
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2065
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
2066
+  (0.2ms) ROLLBACK
2067
+  (0.1ms) BEGIN
2068
+  (0.1ms) SAVEPOINT active_record_1
2069
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.480149"], ["updated_at", "2015-05-04 05:00:50.480149"]]
2070
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2071
+  (0.3ms) ROLLBACK
2072
+  (0.2ms) BEGIN
2073
+  (0.2ms) SAVEPOINT active_record_1
2074
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.513676"], ["updated_at", "2015-05-04 05:00:50.513676"]]
2075
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2076
+  (0.3ms) ROLLBACK
2077
+  (0.4ms) BEGIN
2078
+  (0.2ms) SAVEPOINT active_record_1
2079
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.538724"], ["updated_at", "2015-05-04 05:00:50.538724"]]
2080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2081
+  (0.2ms) ROLLBACK
2082
+  (0.2ms) BEGIN
2083
+  (0.1ms) SAVEPOINT active_record_1
2084
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.561704"], ["updated_at", "2015-05-04 05:00:50.561704"]]
2085
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2086
+  (0.2ms) ROLLBACK
2087
+  (0.2ms) BEGIN
2088
+  (0.1ms) SAVEPOINT active_record_1
2089
+ SQL (0.9ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.569849"], ["updated_at", "2015-05-04 05:00:50.569849"]]
2090
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2091
+  (0.2ms) SAVEPOINT active_record_1
2092
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2093
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 259], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:50.580267"], ["updated_at", "2015-05-04 05:00:50.580267"]]
2094
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2095
+  (0.3ms) ROLLBACK
2096
+  (0.2ms) BEGIN
2097
+  (0.1ms) SAVEPOINT active_record_1
2098
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.619462"], ["updated_at", "2015-05-04 05:00:50.619462"]]
2099
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2100
+  (0.2ms) SAVEPOINT active_record_1
2101
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2102
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 260], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:50.632659"], ["updated_at", "2015-05-04 05:00:50.632659"]]
2103
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2104
+  (0.2ms) ROLLBACK
2105
+  (0.1ms) BEGIN
2106
+  (0.1ms) SAVEPOINT active_record_1
2107
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.643124"], ["updated_at", "2015-05-04 05:00:50.643124"]]
2108
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2109
+  (0.2ms) SAVEPOINT active_record_1
2110
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2111
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::GooglePlusService"], ["remote_id", "410739240"], ["user_id", 261], ["method", "Authenticated"], ["access_token", "{\"refresh_token\":\"1/b-cUt2E2hoExpHcu2MaglfxeG6aLzYH7ViSjWFhRGcR90RDknAdJa_sgfheVM0XT\"}"], ["created_at", "2015-05-04 05:00:50.652057"], ["updated_at", "2015-05-04 05:00:50.652057"]]
2112
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2113
+  (0.2ms) SAVEPOINT active_record_1
2114
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1
2115
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2116
+  (0.3ms) ROLLBACK
2117
+  (0.2ms) BEGIN
2118
+  (0.2ms) SAVEPOINT active_record_1
2119
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.686095"], ["updated_at", "2015-05-04 05:00:50.686095"]]
2120
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2121
+  (0.1ms) SAVEPOINT active_record_1
2122
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.691355"], ["updated_at", "2015-05-04 05:00:50.691355"]]
2123
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2124
+  (0.1ms) SAVEPOINT active_record_1
2125
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 263]]
2126
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2127
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 263], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:50.704170"], ["updated_at", "2015-05-04 05:00:50.704170"]]
2128
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2129
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 138 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2130
+  (0.2ms) ROLLBACK
2131
+  (0.3ms) BEGIN
2132
+  (0.2ms) SAVEPOINT active_record_1
2133
+ SQL (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.717967"], ["updated_at", "2015-05-04 05:00:50.717967"]]
2134
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2135
+  (0.1ms) SAVEPOINT active_record_1
2136
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.723212"], ["updated_at", "2015-05-04 05:00:50.723212"]]
2137
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2138
+  (0.2ms) SAVEPOINT active_record_1
2139
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2140
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 265], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.729728"], ["updated_at", "2015-05-04 05:00:50.729728"]]
2141
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2142
+  (0.1ms) SAVEPOINT active_record_1
2143
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.735051"], ["updated_at", "2015-05-04 05:00:50.735051"]]
2144
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2145
+  (0.3ms) SAVEPOINT active_record_1
2146
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2147
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 266], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.742332"], ["updated_at", "2015-05-04 05:00:50.742332"]]
2148
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2149
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
2150
+  (0.3ms) ROLLBACK
2151
+  (0.1ms) BEGIN
2152
+  (0.2ms) SAVEPOINT active_record_1
2153
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.757494"], ["updated_at", "2015-05-04 05:00:50.757494"]]
2154
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2155
+  (0.1ms) SAVEPOINT active_record_1
2156
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.762018"], ["updated_at", "2015-05-04 05:00:50.762018"]]
2157
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2158
+  (0.1ms) SAVEPOINT active_record_1
2159
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2160
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 268], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.767655"], ["updated_at", "2015-05-04 05:00:50.767655"]]
2161
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2162
+  (0.1ms) SAVEPOINT active_record_1
2163
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.772879"], ["updated_at", "2015-05-04 05:00:50.772879"]]
2164
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2165
+  (0.2ms) SAVEPOINT active_record_1
2166
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2167
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1234"], ["user_id", 269], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.778903"], ["updated_at", "2015-05-04 05:00:50.778903"]]
2168
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2169
+ SocialAuth::Service Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
2170
+  (0.3ms) ROLLBACK
2171
+  (0.1ms) BEGIN
2172
+  (0.2ms) SAVEPOINT active_record_1
2173
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.788405"], ["updated_at", "2015-05-04 05:00:50.788405"]]
2174
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2175
+  (0.2ms) SAVEPOINT active_record_1
2176
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.792996"], ["updated_at", "2015-05-04 05:00:50.792996"]]
2177
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2178
+  (0.2ms) SAVEPOINT active_record_1
2179
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2180
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 271], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.799051"], ["updated_at", "2015-05-04 05:00:50.799051"]]
2181
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2182
+  (0.2ms) ROLLBACK
2183
+  (0.4ms) BEGIN
2184
+  (0.2ms) SAVEPOINT active_record_1
2185
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.807284"], ["updated_at", "2015-05-04 05:00:50.807284"]]
2186
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2187
+  (0.2ms) SAVEPOINT active_record_1
2188
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.811795"], ["updated_at", "2015-05-04 05:00:50.811795"]]
2189
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2190
+  (0.1ms) SAVEPOINT active_record_1
2191
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2192
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 273], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.817718"], ["updated_at", "2015-05-04 05:00:50.817718"]]
2193
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2194
+  (0.2ms) SAVEPOINT active_record_1
2195
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.824464"], ["updated_at", "2015-05-04 05:00:50.824464"]]
2196
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2197
+  (0.2ms) SAVEPOINT active_record_1
2198
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2199
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 274], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.831140"], ["updated_at", "2015-05-04 05:00:50.831140"]]
2200
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2201
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 145]]
2202
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
2203
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 273]]
2204
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 274]]
2205
+  (0.3ms) ROLLBACK
2206
+  (0.1ms) BEGIN
2207
+  (0.2ms) SAVEPOINT active_record_1
2208
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.848562"], ["updated_at", "2015-05-04 05:00:50.848562"]]
2209
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2210
+  (0.2ms) SAVEPOINT active_record_1
2211
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.854025"], ["updated_at", "2015-05-04 05:00:50.854025"]]
2212
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2213
+  (0.2ms) SAVEPOINT active_record_1
2214
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2215
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "2"], ["user_id", 276], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.861272"], ["updated_at", "2015-05-04 05:00:50.861272"]]
2216
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2217
+  (0.2ms) SAVEPOINT active_record_1
2218
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:50.866202"], ["updated_at", "2015-05-04 05:00:50.866202"]]
2219
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2220
+  (0.2ms) SAVEPOINT active_record_1
2221
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2222
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "15"], ["user_id", 277], ["method", "Authenticated"], ["access_token", "{\"fake\":\"fake\"}"], ["created_at", "2015-05-04 05:00:50.872736"], ["updated_at", "2015-05-04 05:00:50.872736"]]
2223
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2224
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 147]]
2225
+ SocialAuth::Service Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
2226
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 276]]
2227
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 277]]
2228
+  (0.3ms) ROLLBACK
2229
+  (0.1ms) BEGIN
2230
+  (0.2ms) SAVEPOINT active_record_1
2231
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.899561"], ["updated_at", "2015-05-04 05:00:50.899561"]]
2232
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2233
+  (0.3ms) SAVEPOINT active_record_1
2234
+ SocialAuth::Service Exists (0.9ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2235
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 278], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:50.908873"], ["updated_at", "2015-05-04 05:00:50.908873"]]
2236
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2237
+  (0.2ms) SAVEPOINT active_record_1
2238
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 148 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 278) LIMIT 1
2239
+ SQL (0.5ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:50.916727"], ["id", 148]]
2240
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2241
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
2242
+  (0.2ms) SAVEPOINT active_record_1
2243
+ SQL (0.3ms) DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 148]]
2244
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2245
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
2246
+  (0.3ms) ROLLBACK
2247
+  (0.1ms) BEGIN
2248
+  (0.2ms) SAVEPOINT active_record_1
2249
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.929144"], ["updated_at", "2015-05-04 05:00:50.929144"]]
2250
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2251
+  (0.1ms) SAVEPOINT active_record_1
2252
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2253
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 279], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:50.936703"], ["updated_at", "2015-05-04 05:00:50.936703"]]
2254
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2255
+  (0.1ms) SAVEPOINT active_record_1
2256
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 149 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2257
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2258
+  (0.2ms) ROLLBACK
2259
+  (0.2ms) BEGIN
2260
+  (0.1ms) SAVEPOINT active_record_1
2261
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.947536"], ["updated_at", "2015-05-04 05:00:50.947536"]]
2262
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2263
+  (0.2ms) SAVEPOINT active_record_1
2264
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2265
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 280], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:50.956741"], ["updated_at", "2015-05-04 05:00:50.956741"]]
2266
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2267
+  (0.4ms) SAVEPOINT active_record_1
2268
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 150 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 280) LIMIT 1
2269
+ SQL (0.8ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:50.966122"], ["id", 150]]
2270
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2271
+  (0.2ms) SAVEPOINT active_record_1
2272
+ SQL (0.3ms) DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 150]]
2273
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2274
+  (0.2ms) ROLLBACK
2275
+  (0.2ms) BEGIN
2276
+  (0.1ms) SAVEPOINT active_record_1
2277
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.976181"], ["updated_at", "2015-05-04 05:00:50.976181"]]
2278
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2279
+  (0.3ms) SAVEPOINT active_record_1
2280
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2281
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "10204796229055532"], ["user_id", 281], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"test\"}"], ["created_at", "2015-05-04 05:00:50.983855"], ["updated_at", "2015-05-04 05:00:50.983855"]]
2282
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2283
+  (0.4ms) SAVEPOINT active_record_1
2284
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."id" != 151 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 281) LIMIT 1
2285
+ SQL (0.5ms) UPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3 [["method", "Connected"], ["updated_at", "2015-05-04 05:00:50.992338"], ["id", 151]]
2286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2287
+  (0.1ms) SAVEPOINT active_record_1
2288
+ SQL (0.5ms) DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 151]]
2289
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2290
+  (0.2ms) ROLLBACK
2291
+  (0.1ms) BEGIN
2292
+  (0.2ms) SAVEPOINT active_record_1
2293
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.001418"], ["updated_at", "2015-05-04 05:00:51.001418"]]
2294
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2295
+  (0.3ms) SAVEPOINT active_record_1
2296
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 282) LIMIT 1
2297
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 282], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:51.011284"], ["updated_at", "2015-05-04 05:00:51.011284"]]
2298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2299
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 282]]
2300
+  (0.2ms) ROLLBACK
2301
+  (0.2ms) BEGIN
2302
+  (0.2ms) SAVEPOINT active_record_1
2303
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.021152"], ["updated_at", "2015-05-04 05:00:51.021152"]]
2304
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2305
+  (0.2ms) SAVEPOINT active_record_1
2306
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2307
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 283], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:51.028868"], ["updated_at", "2015-05-04 05:00:51.028868"]]
2308
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2309
+ SocialAuth::Service Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 283]]
2310
+  (0.2ms) ROLLBACK
2311
+  (0.2ms) BEGIN
2312
+  (0.1ms) SAVEPOINT active_record_1
2313
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.036704"], ["updated_at", "2015-05-04 05:00:51.036704"]]
2314
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2315
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 284]]
2316
+  (0.2ms) ROLLBACK
2317
+  (0.2ms) BEGIN
2318
+  (0.1ms) SAVEPOINT active_record_1
2319
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.045476"], ["updated_at", "2015-05-04 05:00:51.045476"]]
2320
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2321
+  (0.1ms) SAVEPOINT active_record_1
2322
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.048848"], ["updated_at", "2015-05-04 05:00:51.048848"]]
2323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2324
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 286) LIMIT 1
2325
+  (0.3ms) ROLLBACK
2326
+  (0.1ms) BEGIN
2327
+  (0.2ms) SAVEPOINT active_record_1
2328
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.058606"], ["updated_at", "2015-05-04 05:00:51.058606"]]
2329
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2330
+  (0.2ms) SAVEPOINT active_record_1
2331
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.063481"], ["updated_at", "2015-05-04 05:00:51.063481"]]
2332
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2333
+  (0.1ms) SAVEPOINT active_record_1
2334
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 288) LIMIT 1
2335
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 288], ["method", "Connected"], ["access_token", "{\"access_token\":\"34223\"}"], ["created_at", "2015-05-04 05:00:51.069209"], ["updated_at", "2015-05-04 05:00:51.069209"]]
2336
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2337
+  (0.1ms) SAVEPOINT active_record_1
2338
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 288) LIMIT 1
2339
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2340
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 288) LIMIT 1
2341
+  (0.2ms) ROLLBACK
2342
+  (0.2ms) BEGIN
2343
+  (0.2ms) SAVEPOINT active_record_1
2344
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.083819"], ["updated_at", "2015-05-04 05:00:51.083819"]]
2345
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2346
+  (0.2ms) SAVEPOINT active_record_1
2347
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.088198"], ["updated_at", "2015-05-04 05:00:51.088198"]]
2348
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2349
+  (0.2ms) SAVEPOINT active_record_1
2350
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.091179"], ["updated_at", "2015-05-04 05:00:51.091179"]]
2351
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2352
+  (0.1ms) SAVEPOINT active_record_1
2353
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2354
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 291], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.097307"], ["updated_at", "2015-05-04 05:00:51.097307"]]
2355
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2356
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 290) LIMIT 1
2357
+  (0.2ms) ROLLBACK
2358
+  (0.1ms) BEGIN
2359
+  (0.3ms) SAVEPOINT active_record_1
2360
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.107784"], ["updated_at", "2015-05-04 05:00:51.107784"]]
2361
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2362
+  (0.1ms) SAVEPOINT active_record_1
2363
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.112012"], ["updated_at", "2015-05-04 05:00:51.112012"]]
2364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2365
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2366
+  (0.2ms) ROLLBACK
2367
+  (0.2ms) BEGIN
2368
+  (0.5ms) SAVEPOINT active_record_1
2369
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.120548"], ["updated_at", "2015-05-04 05:00:51.120548"]]
2370
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2371
+  (0.2ms) SAVEPOINT active_record_1
2372
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.124629"], ["updated_at", "2015-05-04 05:00:51.124629"]]
2373
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2374
+  (0.2ms) SAVEPOINT active_record_1
2375
+ SocialAuth::Service Exists (1.0ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2376
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 295], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:51.131824"], ["updated_at", "2015-05-04 05:00:51.131824"]]
2377
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2378
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2379
+  (0.2ms) ROLLBACK
2380
+  (0.2ms) BEGIN
2381
+  (0.1ms) SAVEPOINT active_record_1
2382
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.142262"], ["updated_at", "2015-05-04 05:00:51.142262"]]
2383
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2384
+  (0.1ms) SAVEPOINT active_record_1
2385
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.146437"], ["updated_at", "2015-05-04 05:00:51.146437"]]
2386
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2387
+  (0.2ms) SAVEPOINT active_record_1
2388
+ SocialAuth::Service Exists (0.9ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 297) LIMIT 1
2389
+ SQL (0.7ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 297], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:51.154343"], ["updated_at", "2015-05-04 05:00:51.154343"]]
2390
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2391
+  (0.1ms) SAVEPOINT active_record_1
2392
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.160121"], ["updated_at", "2015-05-04 05:00:51.160121"]]
2393
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2394
+  (0.2ms) SAVEPOINT active_record_1
2395
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 298) LIMIT 1
2396
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "34343"], ["user_id", 298], ["method", "Connected"], ["access_token", "{\"access_token\":\"fdf\"}"], ["created_at", "2015-05-04 05:00:51.166091"], ["updated_at", "2015-05-04 05:00:51.166091"]]
2397
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2398
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."id" != 158 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 298) LIMIT 1
2399
+  (0.2ms) ROLLBACK
2400
+  (0.1ms) BEGIN
2401
+  (0.1ms) SAVEPOINT active_record_1
2402
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.175566"], ["updated_at", "2015-05-04 05:00:51.175566"]]
2403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2404
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
2405
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
2406
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
2407
+  (0.2ms) SAVEPOINT active_record_1
2408
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2409
+ SQL (0.7ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 299], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.187119"], ["updated_at", "2015-05-04 05:00:51.187119"]]
2410
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2411
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
2412
+  (0.2ms) ROLLBACK
2413
+  (0.1ms) BEGIN
2414
+  (0.1ms) SAVEPOINT active_record_1
2415
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.196371"], ["updated_at", "2015-05-04 05:00:51.196371"]]
2416
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2417
+  (0.1ms) SAVEPOINT active_record_1
2418
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.200753"], ["updated_at", "2015-05-04 05:00:51.200753"]]
2419
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2420
+  (0.2ms) SAVEPOINT active_record_1
2421
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2422
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 301], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.206986"], ["updated_at", "2015-05-04 05:00:51.206986"]]
2423
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2424
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
2425
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
2426
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
2427
+  (0.3ms) SAVEPOINT active_record_1
2428
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 300) LIMIT 1
2429
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 300], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.217366"], ["updated_at", "2015-05-04 05:00:51.217366"]]
2430
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2431
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services"
2432
+  (0.2ms) ROLLBACK
2433
+  (0.2ms) BEGIN
2434
+  (0.1ms) SAVEPOINT active_record_1
2435
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.225525"], ["updated_at", "2015-05-04 05:00:51.225525"]]
2436
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2437
+ SocialAuth::Service Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
2438
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
2439
+  (0.2ms) SAVEPOINT active_record_1
2440
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2441
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 302], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.235640"], ["updated_at", "2015-05-04 05:00:51.235640"]]
2442
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2443
+  (0.2ms) ROLLBACK
2444
+  (0.1ms) BEGIN
2445
+  (0.1ms) SAVEPOINT active_record_1
2446
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.242475"], ["updated_at", "2015-05-04 05:00:51.242475"]]
2447
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2448
+  (0.2ms) SAVEPOINT active_record_1
2449
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 303) LIMIT 1
2450
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 303], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.249720"], ["updated_at", "2015-05-04 05:00:51.249720"]]
2451
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2452
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
2453
+  (0.2ms) SAVEPOINT active_record_1
2454
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.255059"], ["updated_at", "2015-05-04 05:00:51.255059"]]
2455
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2456
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
2457
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
2458
+  (0.2ms) SAVEPOINT active_record_1
2459
+ SocialAuth::Service Exists (1.0ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 304) LIMIT 1
2460
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 304], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.264133"], ["updated_at", "2015-05-04 05:00:51.264133"]]
2461
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2462
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
2463
+  (0.4ms) ROLLBACK
2464
+  (0.3ms) BEGIN
2465
+  (0.3ms) SAVEPOINT active_record_1
2466
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.274864"], ["updated_at", "2015-05-04 05:00:51.274864"]]
2467
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2468
+  (0.1ms) SAVEPOINT active_record_1
2469
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2470
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 305], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.282495"], ["updated_at", "2015-05-04 05:00:51.282495"]]
2471
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2472
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
2473
+ SocialAuth::Service Load (0.4ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
2474
+  (0.1ms) SAVEPOINT active_record_1
2475
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 305]]
2476
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 165 AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1
2477
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2478
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services"
2479
+  (0.2ms) ROLLBACK
2480
+  (0.1ms) BEGIN
2481
+  (0.2ms) SAVEPOINT active_record_1
2482
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.298281"], ["updated_at", "2015-05-04 05:00:51.298281"]]
2483
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2484
+  (0.3ms) SAVEPOINT active_record_1
2485
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 306) LIMIT 1
2486
+ SQL (0.4ms) INSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["remote_id", "1"], ["user_id", 306], ["method", "Connected"], ["access_token", "{\"access_token\":\"access_token\"}"], ["created_at", "2015-05-04 05:00:51.306853"], ["updated_at", "2015-05-04 05:00:51.306853"]]
2487
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2488
+  (0.3ms) SELECT COUNT(*) FROM "social_auth_services"
2489
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Authenticated"]]
2490
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "1"], ["method", "Connected"]]
2491
+ SocialAuth::Service Load (0.3ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "1"], ["method", "Connected"]]
2492
+  (0.2ms) SAVEPOINT active_record_1
2493
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 306]]
2494
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."id" != 166 AND "social_auth_services"."type" = 'SocialAuth::Service' AND "social_auth_services"."user_id" = 306) LIMIT 1
2495
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2496
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services"
2497
+  (0.2ms) ROLLBACK
2498
+  (0.2ms) BEGIN
2499
+  (0.2ms) SAVEPOINT active_record_1
2500
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.326446"], ["updated_at", "2015-05-04 05:00:51.326446"]]
2501
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2502
+  (0.2ms) ROLLBACK
2503
+  (0.1ms) BEGIN
2504
+  (0.1ms) SAVEPOINT active_record_1
2505
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.334086"], ["updated_at", "2015-05-04 05:00:51.334086"]]
2506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2507
+  (0.2ms) ROLLBACK
2508
+  (0.1ms) BEGIN
2509
+  (0.1ms) SAVEPOINT active_record_1
2510
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.342643"], ["updated_at", "2015-05-04 05:00:51.342643"]]
2511
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2512
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
2513
+ SocialAuth::TwitterService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
2514
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
2515
+  (0.3ms) SAVEPOINT active_record_1
2516
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
2517
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-05-04 05:00:51.445301"], ["updated_at", "2015-05-04 05:00:51.445301"]]
2518
+ SQL (0.5ms) INSERT INTO "social_auth_services" ("type", "remote_id", "method", "access_token", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["user_id", 310], ["created_at", "2015-05-04 05:00:51.448015"], ["updated_at", "2015-05-04 05:00:51.448015"]]
2519
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2520
+  (0.9ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
2521
+  (0.2ms) ROLLBACK
2522
+  (0.2ms) BEGIN
2523
+  (0.1ms) SAVEPOINT active_record_1
2524
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.457764"], ["updated_at", "2015-05-04 05:00:51.457764"]]
2525
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2526
+ SocialAuth::TwitterService Load (0.5ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Authenticated"]]
2527
+  (0.5ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
2528
+  (0.2ms) SAVEPOINT active_record_1
2529
+ SocialAuth::Service Exists (0.8ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
2530
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2531
+  (0.1ms) ROLLBACK
2532
+  (0.2ms) BEGIN
2533
+  (0.1ms) SAVEPOINT active_record_1
2534
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.543518"], ["updated_at", "2015-05-04 05:00:51.543518"]]
2535
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2536
+  (0.1ms) ROLLBACK
2537
+  (0.1ms) BEGIN
2538
+  (0.1ms) SAVEPOINT active_record_1
2539
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.552171"], ["updated_at", "2015-05-04 05:00:51.552171"]]
2540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2541
+  (0.7ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
2542
+ SocialAuth::TwitterService Load (0.6ms) SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1 [["remote_id", "410739240"], ["method", "Connected"]]
2543
+  (0.4ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService') AND "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 [["remote_id", "410739240"], ["method", "Connected"]]
2544
+  (0.2ms) SAVEPOINT active_record_1
2545
+ SocialAuth::Service Exists (0.7ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService' AND "social_auth_services"."user_id" = 313) LIMIT 1
2546
+ SQL (0.2ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 313], ["method", "Connected"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:51.606327"], ["updated_at", "2015-05-04 05:00:51.606327"]]
2547
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2548
+  (0.6ms) SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
2549
+  (0.2ms) ROLLBACK
2550
+  (0.1ms) BEGIN
2551
+  (0.1ms) SAVEPOINT active_record_1
2552
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.615933"], ["updated_at", "2015-05-04 05:00:51.615933"]]
2553
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2554
+  (0.2ms) SAVEPOINT active_record_1
2555
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
2556
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 314], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:51.625852"], ["updated_at", "2015-05-04 05:00:51.625852"]]
2557
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2558
+  (0.2ms) ROLLBACK
2559
+  (0.2ms) BEGIN
2560
+  (0.2ms) SAVEPOINT active_record_1
2561
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.709081"], ["updated_at", "2015-05-04 05:00:51.709081"]]
2562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2563
+  (0.2ms) SAVEPOINT active_record_1
2564
+ SocialAuth::Service Exists (0.5ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
2565
+ SQL (0.3ms) INSERT INTO "social_auth_services" ("type", "remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "SocialAuth::TwitterService"], ["remote_id", "410739240"], ["user_id", 315], ["method", "Authenticated"], ["access_token", "{\"access_token\":\"410739240-pHPJnKJsQufXJXrH2j2gmhWx923Y4O3b1ziOZ3gi\",\"access_token_secret\":\"B1e0enBgDm1YwQUml58WCupYHlQRjXMjtvKYjdYyT78iT\"}"], ["created_at", "2015-05-04 05:00:51.717816"], ["updated_at", "2015-05-04 05:00:51.717816"]]
2566
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2567
+  (0.2ms) SAVEPOINT active_record_1
2568
+ SocialAuth::Service Exists (0.6ms) SELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1
2569
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
2570
+  (0.4ms) ROLLBACK