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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +39 -0
- data/app/models/social_auth/facebook_service.rb +60 -0
- data/app/models/social_auth/google_plus_service.rb +106 -0
- data/app/models/social_auth/service.rb +152 -0
- data/app/models/social_auth/twitter_service.rb +67 -0
- data/config/routes.rb +2 -0
- data/lib/generators/social_auth/install/install_generator.rb +37 -0
- data/lib/generators/social_auth/install/templates/create_social_auth_services.rb +12 -0
- data/lib/generators/social_auth/install/templates/initializer.rb +15 -0
- data/lib/social_auth.rb +73 -0
- data/lib/social_auth/acts_as_social_user.rb +23 -0
- data/lib/social_auth/engine.rb +12 -0
- data/lib/social_auth/railtie.rb +7 -0
- data/lib/social_auth/version.rb +3 -0
- data/lib/tasks/social_auth_tasks.rake +4 -0
- data/spec/dummy/rails-4.2.0/Gemfile +42 -0
- data/spec/dummy/rails-4.2.0/README.rdoc +28 -0
- data/spec/dummy/rails-4.2.0/Rakefile +6 -0
- data/spec/dummy/rails-4.2.0/app/assets/javascripts/application.js +16 -0
- data/spec/dummy/rails-4.2.0/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/rails-4.2.0/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/rails-4.2.0/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/rails-4.2.0/app/models/user.rb +2 -0
- data/spec/dummy/rails-4.2.0/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/rails-4.2.0/bin/bundle +3 -0
- data/spec/dummy/rails-4.2.0/bin/rails +4 -0
- data/spec/dummy/rails-4.2.0/bin/rake +4 -0
- data/spec/dummy/rails-4.2.0/bin/setup +29 -0
- data/spec/dummy/rails-4.2.0/config.ru +4 -0
- data/spec/dummy/rails-4.2.0/config/application.rb +26 -0
- data/spec/dummy/rails-4.2.0/config/boot.rb +3 -0
- data/spec/dummy/rails-4.2.0/config/database.yml +15 -0
- data/spec/dummy/rails-4.2.0/config/environment.rb +5 -0
- data/spec/dummy/rails-4.2.0/config/environments/development.rb +41 -0
- data/spec/dummy/rails-4.2.0/config/environments/production.rb +79 -0
- data/spec/dummy/rails-4.2.0/config/environments/test.rb +42 -0
- data/spec/dummy/rails-4.2.0/config/initializers/assets.rb +11 -0
- data/spec/dummy/rails-4.2.0/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/rails-4.2.0/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/rails-4.2.0/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/rails-4.2.0/config/initializers/inflections.rb +16 -0
- data/spec/dummy/rails-4.2.0/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/rails-4.2.0/config/initializers/session_store.rb +3 -0
- data/spec/dummy/rails-4.2.0/config/initializers/social_auth.rb +15 -0
- data/spec/dummy/rails-4.2.0/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/rails-4.2.0/config/locales/en.yml +23 -0
- data/spec/dummy/rails-4.2.0/config/routes.rb +56 -0
- data/spec/dummy/rails-4.2.0/config/secrets.yml +22 -0
- data/spec/dummy/rails-4.2.0/db/migrate/20150504044515878_create_social_auth_services.rb +12 -0
- data/spec/dummy/rails-4.2.0/db/migrate/20150504044519_create_users.rb +9 -0
- data/spec/dummy/rails-4.2.0/db/schema.rb +35 -0
- data/spec/dummy/rails-4.2.0/db/seeds.rb +7 -0
- data/spec/dummy/rails-4.2.0/log/test.log +2570 -0
- data/spec/dummy/rails-4.2.0/public/404.html +67 -0
- data/spec/dummy/rails-4.2.0/public/422.html +67 -0
- data/spec/dummy/rails-4.2.0/public/500.html +66 -0
- data/spec/dummy/rails-4.2.0/public/favicon.ico +0 -0
- data/spec/dummy/rails-4.2.0/public/robots.txt +5 -0
- data/spec/dummy/rails-4.2.0/test/fixtures/users.yml +7 -0
- data/spec/dummy/rails-4.2.0/test/models/user_test.rb +7 -0
- data/spec/dummy/rails-4.2.0/test/test_helper.rb +10 -0
- data/spec/fixtures/vcr_cassettes/facebook_service/invalid_friends_request.yml +54 -0
- data/spec/fixtures/vcr_cassettes/facebook_service/invalid_request.yml +50 -0
- data/spec/fixtures/vcr_cassettes/facebook_service/invalid_token.yml +50 -0
- data/spec/fixtures/vcr_cassettes/facebook_service/valid_friends_request.yml +110 -0
- data/spec/fixtures/vcr_cassettes/facebook_service/valid_request.yml +55 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_authorization.yml +51 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_friends_request.yml +53 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/invalid_token.yml +51 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/valid_authorization.yml +56 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/valid_friends_request.yml +132 -0
- data/spec/fixtures/vcr_cassettes/google_plus_service/valid_request.yml +110 -0
- data/spec/fixtures/vcr_cassettes/twitter_service/invalid_friends_request.yml +47 -0
- data/spec/fixtures/vcr_cassettes/twitter_service/valid_friends_request.yml +159 -0
- data/spec/fixtures/vcr_cassettes/twitter_service/valid_request.yml +337 -0
- data/spec/models/facebook_service_spec.rb +127 -0
- data/spec/models/google_plus_service_spec.rb +133 -0
- data/spec/models/service_spec.rb +236 -0
- data/spec/models/twitter_service_spec.rb +100 -0
- data/spec/spec_helper.rb +74 -0
- data/spec/support/database.yml +15 -0
- data/spec/support/rails_template.rb +15 -0
- 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
|
+
[1m[36m (5.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
|
2
|
+
[1m[35m (2.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
4
|
+
Migrating to CreateUsers (20150504044519)
|
|
5
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
6
|
+
[1m[36m (9.5ms)[0m [1mCREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
|
7
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150504044519"]]
|
|
8
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
|
9
|
+
Migrating to CreateSocialAuthServices (20150504044515878)
|
|
10
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
11
|
+
[1m[36m (14.9ms)[0m [1mCREATE 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) [0m
|
|
12
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150504044515878"]]
|
|
13
|
+
[1m[36m (4.7ms)[0m [1mCOMMIT[0m
|
|
14
|
+
[1m[35mActiveRecord::SchemaMigration Load (1.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
15
|
+
[1m[36m (7.1ms)[0m [1mSELECT 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
|
+
[0m
|
|
27
|
+
[1m[35m (6.4ms)[0m 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
|
+
[1m[36m (125.2ms)[0m [1mDROP DATABASE IF EXISTS "rails-4_2_0_test"[0m
|
|
40
|
+
[1m[35m (412.1ms)[0m CREATE DATABASE "rails-4_2_0_test" ENCODING = 'unicode'
|
|
41
|
+
[1m[36mSQL (0.5ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
|
42
|
+
[1m[35m (11.2ms)[0m 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
|
+
[1m[36m (8.5ms)[0m [1mCREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
|
44
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
|
45
|
+
[1m[36m (1.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
46
|
+
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
|
47
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150504044515878')[0m
|
|
48
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150504044519')
|
|
49
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
50
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
51
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.644381"], ["updated_at", "2015-05-04 04:45:33.644381"]]
|
|
52
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
53
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
54
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
55
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
56
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
58
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
59
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
60
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
61
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.679575"], ["updated_at", "2015-05-04 04:45:33.679575"]]
|
|
62
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
63
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
64
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
65
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
66
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
68
|
+
[1m[35m (4.0ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
69
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
70
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
71
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
72
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
74
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
|
75
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
76
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
77
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.748474"], ["updated_at", "2015-05-04 04:45:33.748474"]]
|
|
78
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
79
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
|
80
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
81
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
82
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
84
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
85
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
86
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
87
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.774295"], ["updated_at", "2015-05-04 04:45:33.774295"]]
|
|
88
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
89
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')[0m
|
|
90
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
91
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
92
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
93
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.786782"], ["updated_at", "2015-05-04 04:45:33.786782"]]
|
|
94
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
95
|
+
[1m[36m (2.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
96
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
99
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
100
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
101
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
102
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
106
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
108
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
109
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
110
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
111
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.884394"], ["updated_at", "2015-05-04 04:45:33.884394"]]
|
|
112
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
113
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
114
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
118
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
120
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
121
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
122
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
123
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.918275"], ["updated_at", "2015-05-04 04:45:33.918275"]]
|
|
124
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
125
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
126
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
127
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
128
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
130
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
131
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
132
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
133
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:33.932011"], ["updated_at", "2015-05-04 04:45:33.932011"]]
|
|
134
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
135
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
136
|
+
ETHON: Libcurl initialized
|
|
137
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
139
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
140
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
141
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
144
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
145
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
146
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
147
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
148
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.000809"], ["updated_at", "2015-05-04 04:45:34.000809"]]
|
|
149
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
150
|
+
[1m[36mSocialAuth::GooglePlusService Load (0.4ms)[0m [1mSELECT "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[0m [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
|
|
151
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
153
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
155
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
156
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
157
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
158
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.031040"], ["updated_at", "2015-05-04 04:45:34.031040"]]
|
|
159
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
160
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
161
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.4ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
163
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
164
|
+
[1m[36mSocialAuth::Service Exists (0.9ms)[0m [1mSELECT 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[0m
|
|
165
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
167
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
|
|
168
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
169
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
170
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
171
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
173
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
174
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
176
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.083086"], ["updated_at", "2015-05-04 04:45:34.083086"]]
|
|
177
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
178
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
179
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
180
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
181
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
183
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
184
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
185
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
186
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.131660"], ["updated_at", "2015-05-04 04:45:34.131660"]]
|
|
187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
188
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
189
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
190
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
191
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
193
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
194
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
195
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
197
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
198
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
199
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
200
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.178171"], ["updated_at", "2015-05-04 04:45:34.178171"]]
|
|
201
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
202
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
203
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
206
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
207
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
208
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
209
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
212
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
213
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
215
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
216
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
217
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
218
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
219
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
220
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
221
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
223
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
224
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.229395"], ["updated_at", "2015-05-04 04:45:34.229395"]]
|
|
225
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
226
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
227
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 26]]
|
|
228
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
229
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
231
|
+
[1m[35mSocialAuth::Service Exists (1.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
233
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
234
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
235
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
237
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
238
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.252053"], ["updated_at", "2015-05-04 04:45:34.252053"]]
|
|
239
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
240
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
241
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
244
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
245
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
247
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
248
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
249
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
251
|
+
[1m[35mSocialAuth::Service Load (0.6ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
|
|
252
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
253
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
254
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
255
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
257
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
258
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.289290"], ["updated_at", "2015-05-04 04:45:34.289290"]]
|
|
259
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
261
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
264
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
265
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
267
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
268
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
269
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
271
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
|
|
272
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
273
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
274
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
275
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
277
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
278
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.314944"], ["updated_at", "2015-05-04 04:45:34.314944"]]
|
|
279
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
280
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
281
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
284
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
285
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
286
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
287
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
290
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.330430"], ["updated_at", "2015-05-04 04:45:34.330430"]]
|
|
291
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
292
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
293
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
296
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
297
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
299
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
300
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
301
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
303
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 16]]
|
|
304
|
+
[1m[36mSocialAuth::Service Load (0.4ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))[0m
|
|
305
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 36]]
|
|
306
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 37]]
|
|
307
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
308
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
309
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
310
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.358114"], ["updated_at", "2015-05-04 04:45:34.358114"]]
|
|
311
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
312
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
313
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
315
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
316
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
317
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
319
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
320
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.373153"], ["updated_at", "2015-05-04 04:45:34.373153"]]
|
|
321
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
322
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
323
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
326
|
+
[1m[36mSocialAuth::Service Load (0.3ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1[0m [["id", 18]]
|
|
327
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
|
|
328
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 39]]
|
|
329
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 40]]
|
|
330
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
331
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
333
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
335
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
336
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
337
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
339
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
340
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
341
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
343
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
344
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
345
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 19]]
|
|
346
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
347
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
348
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
349
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
350
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
351
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
353
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
354
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
355
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
357
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
358
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
359
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
360
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
361
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
362
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
363
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
364
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
365
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
367
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
368
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
369
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
371
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
372
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
373
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
374
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.443371"], ["updated_at", "2015-05-04 04:45:34.443371"]]
|
|
375
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
376
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
377
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
380
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
381
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
382
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
383
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
385
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
386
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
387
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
389
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 45]]
|
|
390
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
391
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
392
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
393
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
395
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
396
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
397
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
399
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 46]]
|
|
400
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
401
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
402
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
403
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
405
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 47]]
|
|
406
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
407
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
408
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
409
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
411
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
412
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.495803"], ["updated_at", "2015-05-04 04:45:34.495803"]]
|
|
413
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
414
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
415
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
416
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
418
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.502659"], ["updated_at", "2015-05-04 04:45:34.502659"]]
|
|
419
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
420
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
421
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
423
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
424
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
425
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
427
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
428
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
429
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
430
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
431
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
432
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
433
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
434
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.532594"], ["updated_at", "2015-05-04 04:45:34.532594"]]
|
|
435
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
436
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
437
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
439
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
440
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.540377"], ["updated_at", "2015-05-04 04:45:34.540377"]]
|
|
441
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
442
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
443
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
446
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
447
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
450
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.555103"], ["updated_at", "2015-05-04 04:45:34.555103"]]
|
|
451
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
452
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
453
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
455
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
457
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
458
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
459
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
461
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
462
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.567818"], ["updated_at", "2015-05-04 04:45:34.567818"]]
|
|
463
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
464
|
+
[1m[36m (0.6ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
465
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
468
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
469
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
470
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
471
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
472
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.582970"], ["updated_at", "2015-05-04 04:45:34.582970"]]
|
|
473
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
474
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
475
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
477
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
478
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
479
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
481
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
482
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.594918"], ["updated_at", "2015-05-04 04:45:34.594918"]]
|
|
483
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
484
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
485
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
488
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
489
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
490
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
491
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
492
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.606849"], ["updated_at", "2015-05-04 04:45:34.606849"]]
|
|
493
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
494
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
495
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
497
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
498
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
499
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
501
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
502
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
503
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
504
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
505
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
507
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
508
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.627324"], ["updated_at", "2015-05-04 04:45:34.627324"]]
|
|
509
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
510
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
511
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
514
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
515
|
+
[1m[35mSocialAuth::Service Load (0.6ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
517
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
518
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
519
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
521
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
522
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
523
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
524
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
525
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
527
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
529
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
530
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
531
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
533
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
534
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
535
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
536
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.660216"], ["updated_at", "2015-05-04 04:45:34.660216"]]
|
|
537
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
538
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
539
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
542
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
543
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
544
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:45:34.669621"], ["updated_at", "2015-05-04 04:45:34.669621"]]
|
|
545
|
+
[1m[35m (0.9ms)[0m RELEASE SAVEPOINT active_record_1
|
|
546
|
+
[1m[36mSocialAuth::Service Load (0.3ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
547
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
549
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.6ms)[0m RELEASE SAVEPOINT active_record_1
|
|
552
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
553
|
+
[1m[35m (0.6ms)[0m ROLLBACK
|
|
554
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
555
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
556
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.691982"], ["updated_at", "2015-05-04 04:45:34.691982"]]
|
|
557
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
558
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
559
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
562
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
563
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
565
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 68]]
|
|
566
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
567
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
568
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
569
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
570
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
571
|
+
[1m[35m (0.7ms)[0m SAVEPOINT active_record_1
|
|
572
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.717052"], ["updated_at", "2015-05-04 04:45:34.717052"]]
|
|
573
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
574
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
575
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
578
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
579
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
581
|
+
[1m[35mSocialAuth::Service Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
583
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 69]]
|
|
584
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
585
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
586
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
587
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
588
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
589
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
590
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.742028"], ["updated_at", "2015-05-04 04:45:34.742028"]]
|
|
591
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
592
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
593
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
594
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
595
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
597
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
598
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
599
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
600
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.757619"], ["updated_at", "2015-05-04 04:45:34.757619"]]
|
|
601
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
602
|
+
[1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
603
|
+
[1m[35mSocialAuth::TwitterService Load (0.4ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
605
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
606
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
607
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
610
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
611
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
612
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
613
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
614
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.865303"], ["updated_at", "2015-05-04 04:45:34.865303"]]
|
|
615
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
616
|
+
[1m[36mSocialAuth::TwitterService Load (0.6ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Authenticated"]]
|
|
617
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
619
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
621
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
622
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
623
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
624
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:34.947799"], ["updated_at", "2015-05-04 04:45:34.947799"]]
|
|
625
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
626
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
627
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
628
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
629
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
631
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
|
|
632
|
+
[1m[36mSocialAuth::TwitterService Load (0.5ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
633
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
635
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
638
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
639
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
640
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
641
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
642
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:45:35.017333"], ["updated_at", "2015-05-04 04:45:35.017333"]]
|
|
643
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
644
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
645
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
648
|
+
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
|
649
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
650
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
651
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
653
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
654
|
+
[1m[36mSocialAuth::Service Exists (1.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
655
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
657
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
658
|
+
[1m[36mSocialAuth::Service Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
659
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
660
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
661
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
662
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
663
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.017852"], ["updated_at", "2015-05-04 04:47:57.017852"]]
|
|
664
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
665
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
|
666
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
667
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
668
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
670
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
671
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
672
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
673
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.057650"], ["updated_at", "2015-05-04 04:47:57.057650"]]
|
|
674
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
675
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
676
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
677
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
678
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
680
|
+
[1m[35m (1.4ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
681
|
+
[1m[36mSocialAuth::FacebookService Load (0.4ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
|
|
682
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
684
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.167492"], ["updated_at", "2015-05-04 04:47:57.167492"]]
|
|
686
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
688
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
689
|
+
[1m[36m (0.6ms)[0m [1mROLLBACK[0m
|
|
690
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
691
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
692
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
694
|
+
[1m[35mSocialAuth::FacebookService Load (0.5ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mSELECT 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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
696
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
697
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
698
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
699
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
700
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
701
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
702
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
704
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
705
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
706
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
707
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.222807"], ["updated_at", "2015-05-04 04:47:57.222807"]]
|
|
708
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
709
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
710
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
711
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
712
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
714
|
+
[1m[35m (0.8ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
715
|
+
[1m[36mSocialAuth::FacebookService Load (1.0ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
716
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
718
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
721
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')[0m
|
|
722
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
723
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
724
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
725
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.285885"], ["updated_at", "2015-05-04 04:47:57.285885"]]
|
|
726
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
727
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
728
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
731
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
732
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
733
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
734
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
736
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
737
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
738
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
740
|
+
[1m[35m (0.9ms)[0m ROLLBACK
|
|
741
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
742
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
743
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.348209"], ["updated_at", "2015-05-04 04:47:57.348209"]]
|
|
744
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
745
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
746
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
749
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
750
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
752
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
753
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
754
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
755
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.377719"], ["updated_at", "2015-05-04 04:47:57.377719"]]
|
|
756
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
757
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
758
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
759
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
760
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
762
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
763
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
764
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
765
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.395910"], ["updated_at", "2015-05-04 04:47:57.395910"]]
|
|
766
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
767
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
768
|
+
ETHON: Libcurl initialized
|
|
769
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.5ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
771
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
772
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
773
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
776
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
777
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
778
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
779
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
780
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.461675"], ["updated_at", "2015-05-04 04:47:57.461675"]]
|
|
781
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
782
|
+
[1m[36mSocialAuth::GooglePlusService Load (0.5ms)[0m [1mSELECT "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[0m [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
|
|
783
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
785
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
787
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
788
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
789
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
790
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.493476"], ["updated_at", "2015-05-04 04:47:57.493476"]]
|
|
791
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
792
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
793
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.4ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
795
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
796
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
797
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
799
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
|
|
800
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
801
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
802
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
803
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
805
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
|
806
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
808
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.560813"], ["updated_at", "2015-05-04 04:47:57.560813"]]
|
|
809
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
810
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
811
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
812
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
813
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
815
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
816
|
+
[1m[36m (0.7ms)[0m [1mBEGIN[0m
|
|
817
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
818
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.605768"], ["updated_at", "2015-05-04 04:47:57.605768"]]
|
|
819
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
820
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
821
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
822
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
823
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
825
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
826
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
827
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
829
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
830
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
831
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
832
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.651445"], ["updated_at", "2015-05-04 04:47:57.651445"]]
|
|
833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
834
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
835
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
838
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
839
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
841
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
843
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
844
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
845
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
847
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
848
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
849
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
850
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
851
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
852
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
853
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
855
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
856
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.705767"], ["updated_at", "2015-05-04 04:47:57.705767"]]
|
|
857
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
858
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
859
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 105]]
|
|
860
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
861
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
863
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
865
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
866
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
867
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
869
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
870
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.730075"], ["updated_at", "2015-05-04 04:47:57.730075"]]
|
|
871
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
872
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
873
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
876
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
877
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
879
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
880
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
881
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
883
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
|
|
884
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
885
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
886
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
887
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
889
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
890
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.758099"], ["updated_at", "2015-05-04 04:47:57.758099"]]
|
|
891
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
892
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
893
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
896
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
897
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
899
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
900
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
901
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
903
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
|
|
904
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
905
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
906
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
907
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
909
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
910
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.784815"], ["updated_at", "2015-05-04 04:47:57.784815"]]
|
|
911
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
912
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
913
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
916
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
917
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
918
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
919
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
921
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
922
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.797856"], ["updated_at", "2015-05-04 04:47:57.797856"]]
|
|
923
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
924
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
925
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
928
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
929
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
931
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
932
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
933
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
935
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 59]]
|
|
936
|
+
[1m[36mSocialAuth::Service Load (0.4ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))[0m
|
|
937
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 115]]
|
|
938
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 116]]
|
|
939
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
940
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
941
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
942
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.831504"], ["updated_at", "2015-05-04 04:47:57.831504"]]
|
|
943
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
944
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
945
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
947
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
948
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
949
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
951
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
952
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.844840"], ["updated_at", "2015-05-04 04:47:57.844840"]]
|
|
953
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
954
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
955
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
958
|
+
[1m[36mSocialAuth::Service Load (0.3ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1[0m [["id", 61]]
|
|
959
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
|
|
960
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 118]]
|
|
961
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 119]]
|
|
962
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
963
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
965
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
967
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
968
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
969
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
971
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
972
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
973
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
975
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
976
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
977
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 62]]
|
|
978
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
979
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
980
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
981
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
982
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
983
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
985
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
986
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
987
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
989
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
990
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
991
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
992
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
993
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
994
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
995
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
997
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
999
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1000
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1001
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1003
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1004
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1005
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1006
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.919173"], ["updated_at", "2015-05-04 04:47:57.919173"]]
|
|
1007
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1008
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1009
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1012
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1013
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1014
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1015
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1017
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1018
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1019
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1021
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 124]]
|
|
1022
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1023
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1024
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1025
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1027
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1028
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1029
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1031
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 125]]
|
|
1032
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1033
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1034
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1035
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1037
|
+
[1m[35mSocialAuth::Service Load (0.5ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 126]]
|
|
1038
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1039
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1040
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1041
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1043
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1044
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:57.981411"], ["updated_at", "2015-05-04 04:47:57.981411"]]
|
|
1045
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1046
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1047
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1048
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1049
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1050
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:57.988190"], ["updated_at", "2015-05-04 04:47:57.988190"]]
|
|
1051
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1052
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1053
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1055
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1056
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1057
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1059
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1060
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1061
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1062
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1063
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1064
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1065
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1066
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.010868"], ["updated_at", "2015-05-04 04:47:58.010868"]]
|
|
1067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1068
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1069
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1071
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1072
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:58.016437"], ["updated_at", "2015-05-04 04:47:58.016437"]]
|
|
1073
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1074
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1075
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1078
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1079
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1080
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1081
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1082
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.028474"], ["updated_at", "2015-05-04 04:47:58.028474"]]
|
|
1083
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1084
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1085
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1087
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1089
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1090
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1091
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1093
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1094
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:58.043546"], ["updated_at", "2015-05-04 04:47:58.043546"]]
|
|
1095
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1096
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1097
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1100
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1101
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1102
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1103
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1104
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.056750"], ["updated_at", "2015-05-04 04:47:58.056750"]]
|
|
1105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1106
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1107
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1109
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1110
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1111
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1113
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1114
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:58.068376"], ["updated_at", "2015-05-04 04:47:58.068376"]]
|
|
1115
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1117
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1120
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 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[0m
|
|
1121
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1122
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1123
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1124
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.080295"], ["updated_at", "2015-05-04 04:47:58.080295"]]
|
|
1125
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1126
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1127
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1129
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1130
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1131
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1133
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
1134
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1135
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1136
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1137
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1139
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1140
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:58.105675"], ["updated_at", "2015-05-04 04:47:58.105675"]]
|
|
1141
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1142
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1143
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1146
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1147
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1149
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1150
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1151
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1153
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
1154
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1155
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1156
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1157
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1159
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1161
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1162
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1163
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1165
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1166
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1167
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1168
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.138560"], ["updated_at", "2015-05-04 04:47:58.138560"]]
|
|
1169
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1170
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1171
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1174
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1175
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1176
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 04:47:58.149681"], ["updated_at", "2015-05-04 04:47:58.149681"]]
|
|
1177
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1178
|
+
[1m[36mSocialAuth::Service Load (0.3ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1179
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1181
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1184
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1185
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1186
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1187
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1188
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.161618"], ["updated_at", "2015-05-04 04:47:58.161618"]]
|
|
1189
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1190
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1191
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1194
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1195
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1197
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 147]]
|
|
1198
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1199
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1200
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1201
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1202
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1203
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1204
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.182684"], ["updated_at", "2015-05-04 04:47:58.182684"]]
|
|
1205
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1206
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1207
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1210
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1211
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1213
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1215
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 148]]
|
|
1216
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1217
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1218
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1219
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1220
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1221
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1222
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.204921"], ["updated_at", "2015-05-04 04:47:58.204921"]]
|
|
1223
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1224
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1225
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1226
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1227
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1229
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1230
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1231
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1232
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.218313"], ["updated_at", "2015-05-04 04:47:58.218313"]]
|
|
1233
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1234
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1235
|
+
[1m[35mSocialAuth::TwitterService Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
1237
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1238
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1239
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1242
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1243
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1244
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1245
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1246
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.321024"], ["updated_at", "2015-05-04 04:47:58.321024"]]
|
|
1247
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1248
|
+
[1m[36mSocialAuth::TwitterService Load (0.7ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Authenticated"]]
|
|
1249
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1251
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1253
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1254
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1255
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1256
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.397038"], ["updated_at", "2015-05-04 04:47:58.397038"]]
|
|
1257
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1258
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1259
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1261
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1263
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
|
|
1264
|
+
[1m[36mSocialAuth::TwitterService Load (0.5ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
1265
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1267
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1270
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1271
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1272
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1273
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1274
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 04:47:58.453182"], ["updated_at", "2015-05-04 04:47:58.453182"]]
|
|
1275
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1276
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1277
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1280
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1281
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1282
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1283
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1285
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1286
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1287
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1290
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1291
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1292
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1293
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1294
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1295
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.828196"], ["updated_at", "2015-05-04 05:00:12.828196"]]
|
|
1296
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1297
|
+
[1m[36m (1.1ms)[0m [1mROLLBACK[0m
|
|
1298
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1299
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1300
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1302
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1303
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1304
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1305
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:12.866617"], ["updated_at", "2015-05-04 05:00:12.866617"]]
|
|
1306
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1307
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1308
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1309
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1310
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1312
|
+
[1m[35m (1.5ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1313
|
+
[1m[36mSocialAuth::FacebookService Load (0.7ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
|
|
1314
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1316
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:12.967621"], ["updated_at", "2015-05-04 05:00:12.967621"]]
|
|
1318
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1320
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1321
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1322
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1323
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1324
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1326
|
+
[1m[35mSocialAuth::FacebookService Load (0.5ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
1328
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1329
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
1330
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1331
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1332
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1333
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1334
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1336
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1337
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1339
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.029170"], ["updated_at", "2015-05-04 05:00:13.029170"]]
|
|
1340
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1341
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1342
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1343
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1344
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1346
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1347
|
+
[1m[36mSocialAuth::FacebookService Load (0.5ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
1348
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1350
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1353
|
+
[1m[36m (0.8ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')[0m
|
|
1354
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1355
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1356
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1357
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.093959"], ["updated_at", "2015-05-04 05:00:13.093959"]]
|
|
1358
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1359
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1360
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1363
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1364
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1365
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1366
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1368
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1369
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
1370
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1372
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1373
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1374
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1375
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.155283"], ["updated_at", "2015-05-04 05:00:13.155283"]]
|
|
1376
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1377
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1378
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1382
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1384
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1385
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1386
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1387
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.187267"], ["updated_at", "2015-05-04 05:00:13.187267"]]
|
|
1388
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1389
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1390
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1391
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1392
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1394
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1395
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1396
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1397
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.203137"], ["updated_at", "2015-05-04 05:00:13.203137"]]
|
|
1398
|
+
[1m[35m (1.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1399
|
+
[1m[36m (1.8ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
1400
|
+
ETHON: Libcurl initialized
|
|
1401
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.4ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
1403
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1404
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
1405
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1408
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
1409
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1410
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1411
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1412
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.274092"], ["updated_at", "2015-05-04 05:00:13.274092"]]
|
|
1413
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1414
|
+
[1m[36mSocialAuth::GooglePlusService Load (0.4ms)[0m [1mSELECT "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[0m [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
|
|
1415
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1417
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1419
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1420
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1421
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1422
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.306666"], ["updated_at", "2015-05-04 05:00:13.306666"]]
|
|
1423
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1424
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
1425
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.4ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
1427
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1428
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1429
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1431
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
|
|
1432
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
|
1433
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1434
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1435
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1437
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1438
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1439
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1440
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.368052"], ["updated_at", "2015-05-04 05:00:13.368052"]]
|
|
1441
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1442
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1443
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1444
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1445
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1447
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1450
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.411187"], ["updated_at", "2015-05-04 05:00:13.411187"]]
|
|
1451
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1452
|
+
[1m[36m (0.6ms)[0m [1mROLLBACK[0m
|
|
1453
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1455
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1457
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1458
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
1459
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1461
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1462
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1463
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1464
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.465274"], ["updated_at", "2015-05-04 05:00:13.465274"]]
|
|
1465
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1466
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1467
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1470
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1471
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1472
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1473
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1475
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1476
|
+
[1m[36mSocialAuth::Service Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
1477
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1479
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1480
|
+
[1m[36mSocialAuth::Service Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
1481
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1482
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1483
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1484
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1485
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1487
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1488
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.517613"], ["updated_at", "2015-05-04 05:00:13.517613"]]
|
|
1489
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1490
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1491
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 184]]
|
|
1492
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1493
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1495
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
|
1497
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1498
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1499
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1501
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1502
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.543245"], ["updated_at", "2015-05-04 05:00:13.543245"]]
|
|
1503
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1504
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1505
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1508
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1509
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1511
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1512
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1513
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1515
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
|
|
1516
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1517
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1518
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1519
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1521
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1522
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.574783"], ["updated_at", "2015-05-04 05:00:13.574783"]]
|
|
1523
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1524
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1525
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1528
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1529
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1531
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1532
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1533
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1535
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
|
|
1536
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1537
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1538
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1539
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1541
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.600455"], ["updated_at", "2015-05-04 05:00:13.600455"]]
|
|
1543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1544
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1545
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1548
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1549
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1550
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1551
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1553
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1554
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.614317"], ["updated_at", "2015-05-04 05:00:13.614317"]]
|
|
1555
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1557
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1560
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1561
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1563
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1564
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1565
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1567
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 102]]
|
|
1568
|
+
[1m[36mSocialAuth::Service Load (0.6ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))[0m
|
|
1569
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 194]]
|
|
1570
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 195]]
|
|
1571
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1572
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1573
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1574
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.647169"], ["updated_at", "2015-05-04 05:00:13.647169"]]
|
|
1575
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1576
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1577
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1579
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1580
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1581
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1583
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1584
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.662443"], ["updated_at", "2015-05-04 05:00:13.662443"]]
|
|
1585
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1586
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1587
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1590
|
+
[1m[36mSocialAuth::Service Load (0.4ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1[0m [["id", 104]]
|
|
1591
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
|
|
1592
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 197]]
|
|
1593
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 198]]
|
|
1594
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1595
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1596
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1597
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1599
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1600
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1601
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1603
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1604
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1605
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1607
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
1608
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1609
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1610
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1611
|
+
[1m[35mSQL (1.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1613
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1614
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1615
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1618
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1620
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1621
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1622
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1623
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1625
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1626
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1627
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1629
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1630
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
1631
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1633
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
|
1634
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1635
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1636
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.749300"], ["updated_at", "2015-05-04 05:00:13.749300"]]
|
|
1637
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1638
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1639
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1642
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1643
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "social_auth_services" SET "method" = $1, "updated_at" = $2 WHERE "social_auth_services"."id" = $3[0m [["method", "Connected"], ["updated_at", "2015-05-04 05:00:13.762696"], ["id", 108]]
|
|
1645
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1646
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1647
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1648
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1649
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1651
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1652
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
1653
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1655
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 203]]
|
|
1656
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1657
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1658
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1659
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1661
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1662
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1663
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1665
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 204]]
|
|
1666
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1667
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1668
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1669
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1671
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 205]]
|
|
1672
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1673
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1674
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1675
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1677
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1678
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.805143"], ["updated_at", "2015-05-04 05:00:13.805143"]]
|
|
1679
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1680
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1681
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1682
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1683
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1684
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.812650"], ["updated_at", "2015-05-04 05:00:13.812650"]]
|
|
1685
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1686
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1687
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1689
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1690
|
+
[1m[36mSocialAuth::Service Exists (0.8ms)[0m [1mSELECT 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[0m
|
|
1691
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1693
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1694
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1695
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1696
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1697
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1698
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1699
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1700
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.834864"], ["updated_at", "2015-05-04 05:00:13.834864"]]
|
|
1701
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1702
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1703
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1705
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1706
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.841930"], ["updated_at", "2015-05-04 05:00:13.841930"]]
|
|
1707
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1708
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1709
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1712
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
1713
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1714
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
|
1715
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1716
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.858509"], ["updated_at", "2015-05-04 05:00:13.858509"]]
|
|
1717
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1718
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1719
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1721
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1723
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1724
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1725
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1727
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1728
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.875783"], ["updated_at", "2015-05-04 05:00:13.875783"]]
|
|
1729
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1730
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1731
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1734
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1735
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1736
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1737
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1738
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.890605"], ["updated_at", "2015-05-04 05:00:13.890605"]]
|
|
1739
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1740
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1741
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1743
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1744
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1745
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1747
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1748
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.902728"], ["updated_at", "2015-05-04 05:00:13.902728"]]
|
|
1749
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1751
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1754
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1755
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1756
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1757
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1758
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.914979"], ["updated_at", "2015-05-04 05:00:13.914979"]]
|
|
1759
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1760
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1761
|
+
[1m[35mSocialAuth::Service Load (0.5ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1763
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1764
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1765
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1767
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
1768
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1769
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1770
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1771
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1773
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1774
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.940478"], ["updated_at", "2015-05-04 05:00:13.940478"]]
|
|
1775
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1776
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1777
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1780
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1781
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1783
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1784
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
1785
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1787
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
1788
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
1789
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1790
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1791
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1793
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1795
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1796
|
+
[1m[36mSocialAuth::Service Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
1797
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1799
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1800
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1801
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1802
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.973982"], ["updated_at", "2015-05-04 05:00:13.973982"]]
|
|
1803
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1804
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1805
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1808
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1809
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1810
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:13.983409"], ["updated_at", "2015-05-04 05:00:13.983409"]]
|
|
1811
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1812
|
+
[1m[36mSocialAuth::Service Load (0.3ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1813
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1815
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1818
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1819
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1820
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1821
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1822
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:13.996651"], ["updated_at", "2015-05-04 05:00:13.996651"]]
|
|
1823
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1824
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1825
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1828
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1829
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1831
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 226]]
|
|
1832
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1834
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1835
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1836
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1837
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1838
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.015273"], ["updated_at", "2015-05-04 05:00:14.015273"]]
|
|
1839
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1841
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1844
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1845
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
1847
|
+
[1m[35mSocialAuth::Service Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1849
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 227]]
|
|
1850
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 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[0m
|
|
1851
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1852
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
1853
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1854
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1855
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1856
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.035262"], ["updated_at", "2015-05-04 05:00:14.035262"]]
|
|
1857
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1858
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1859
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1860
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1861
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1863
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1864
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1865
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1866
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.050371"], ["updated_at", "2015-05-04 05:00:14.050371"]]
|
|
1867
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1868
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1869
|
+
[1m[35mSocialAuth::TwitterService Load (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT 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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
1871
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1872
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1873
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1876
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1877
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1878
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1879
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1880
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.151383"], ["updated_at", "2015-05-04 05:00:14.151383"]]
|
|
1881
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1882
|
+
[1m[36mSocialAuth::TwitterService Load (0.4ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Authenticated"]]
|
|
1883
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1885
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1887
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
1888
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1889
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1890
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.231454"], ["updated_at", "2015-05-04 05:00:14.231454"]]
|
|
1891
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1892
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1893
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1894
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1895
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1897
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
|
|
1898
|
+
[1m[36mSocialAuth::TwitterService Load (0.4ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
1899
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1901
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1904
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
1905
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1906
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
1907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1908
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:14.288512"], ["updated_at", "2015-05-04 05:00:14.288512"]]
|
|
1909
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1910
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1911
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1914
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1915
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1916
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1917
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1919
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1920
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1921
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1923
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1924
|
+
[1m[36mSocialAuth::Service Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
1925
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1926
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1927
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1928
|
+
[1m[35m (1.5ms)[0m SAVEPOINT active_record_1
|
|
1929
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.930896"], ["updated_at", "2015-05-04 05:00:49.930896"]]
|
|
1930
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1931
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
1932
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1933
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1934
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1936
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
1937
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1938
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1939
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:49.973328"], ["updated_at", "2015-05-04 05:00:49.973328"]]
|
|
1940
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1941
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1942
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1943
|
+
[1m[36m (0.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1944
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1946
|
+
[1m[35m (1.7ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1947
|
+
[1m[36mSocialAuth::FacebookService Load (0.6ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Authenticated"]]
|
|
1948
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1950
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.087971"], ["updated_at", "2015-05-04 05:00:50.087971"]]
|
|
1952
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1954
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1955
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1956
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1957
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1958
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1960
|
+
[1m[35mSocialAuth::FacebookService Load (0.5ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mSELECT 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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
1962
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
1963
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
1964
|
+
[1m[35m (0.4ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1965
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1966
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1967
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1968
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1970
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1971
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1972
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1973
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.172511"], ["updated_at", "2015-05-04 05:00:50.172511"]]
|
|
1974
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1975
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1976
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
1977
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1978
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1980
|
+
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')
|
|
1981
|
+
[1m[36mSocialAuth::FacebookService Load (0.8ms)[0m [1mSELECT "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[0m [["remote_id", "10204796229055532"], ["method", "Connected"]]
|
|
1982
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1984
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1987
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::FacebookService')[0m
|
|
1988
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
1989
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
1990
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
1991
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.220486"], ["updated_at", "2015-05-04 05:00:50.220486"]]
|
|
1992
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1993
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
1994
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1997
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
1998
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
1999
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2000
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2002
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2003
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::FacebookService') LIMIT 1[0m
|
|
2004
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2006
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2007
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2008
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2009
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.281189"], ["updated_at", "2015-05-04 05:00:50.281189"]]
|
|
2010
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2011
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2012
|
+
[1m[35mSocialAuth::Service Exists (0.4ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2015
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2016
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
2018
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2019
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2020
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2021
|
+
[1m[36mSQL (1.8ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.313239"], ["updated_at", "2015-05-04 05:00:50.313239"]]
|
|
2022
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2023
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2024
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2025
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2026
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2028
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2029
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2030
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2031
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.335060"], ["updated_at", "2015-05-04 05:00:50.335060"]]
|
|
2032
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2033
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
2034
|
+
ETHON: Libcurl initialized
|
|
2035
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.5ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
2037
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2038
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '117652050090394249462' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
2039
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2042
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
2043
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
|
2044
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2045
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2046
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.402285"], ["updated_at", "2015-05-04 05:00:50.402285"]]
|
|
2047
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2048
|
+
[1m[36mSocialAuth::GooglePlusService Load (0.8ms)[0m [1mSELECT "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[0m [["remote_id", "117652050090394249462"], ["method", "Authenticated"]]
|
|
2049
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2051
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
2053
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2054
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2055
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2056
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.440974"], ["updated_at", "2015-05-04 05:00:50.440974"]]
|
|
2057
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2058
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')[0m
|
|
2059
|
+
[1m[35mSocialAuth::GooglePlusService Load (0.5ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mSELECT 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[0m [["remote_id", "117652050090394249462"], ["method", "Connected"]]
|
|
2061
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2062
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2063
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2065
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::GooglePlusService')
|
|
2066
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2067
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2068
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2069
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2071
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2072
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2073
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2074
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.513676"], ["updated_at", "2015-05-04 05:00:50.513676"]]
|
|
2075
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2076
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2077
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
2078
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2079
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2081
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2082
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2083
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2084
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.561704"], ["updated_at", "2015-05-04 05:00:50.561704"]]
|
|
2085
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2086
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2087
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2088
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2089
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2091
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2092
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
2093
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2095
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2096
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2097
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2098
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.619462"], ["updated_at", "2015-05-04 05:00:50.619462"]]
|
|
2099
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2100
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2101
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2104
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2105
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2106
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2107
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2109
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2110
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
2111
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2113
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2114
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::GooglePlusService') LIMIT 1[0m
|
|
2115
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
2116
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2117
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2118
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2119
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2121
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2122
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.691355"], ["updated_at", "2015-05-04 05:00:50.691355"]]
|
|
2123
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2124
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2125
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 263]]
|
|
2126
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2127
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2129
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2131
|
+
[1m[35m (0.3ms)[0m BEGIN
|
|
2132
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2133
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2135
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2136
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.723212"], ["updated_at", "2015-05-04 05:00:50.723212"]]
|
|
2137
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2138
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2139
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2142
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2143
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2145
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2146
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2147
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2149
|
+
[1m[35mSocialAuth::Service Load (0.6ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('1234'))
|
|
2150
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2151
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2152
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2153
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2155
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2156
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.762018"], ["updated_at", "2015-05-04 05:00:50.762018"]]
|
|
2157
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2158
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2159
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2162
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2163
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2165
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2166
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1234' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2167
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2169
|
+
[1m[35mSocialAuth::Service Load (0.5ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('324'))
|
|
2170
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2171
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2172
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2173
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2175
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2176
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.792996"], ["updated_at", "2015-05-04 05:00:50.792996"]]
|
|
2177
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2178
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2179
|
+
[1m[35mSocialAuth::Service Exists (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2182
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2183
|
+
[1m[35m (0.4ms)[0m BEGIN
|
|
2184
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2185
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2187
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2188
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.811795"], ["updated_at", "2015-05-04 05:00:50.811795"]]
|
|
2189
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2190
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2191
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2194
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2195
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2197
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2198
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '15' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2199
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2201
|
+
[1m[35mSocialAuth::Service Load (0.6ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1 [["id", 145]]
|
|
2202
|
+
[1m[36mSocialAuth::Service Load (0.6ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))[0m
|
|
2203
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 273]]
|
|
2204
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 274]]
|
|
2205
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2206
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2207
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2208
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:50.848562"], ["updated_at", "2015-05-04 05:00:50.848562"]]
|
|
2209
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2210
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2211
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2213
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2214
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '2' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2215
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2217
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2218
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:50.866202"], ["updated_at", "2015-05-04 05:00:50.866202"]]
|
|
2219
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2220
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2221
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2224
|
+
[1m[36mSocialAuth::Service Load (0.4ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 LIMIT 1[0m [["id", 147]]
|
|
2225
|
+
[1m[35mSocialAuth::Service Load (0.6ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE (remote_id IN ('2'))
|
|
2226
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1[0m [["id", 276]]
|
|
2227
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 277]]
|
|
2228
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2229
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2230
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2231
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2233
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2234
|
+
[1m[36mSocialAuth::Service Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2235
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2237
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2238
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2239
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2241
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
2242
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2243
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1 [["id", 148]]
|
|
2244
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2245
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
2246
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
|
2247
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2248
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2249
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2251
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2252
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2253
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2255
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2256
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2257
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2258
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2259
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2261
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2263
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2264
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2265
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2267
|
+
[1m[35m (0.4ms)[0m SAVEPOINT active_record_1
|
|
2268
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2269
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2271
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2272
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1[0m [["id", 150]]
|
|
2273
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2274
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2275
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2276
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2277
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2279
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2280
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '10204796229055532' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2281
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2283
|
+
[1m[35m (0.4ms)[0m SAVEPOINT active_record_1
|
|
2284
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2285
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2287
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2288
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "social_auth_services" WHERE "social_auth_services"."id" = $1[0m [["id", 151]]
|
|
2289
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2290
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2291
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2292
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2293
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2295
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2296
|
+
[1m[36mSocialAuth::Service Exists (0.8ms)[0m [1mSELECT 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[0m
|
|
2297
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2299
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 282]]
|
|
2300
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2301
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2302
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2303
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2305
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2306
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2307
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2309
|
+
[1m[35mSocialAuth::Service Load (0.5ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 283]]
|
|
2310
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2311
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2312
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2313
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2315
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m SELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."user_id" = $1 LIMIT 1 [["user_id", 284]]
|
|
2316
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2317
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2318
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2319
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2321
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2322
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.048848"], ["updated_at", "2015-05-04 05:00:51.048848"]]
|
|
2323
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2324
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2325
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
2326
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2327
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2328
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.058606"], ["updated_at", "2015-05-04 05:00:51.058606"]]
|
|
2329
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2330
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2331
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2334
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2335
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2337
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2338
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2339
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
2340
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2341
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2342
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2343
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2344
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.083819"], ["updated_at", "2015-05-04 05:00:51.083819"]]
|
|
2345
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2346
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2347
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2349
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2350
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.091179"], ["updated_at", "2015-05-04 05:00:51.091179"]]
|
|
2351
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2352
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2353
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2356
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 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[0m
|
|
2357
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2358
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2359
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2360
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.107784"], ["updated_at", "2015-05-04 05:00:51.107784"]]
|
|
2361
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2362
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2363
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2365
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2367
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2368
|
+
[1m[36m (0.5ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2369
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2371
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2372
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.124629"], ["updated_at", "2015-05-04 05:00:51.124629"]]
|
|
2373
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2374
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2375
|
+
[1m[35mSocialAuth::Service Exists (1.0ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2378
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '34343' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2379
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2380
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2381
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2382
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.142262"], ["updated_at", "2015-05-04 05:00:51.142262"]]
|
|
2383
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2384
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2385
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2387
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2388
|
+
[1m[36mSocialAuth::Service Exists (0.9ms)[0m [1mSELECT 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[0m
|
|
2389
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2391
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2392
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.160121"], ["updated_at", "2015-05-04 05:00:51.160121"]]
|
|
2393
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2394
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2395
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2398
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2399
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2400
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.175566"], ["updated_at", "2015-05-04 05:00:51.175566"]]
|
|
2403
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2404
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2405
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
2407
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2408
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2409
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2411
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
2412
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2413
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2414
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2415
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2418
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.200753"], ["updated_at", "2015-05-04 05:00:51.200753"]]
|
|
2419
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2420
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2421
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2424
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2425
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
2427
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2428
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 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[0m
|
|
2429
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2431
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "social_auth_services"
|
|
2432
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2433
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2434
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2435
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2437
|
+
[1m[35mSocialAuth::Service Load (0.5ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
2439
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2440
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '1' AND "social_auth_services"."type" = 'SocialAuth::Service') LIMIT 1[0m
|
|
2441
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2443
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2444
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2445
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2446
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.242475"], ["updated_at", "2015-05-04 05:00:51.242475"]]
|
|
2447
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2448
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2449
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2452
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2453
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2454
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id"[0m [["created_at", "2015-05-04 05:00:51.255059"], ["updated_at", "2015-05-04 05:00:51.255059"]]
|
|
2455
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2456
|
+
[1m[36mSocialAuth::Service Load (0.4ms)[0m [1mSELECT "social_auth_services".* FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2 LIMIT 1[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
2457
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2459
|
+
[1m[35mSocialAuth::Service Exists (1.0ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2462
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2463
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
|
2464
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
2465
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2466
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.274864"], ["updated_at", "2015-05-04 05:00:51.274864"]]
|
|
2467
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2468
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2469
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2472
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2473
|
+
[1m[35mSocialAuth::Service Load (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2475
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 305]]
|
|
2476
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 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[0m
|
|
2477
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2478
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2479
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2480
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2481
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2482
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.298281"], ["updated_at", "2015-05-04 05:00:51.298281"]]
|
|
2483
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2484
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2485
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "social_auth_services" ("remote_id", "user_id", "method", "access_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2488
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2489
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."remote_id" = $1 AND "social_auth_services"."method" = $2[0m [["remote_id", "1"], ["method", "Connected"]]
|
|
2491
|
+
[1m[35mSocialAuth::Service Load (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2493
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 306]]
|
|
2494
|
+
[1m[36mSocialAuth::Service Exists (0.7ms)[0m [1mSELECT 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[0m
|
|
2495
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2496
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services"[0m
|
|
2497
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2498
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2499
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2500
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.326446"], ["updated_at", "2015-05-04 05:00:51.326446"]]
|
|
2501
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2502
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2503
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2504
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2505
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2507
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2508
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2509
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2510
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.342643"], ["updated_at", "2015-05-04 05:00:51.342643"]]
|
|
2511
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2512
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
2513
|
+
[1m[35mSocialAuth::TwitterService Load (0.5ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mSELECT 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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
2515
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
2516
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
2517
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2520
|
+
[1m[36m (0.9ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
2521
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2522
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2523
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2524
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.457764"], ["updated_at", "2015-05-04 05:00:51.457764"]]
|
|
2525
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2526
|
+
[1m[36mSocialAuth::TwitterService Load (0.5ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Authenticated"]]
|
|
2527
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2529
|
+
[1m[35mSocialAuth::Service Exists (0.8ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
2531
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
2532
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
2533
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2534
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.543518"], ["updated_at", "2015-05-04 05:00:51.543518"]]
|
|
2535
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2536
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
|
2537
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
2538
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2539
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2541
|
+
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')
|
|
2542
|
+
[1m[36mSocialAuth::TwitterService Load (0.6ms)[0m [1mSELECT "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[0m [["remote_id", "410739240"], ["method", "Connected"]]
|
|
2543
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2545
|
+
[1m[35mSocialAuth::Service Exists (0.7ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2548
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "social_auth_services" WHERE "social_auth_services"."type" IN ('SocialAuth::TwitterService')[0m
|
|
2549
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
2550
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
2551
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
2552
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"[0m [["email", "email@address.com"], ["created_at", "2015-05-04 05:00:51.615933"], ["updated_at", "2015-05-04 05:00:51.615933"]]
|
|
2553
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2554
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2555
|
+
[1m[35mSocialAuth::Service Exists (0.6ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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"[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
2558
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
|
2559
|
+
[1m[35m (0.2ms)[0m BEGIN
|
|
2560
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
2561
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2563
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2564
|
+
[1m[36mSocialAuth::Service Exists (0.5ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
2565
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
2567
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
2568
|
+
[1m[36mSocialAuth::Service Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "social_auth_services" WHERE ("social_auth_services"."remote_id" = '410739240' AND "social_auth_services"."type" = 'SocialAuth::TwitterService') LIMIT 1[0m
|
|
2569
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
2570
|
+
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|