bookingsync-engine 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2e9e1a1b065139938c74227068d00fa52244973
4
- data.tar.gz: 29b802bfa945e74dd09ad882090303e13d19966c
3
+ metadata.gz: 206fdb7d84a63bbb8b2ea309d075cdc5a43003e9
4
+ data.tar.gz: 831a6272a45fe01603b2826d0da43708f85ffce5
5
5
  SHA512:
6
- metadata.gz: 79ec41bdd62cf2891666617393585a9e9ee008bc4e6009332c0cdd4c17e5e7043e7e203a6b7f4db60f484811e7dd97689e47d6ff40aac199d19ec85a91c25f63
7
- data.tar.gz: 3e64fbceabffa3bb2211098586222228b424b9520c33e9ec4a3d67e3d7d00ed058c75295bf25e701383b3dd90a780e22e6acc2f70cf7170bf4c86c4147db3b64
6
+ metadata.gz: e06a9e1c0a5b7f4755a7a5f76cd271e7fe9b8c77551d611825a3615bb398877ce5d5707fe8fc7b2c89250e1a3c4826dee2059bbc2c986bc2f445bdc270af6cd7
7
+ data.tar.gz: 03c0a3ced64753325501c3c8c828033a390b66849696db593608cab5a9319bfcbf34736bba2d9aeb576190787afb0c7228c02cb83913e1132476762ebeb6678e
@@ -1,3 +1,3 @@
1
1
  module BookingSync
2
- ENGINE_VERSION = "1.0.0"
2
+ ENGINE_VERSION = "1.0.1"
3
3
  end
@@ -1,6 +1,8 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  RSpec.describe SessionsController, type: :controller do
4
+ routes { BookingSync::Engine.routes }
5
+
4
6
  describe "GET create" do
5
7
  before do
6
8
  request.env["omniauth.auth"] = OmniAuth.config.mock_auth[:bookingsync]
@@ -8,17 +10,17 @@ RSpec.describe SessionsController, type: :controller do
8
10
 
9
11
  it "loads or creates account from omniauth auth" do
10
12
  expect(Account).to receive(:from_omniauth).and_call_original
11
- get :create, provider: :bookingsync, use_route: 'bookingsync'
13
+ get :create, provider: :bookingsync
12
14
  end
13
15
 
14
16
  it "runs the account_authorized callback" do
15
17
  expect(controller).to receive(:account_authorized)
16
- get :create, provider: :bookingsync, use_route: 'bookingsync'
18
+ get :create, provider: :bookingsync
17
19
  end
18
20
 
19
21
  it "redirects to after_bookingsync_sign_in_path" do
20
22
  expect(controller).to receive(:after_bookingsync_sign_in_path).and_return("/admin")
21
- get :create, provider: :bookingsync, use_route: 'bookingsync'
23
+ get :create, provider: :bookingsync
22
24
  expect(response).to redirect_to("/admin")
23
25
  end
24
26
  end
@@ -26,12 +28,12 @@ RSpec.describe SessionsController, type: :controller do
26
28
  describe "GET destroy" do
27
29
  it "clears authorization" do
28
30
  expect(controller).to receive(:clear_authorization!)
29
- get :destroy, use_route: 'bookingsync'
31
+ get :destroy
30
32
  end
31
33
 
32
34
  it "redirects to after_bookingsync_sign_out_path" do
33
35
  expect(controller).to receive(:after_bookingsync_sign_out_path).and_return("/signed_out")
34
- get :destroy, use_route: 'bookingsync'
36
+ get :destroy
35
37
  expect(response).to redirect_to("/signed_out")
36
38
  end
37
39
  end
@@ -40,7 +42,7 @@ RSpec.describe SessionsController, type: :controller do
40
42
  context "when Engine is embedded" do
41
43
  before { BookingSync::Engine.embedded! }
42
44
  it "clears X-Frame-Options" do
43
- get :failure, use_route: 'bookingsync'
45
+ get :failure
44
46
  expect(response.headers["X-Frame-Options"]).to eql("")
45
47
  end
46
48
  end
@@ -49,7 +51,7 @@ RSpec.describe SessionsController, type: :controller do
49
51
  before { BookingSync::Engine.standalone! }
50
52
 
51
53
  it "leaves X-Frame-Options without change" do
52
- get :failure, use_route: 'bookingsync'
54
+ get :failure
53
55
  expect(response.headers["X-Frame-Options"]).to eql("SAMEORIGIN")
54
56
  end
55
57
  end
Binary file
Binary file
@@ -1,522 +1,1515 @@
1
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
2
-  (0.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
3
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT version FROM "schema_migrations"
1
+  (2.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
4
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.0ms) SELECT version FROM "schema_migrations"
7
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
8
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
9
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
11
+  (0.0ms) select sqlite_version(*)
12
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
13
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.1ms) SELECT version FROM "schema_migrations"
16
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
17
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
18
+  (0.3ms) DROP DATABASE IF EXISTS "db/test"."sqlite3"
19
+ PG::SyntaxError: ERROR: syntax error at or near "."
20
+ LINE 1: DROP DATABASE IF EXISTS "db/test"."sqlite3"
21
+ ^
22
+ : DROP DATABASE IF EXISTS "db/test"."sqlite3"
23
+  (0.2ms) DROP DATABASE IF EXISTS "db/test"
24
+  (243.7ms) CREATE DATABASE "db/test" ENCODING = 'unicode'
25
+  (10.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
26
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
27
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
28
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.7ms) SELECT version FROM "schema_migrations"
30
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
31
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
32
+  (0.2ms) DROP DATABASE IF EXISTS "test"
33
+  (242.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
34
+  (11.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
35
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
36
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
37
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.7ms) SELECT version FROM "schema_migrations"
39
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
40
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
41
+  (104.7ms) DROP DATABASE IF EXISTS "test"
42
+  (242.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
43
+  (6.4ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
44
+  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
45
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
46
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
+  (0.3ms) SELECT version FROM "schema_migrations"
48
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
49
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
50
+  (103.4ms) DROP DATABASE IF EXISTS "test"
51
+  (231.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
52
+  (3.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
53
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
54
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
55
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
56
+  (0.3ms) SELECT version FROM "schema_migrations"
57
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
58
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
59
+  (104.2ms) DROP DATABASE IF EXISTS "test"
60
+  (232.7ms) CREATE DATABASE "test" ENCODING = 'unicode'
61
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
62
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
63
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
64
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (0.3ms) SELECT version FROM "schema_migrations"
66
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
67
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
68
+  (104.4ms) DROP DATABASE IF EXISTS "test"
69
+  (233.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
70
+  (4.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
71
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
72
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
73
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
+  (0.3ms) SELECT version FROM "schema_migrations"
75
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
76
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
77
+  (104.6ms) DROP DATABASE IF EXISTS "test"
78
+  (241.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
79
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
80
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
81
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
82
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
+  (0.3ms) SELECT version FROM "schema_migrations"
84
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
85
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
86
+  (104.1ms) DROP DATABASE IF EXISTS "test"
87
+  (243.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
88
+  (4.7ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
89
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
90
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
91
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
+  (0.2ms) SELECT version FROM "schema_migrations"
93
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
94
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
95
+  (104.2ms) DROP DATABASE IF EXISTS "test"
96
+  (244.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
97
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
98
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
99
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
100
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
101
+  (0.3ms) SELECT version FROM "schema_migrations"
102
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
103
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
104
+  (104.1ms) DROP DATABASE IF EXISTS "test"
105
+  (235.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
106
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
107
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
108
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
109
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
110
+  (0.3ms) SELECT version FROM "schema_migrations"
111
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
112
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
113
+  (104.3ms) DROP DATABASE IF EXISTS "test"
114
+  (234.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
115
+  (4.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
116
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
117
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
118
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
119
+  (0.3ms) SELECT version FROM "schema_migrations"
120
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
121
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
122
+  (105.3ms) DROP DATABASE IF EXISTS "test"
123
+  (242.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
124
+  (4.5ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
125
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
126
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
127
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
128
+  (0.3ms) SELECT version FROM "schema_migrations"
129
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
130
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
131
+  (103.5ms) DROP DATABASE IF EXISTS "test"
132
+  (235.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
133
+  (5.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
134
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
135
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
136
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
137
+  (0.3ms) SELECT version FROM "schema_migrations"
6
138
   (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
7
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
8
-  (3.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
9
-  (2.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
10
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12
-  (0.1ms) SELECT version FROM "schema_migrations"
139
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
140
+  (104.0ms) DROP DATABASE IF EXISTS "test"
141
+  (242.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
142
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
143
+  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
144
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
145
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
146
+  (0.3ms) SELECT version FROM "schema_migrations"
147
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
148
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
149
+  (104.8ms) DROP DATABASE IF EXISTS "test"
150
+  (234.5ms) CREATE DATABASE "test" ENCODING = 'unicode'
151
+  (4.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
152
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
153
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
154
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
+  (0.3ms) SELECT version FROM "schema_migrations"
156
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
157
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
158
+  (105.1ms) DROP DATABASE IF EXISTS "test"
159
+  (236.7ms) CREATE DATABASE "test" ENCODING = 'unicode'
160
+  (3.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
161
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
162
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
163
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
164
+  (0.4ms) SELECT version FROM "schema_migrations"
165
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
166
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
167
+  (104.2ms) DROP DATABASE IF EXISTS "test"
168
+  (243.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
169
+  (4.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
170
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
171
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
172
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
+  (0.4ms) SELECT version FROM "schema_migrations"
13
174
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
175
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
176
+  (104.2ms) DROP DATABASE IF EXISTS "test"
177
+  (235.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
178
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
179
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
180
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
181
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
182
+  (0.3ms) SELECT version FROM "schema_migrations"
183
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
184
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
185
+  (104.4ms) DROP DATABASE IF EXISTS "test"
186
+  (236.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
187
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
188
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
189
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
190
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
191
+  (0.3ms) SELECT version FROM "schema_migrations"
192
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
193
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
194
+  (105.3ms) DROP DATABASE IF EXISTS "test"
195
+  (233.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
196
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
197
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
198
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
199
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
200
+  (0.3ms) SELECT version FROM "schema_migrations"
201
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
202
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
203
+  (103.8ms) DROP DATABASE IF EXISTS "test"
204
+  (236.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
205
+  (4.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
206
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
207
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
208
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
209
+  (0.3ms) SELECT version FROM "schema_migrations"
210
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
211
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
212
+  (103.9ms) DROP DATABASE IF EXISTS "test"
213
+  (236.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
214
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
215
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
216
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
217
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
218
+  (0.2ms) SELECT version FROM "schema_migrations"
219
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
220
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
221
+  (103.7ms) DROP DATABASE IF EXISTS "test"
222
+  (235.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
223
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
224
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
225
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
226
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+  (0.2ms) SELECT version FROM "schema_migrations"
228
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
229
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
230
+  (104.0ms) DROP DATABASE IF EXISTS "test"
231
+  (234.9ms) CREATE DATABASE "test" ENCODING = 'unicode'
232
+  (3.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
233
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
234
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
235
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
+  (0.2ms) SELECT version FROM "schema_migrations"
237
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
238
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
239
+  (103.9ms) DROP DATABASE IF EXISTS "test"
240
+  (235.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
241
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
242
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
243
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
244
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
245
+  (0.3ms) SELECT version FROM "schema_migrations"
246
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
247
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
248
+  (103.4ms) DROP DATABASE IF EXISTS "test"
249
+  (238.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
250
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
251
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
252
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
253
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
254
+  (0.2ms) SELECT version FROM "schema_migrations"
255
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
256
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
257
+  (104.6ms) DROP DATABASE IF EXISTS "test"
258
+  (235.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
259
+  (3.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
260
+  (1.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
261
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
262
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
263
+  (0.3ms) SELECT version FROM "schema_migrations"
264
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
265
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
266
+  (103.6ms) DROP DATABASE IF EXISTS "test"
267
+  (235.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
268
+  (4.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
269
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
270
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
271
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
272
+  (0.3ms) SELECT version FROM "schema_migrations"
273
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
274
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
275
+  (104.5ms) DROP DATABASE IF EXISTS "test"
276
+  (234.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
277
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
278
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
279
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
280
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
281
+  (0.3ms) SELECT version FROM "schema_migrations"
282
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
283
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
284
+  (105.3ms) DROP DATABASE IF EXISTS "test"
285
+  (242.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
286
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
287
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
288
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
289
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
290
+  (0.3ms) SELECT version FROM "schema_migrations"
291
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
292
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
293
+  (103.8ms) DROP DATABASE IF EXISTS "test"
294
+  (234.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
295
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
296
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
297
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
298
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
299
+  (0.2ms) SELECT version FROM "schema_migrations"
300
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
301
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
302
+  (104.6ms) DROP DATABASE IF EXISTS "test"
303
+  (242.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
304
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
305
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
306
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
307
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
308
+  (0.3ms) SELECT version FROM "schema_migrations"
309
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
310
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
311
+  (104.3ms) DROP DATABASE IF EXISTS "test"
312
+  (232.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
313
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
314
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
315
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
316
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
317
+  (0.3ms) SELECT version FROM "schema_migrations"
318
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
319
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
320
+  (103.5ms) DROP DATABASE IF EXISTS "test"
321
+  (244.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
322
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
323
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
324
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
325
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
+  (0.2ms) SELECT version FROM "schema_migrations"
327
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
328
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
329
+  (105.2ms) DROP DATABASE IF EXISTS "test"
330
+  (236.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
331
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
332
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
333
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
334
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
335
+  (0.3ms) SELECT version FROM "schema_migrations"
336
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
337
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
338
+  (103.9ms) DROP DATABASE IF EXISTS "test"
339
+  (236.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
340
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
341
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
342
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
343
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
344
+  (0.2ms) SELECT version FROM "schema_migrations"
345
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
346
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
347
+  (104.0ms) DROP DATABASE IF EXISTS "test"
348
+  (234.9ms) CREATE DATABASE "test" ENCODING = 'unicode'
349
+  (4.7ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
350
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
351
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
352
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
353
+  (0.3ms) SELECT version FROM "schema_migrations"
354
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
14
355
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
15
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
16
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
17
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
18
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
-  (0.1ms) SELECT version FROM "schema_migrations"
356
+  (103.2ms) DROP DATABASE IF EXISTS "test"
357
+  (237.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
358
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
359
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
360
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
361
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
362
+  (0.3ms) SELECT version FROM "schema_migrations"
363
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
364
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
365
+  (103.3ms) DROP DATABASE IF EXISTS "test"
366
+  (242.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
367
+  (4.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
368
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
369
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
370
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
371
+  (0.3ms) SELECT version FROM "schema_migrations"
372
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
373
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
374
+  (104.7ms) DROP DATABASE IF EXISTS "test"
375
+  (235.9ms) CREATE DATABASE "test" ENCODING = 'unicode'
376
+  (3.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
377
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
378
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
379
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
380
+  (0.2ms) SELECT version FROM "schema_migrations"
381
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
382
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
383
+  (103.4ms) DROP DATABASE IF EXISTS "test"
384
+  (236.5ms) CREATE DATABASE "test" ENCODING = 'unicode'
385
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
386
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
387
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
388
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
389
+  (0.3ms) SELECT version FROM "schema_migrations"
390
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
391
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
392
+  (104.5ms) DROP DATABASE IF EXISTS "test"
393
+  (236.9ms) CREATE DATABASE "test" ENCODING = 'unicode'
394
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
395
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
396
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
397
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
398
+  (0.3ms) SELECT version FROM "schema_migrations"
399
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
400
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
401
+  (104.2ms) DROP DATABASE IF EXISTS "test"
402
+  (237.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
403
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
404
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
405
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
406
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
407
+  (0.3ms) SELECT version FROM "schema_migrations"
408
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
409
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
410
+  (104.6ms) DROP DATABASE IF EXISTS "test"
411
+  (235.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
412
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
413
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
414
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
415
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
+  (0.3ms) SELECT version FROM "schema_migrations"
417
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
418
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
419
+  (104.3ms) DROP DATABASE IF EXISTS "test"
420
+  (235.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
421
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
422
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
423
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
424
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
425
+  (0.3ms) SELECT version FROM "schema_migrations"
426
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
427
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
428
+  (104.5ms) DROP DATABASE IF EXISTS "test"
429
+  (241.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
430
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
431
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
432
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
433
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
434
+  (0.3ms) SELECT version FROM "schema_migrations"
435
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
436
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
437
+  (104.5ms) DROP DATABASE IF EXISTS "test"
438
+  (237.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
439
+  (4.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
440
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
441
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
442
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
443
+  (0.3ms) SELECT version FROM "schema_migrations"
444
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
445
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
446
+  (104.6ms) DROP DATABASE IF EXISTS "test"
447
+  (242.7ms) CREATE DATABASE "test" ENCODING = 'unicode'
448
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
449
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
450
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
451
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
452
+  (0.3ms) SELECT version FROM "schema_migrations"
453
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
454
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
455
+  (104.4ms) DROP DATABASE IF EXISTS "test"
456
+  (240.9ms) CREATE DATABASE "test" ENCODING = 'unicode'
457
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
458
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
459
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
460
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
461
+  (0.3ms) SELECT version FROM "schema_migrations"
462
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
463
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
464
+  (104.3ms) DROP DATABASE IF EXISTS "test"
465
+  (243.5ms) CREATE DATABASE "test" ENCODING = 'unicode'
466
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
467
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
468
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
469
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
470
+  (0.2ms) SELECT version FROM "schema_migrations"
471
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
472
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
473
+  (104.6ms) DROP DATABASE IF EXISTS "test"
474
+  (236.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
475
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
476
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
477
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
478
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
479
+  (0.3ms) SELECT version FROM "schema_migrations"
480
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
481
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
482
+  (104.1ms) DROP DATABASE IF EXISTS "test"
483
+  (235.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
484
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
485
+  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
486
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
487
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
488
+  (0.3ms) SELECT version FROM "schema_migrations"
489
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
490
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
491
+  (104.5ms) DROP DATABASE IF EXISTS "test"
492
+  (235.1ms) CREATE DATABASE "test" ENCODING = 'unicode'
493
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
494
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
495
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
496
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
497
+  (0.4ms) SELECT version FROM "schema_migrations"
498
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
499
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
500
+  (104.7ms) DROP DATABASE IF EXISTS "test"
501
+  (242.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
502
+  (4.4ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
503
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
504
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
505
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
+  (0.3ms) SELECT version FROM "schema_migrations"
507
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
508
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
509
+  (103.7ms) DROP DATABASE IF EXISTS "test"
510
+  (234.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
511
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
512
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
513
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
514
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
515
+  (0.3ms) SELECT version FROM "schema_migrations"
516
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
517
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
518
+  (104.4ms) DROP DATABASE IF EXISTS "test"
519
+  (242.7ms) CREATE DATABASE "test" ENCODING = 'unicode'
520
+  (4.5ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
521
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
522
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
523
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
524
+  (0.3ms) SELECT version FROM "schema_migrations"
525
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
526
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
527
+  (103.7ms) DROP DATABASE IF EXISTS "test"
528
+  (236.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
529
+  (4.5ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
530
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
531
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
532
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
533
+  (0.3ms) SELECT version FROM "schema_migrations"
534
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
535
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
536
+  (104.1ms) DROP DATABASE IF EXISTS "test"
537
+  (233.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
538
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
539
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
540
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
541
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
542
+  (0.3ms) SELECT version FROM "schema_migrations"
543
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
544
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
545
+  (104.1ms) DROP DATABASE IF EXISTS "test"
546
+  (242.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
547
+  (4.8ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
548
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
549
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
550
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
551
+  (0.3ms) SELECT version FROM "schema_migrations"
552
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
553
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
554
+  (105.0ms) DROP DATABASE IF EXISTS "test"
555
+  (233.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
556
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
557
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
558
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
559
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
560
+  (0.3ms) SELECT version FROM "schema_migrations"
561
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
562
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
563
+  (103.8ms) DROP DATABASE IF EXISTS "test"
564
+  (239.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
565
+  (4.4ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
566
+  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
567
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
568
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
569
+  (0.4ms) SELECT version FROM "schema_migrations"
570
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
571
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
572
+  (103.9ms) DROP DATABASE IF EXISTS "test"
573
+  (238.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
574
+  (3.7ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
575
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
576
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
577
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
578
+  (0.3ms) SELECT version FROM "schema_migrations"
579
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
580
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
581
+  (104.3ms) DROP DATABASE IF EXISTS "test"
582
+  (243.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
583
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
584
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
585
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
586
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
587
+  (0.3ms) SELECT version FROM "schema_migrations"
588
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
589
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
590
+  (103.7ms) DROP DATABASE IF EXISTS "test"
591
+  (244.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
592
+  (4.8ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
593
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
594
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
595
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
596
+  (0.3ms) SELECT version FROM "schema_migrations"
597
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
598
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
599
+  (104.2ms) DROP DATABASE IF EXISTS "test"
600
+  (233.5ms) CREATE DATABASE "test" ENCODING = 'unicode'
601
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
602
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
603
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
604
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
605
+  (0.3ms) SELECT version FROM "schema_migrations"
20
606
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
21
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
22
-  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
23
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
24
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
25
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
-  (0.1ms) SELECT version FROM "schema_migrations"
27
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
28
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
29
-  (2.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
30
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
31
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
32
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
-  (0.1ms) SELECT version FROM "schema_migrations"
34
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
35
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
36
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
37
-  (0.1ms) select sqlite_version(*)
38
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
39
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
40
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
-  (0.1ms) SELECT version FROM "schema_migrations"
42
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
43
-  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
44
-  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
45
-  (0.1ms) select sqlite_version(*)
46
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
47
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
48
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
49
-  (0.1ms) SELECT version FROM "schema_migrations"
50
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
51
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
52
-  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
53
-  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
54
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
55
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
56
-  (0.1ms) SELECT version FROM "schema_migrations"
57
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
607
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
608
+  (104.5ms) DROP DATABASE IF EXISTS "test"
609
+  (243.4ms) CREATE DATABASE "test" ENCODING = 'unicode'
610
+  (4.0ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
611
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
612
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
613
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
614
+  (0.3ms) SELECT version FROM "schema_migrations"
615
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
616
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
617
+  (103.7ms) DROP DATABASE IF EXISTS "test"
618
+  (243.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
619
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
620
+  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
621
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
622
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
623
+  (0.3ms) SELECT version FROM "schema_migrations"
624
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
625
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
626
+  (104.3ms) DROP DATABASE IF EXISTS "test"
627
+  (235.5ms) CREATE DATABASE "test" ENCODING = 'unicode'
628
+  (3.7ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
629
+  (2.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
630
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
631
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
632
+  (0.3ms) SELECT version FROM "schema_migrations"
633
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
58
634
   (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
59
-  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
60
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
61
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
62
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
63
-  (0.1ms) SELECT version FROM "schema_migrations"
635
+  (104.5ms) DROP DATABASE IF EXISTS "test"
636
+  (242.1ms) CREATE DATABASE "test" ENCODING = 'unicode'
637
+  (4.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
638
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
639
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
640
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
641
+  (0.3ms) SELECT version FROM "schema_migrations"
642
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
643
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
644
+  (104.4ms) DROP DATABASE IF EXISTS "test"
645
+  (232.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
646
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
647
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
648
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
649
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
650
+  (0.3ms) SELECT version FROM "schema_migrations"
651
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
652
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
653
+  (104.9ms) DROP DATABASE IF EXISTS "test"
654
+  (234.8ms) CREATE DATABASE "test" ENCODING = 'unicode'
655
+  (4.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
656
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
657
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
658
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
659
+  (0.3ms) SELECT version FROM "schema_migrations"
64
660
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
65
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
661
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
662
+  (103.7ms) DROP DATABASE IF EXISTS "test"
663
+  (237.2ms) CREATE DATABASE "test" ENCODING = 'unicode'
664
+  (4.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
665
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
666
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
667
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
668
+  (0.3ms) SELECT version FROM "schema_migrations"
669
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
670
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
671
+  (104.8ms) DROP DATABASE IF EXISTS "test"
672
+  (239.7ms) CREATE DATABASE "test" ENCODING = 'unicode'
673
+  (4.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "uid" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
674
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
675
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
676
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
677
+  (0.3ms) SELECT version FROM "schema_migrations"
678
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
679
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
66
680
   (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
67
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
68
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
69
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
70
-  (0.1ms) SELECT version FROM "schema_migrations"
71
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
72
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
73
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
74
681
   (0.1ms) select sqlite_version(*)
75
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
76
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
77
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
78
-  (0.1ms) SELECT version FROM "schema_migrations"
79
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
80
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
81
-  (2.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
82
-  (0.1ms) select sqlite_version(*)
83
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
84
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
85
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86
-  (0.1ms) SELECT version FROM "schema_migrations"
87
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
88
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
89
-  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
90
-  (0.1ms) select sqlite_version(*)
91
-  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
92
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
93
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
94
-  (0.1ms) SELECT version FROM "schema_migrations"
95
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
96
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
97
-  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
682
+  (1.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
683
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
684
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
685
+  (0.0ms) SELECT version FROM "schema_migrations"
686
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
687
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
688
+  (2.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
98
689
   (0.1ms) select sqlite_version(*)
99
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
100
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
101
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
102
-  (0.1ms) SELECT version FROM "schema_migrations"
103
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
690
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
691
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
692
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
693
+  (0.0ms) SELECT version FROM "schema_migrations"
694
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
104
695
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
105
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
696
+  (2.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
106
697
   (0.1ms) select sqlite_version(*)
107
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
108
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
109
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
110
-  (0.1ms) SELECT version FROM "schema_migrations"
111
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
112
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
698
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
699
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
700
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
701
+  (0.0ms) SELECT version FROM "schema_migrations"
702
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
703
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
113
704
   (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
114
705
   (0.1ms) select sqlite_version(*)
115
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
116
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
117
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
118
-  (0.1ms) SELECT version FROM "schema_migrations"
119
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
120
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
121
-  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
122
-  (0.1ms) select sqlite_version(*)
123
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
124
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
125
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
126
-  (0.1ms) SELECT version FROM "schema_migrations"
127
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
128
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
129
-  (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
130
-  (0.1ms) select sqlite_version(*)
131
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
132
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
133
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
134
-  (0.1ms) SELECT version FROM "schema_migrations"
135
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
136
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
137
-  (2.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
138
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
139
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
140
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
141
-  (0.1ms) SELECT version FROM "schema_migrations"
142
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
143
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
144
-  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
706
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
707
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
708
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
709
+  (0.0ms) SELECT version FROM "schema_migrations"
710
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
711
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
712
+  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
145
713
   (0.1ms) select sqlite_version(*)
146
-  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
147
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
148
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
714
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
715
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
716
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
149
717
   (0.1ms) SELECT version FROM "schema_migrations"
150
718
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
151
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
152
-  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
719
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
720
+  (2.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
153
721
   (0.1ms) select sqlite_version(*)
154
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
155
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
156
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
722
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
723
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
724
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
157
725
   (0.1ms) SELECT version FROM "schema_migrations"
158
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
159
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
160
-  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
726
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
727
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
728
+  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
161
729
   (0.1ms) select sqlite_version(*)
162
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
163
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
164
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
-  (0.1ms) SELECT version FROM "schema_migrations"
166
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
167
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
730
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
731
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
732
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
733
+  (0.0ms) SELECT version FROM "schema_migrations"
734
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
735
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
168
736
   (2.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
169
737
   (0.1ms) select sqlite_version(*)
170
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
171
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
172
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
-  (0.1ms) SELECT version FROM "schema_migrations"
174
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
175
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
738
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
739
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
740
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
741
+  (0.0ms) SELECT version FROM "schema_migrations"
742
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
743
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
176
744
   (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
177
-  (0.2ms) select sqlite_version(*)
178
-  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
179
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
180
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
745
+  (0.1ms) select sqlite_version(*)
746
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
747
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
748
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
749
+  (0.0ms) SELECT version FROM "schema_migrations"
750
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
751
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
752
+  (2.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
753
+  (0.1ms) select sqlite_version(*)
754
+  (2.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
755
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
756
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
181
757
   (0.1ms) SELECT version FROM "schema_migrations"
182
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
183
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
184
-  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
758
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
759
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
760
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
761
+  (2.2ms) DROP TABLE "accounts"
762
+  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255))
763
+  (0.1ms) select sqlite_version(*)
764
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
765
+  (0.1ms) SELECT version FROM "schema_migrations"
766
+  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255))
767
+  (0.0ms) select sqlite_version(*)
768
+  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
769
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
770
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
771
+  (0.0ms) SELECT version FROM "schema_migrations"
772
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
773
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
774
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
775
+  (1.7ms) DROP TABLE "accounts"
776
+  (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)
777
+  (0.1ms) select sqlite_version(*)
778
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
779
+  (0.1ms) SELECT version FROM "schema_migrations"
780
+  (1.7ms) DROP TABLE "accounts"
781
+  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
185
782
   (0.1ms) select sqlite_version(*)
186
783
   (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
187
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
188
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
189
784
   (0.1ms) SELECT version FROM "schema_migrations"
190
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
191
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
192
-  (0.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
785
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
786
+ Account Load (0.8ms) SELECT "accounts".* FROM "accounts"
787
+  (0.0ms) begin transaction
788
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
789
+ SQL (0.2ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-02 20:56:14.054320"], ["updated_at", "2015-04-02 20:56:14.054320"]]
790
+  (3.1ms) commit transaction
791
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
792
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
793
+  (0.0ms) begin transaction
794
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
795
+ SQL (0.1ms) UPDATE "accounts" SET "name" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["name", "tttt"], ["updated_at", "2015-04-02 20:56:44.860816"]]
796
+  (1.6ms) commit transaction
797
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
798
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
799
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
800
+  (0.0ms) begin transaction
801
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
802
+ SQL (0.1ms) UPDATE "accounts" SET "name" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["name", "ddd"], ["updated_at", "2015-04-02 20:58:14.556383"]]
803
+  (2.2ms) commit transaction
804
+  (105.7ms) DROP DATABASE IF EXISTS "test"
805
+  (239.0ms) CREATE DATABASE "test" ENCODING = 'unicode'
806
+  (3.9ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
807
+  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
808
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
809
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
810
+  (0.3ms) SELECT version FROM "schema_migrations"
811
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
812
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
813
+  (104.9ms) DROP DATABASE IF EXISTS "test"
814
+  (236.6ms) CREATE DATABASE "test" ENCODING = 'unicode'
815
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
816
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
817
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
818
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
819
+  (0.3ms) SELECT version FROM "schema_migrations"
820
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
821
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
822
+  (2.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
193
823
   (0.1ms) select sqlite_version(*)
194
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
195
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
196
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
197
-  (0.1ms) SELECT version FROM "schema_migrations"
198
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
199
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
824
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
825
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
826
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
827
+  (0.0ms) SELECT version FROM "schema_migrations"
828
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
829
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
830
+ Account Load (0.9ms) SELECT "accounts".* FROM "accounts"
831
+ SQLite3::SQLException: no such table: accounts: SELECT "accounts".* FROM "accounts"
832
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
833
+  (0.0ms) select sqlite_version(*)
834
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
836
+ Migrating to CreateAccounts (20140522110326)
837
+  (0.0ms) begin transaction
838
+  (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
839
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
840
+  (1.2ms) commit transaction
841
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
842
+  (0.0ms) begin transaction
843
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
844
+  (0.1ms) ALTER TABLE "accounts" ADD "uid" integer
845
+  (0.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
846
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
847
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
848
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
849
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
850
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
851
+  (1.5ms) commit transaction
852
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
853
+  (0.1ms) SELECT sql
854
+ FROM sqlite_master
855
+ WHERE name='index_accounts_on_uid' AND type='index'
856
+ UNION ALL
857
+ SELECT sql
858
+ FROM sqlite_temp_master
859
+ WHERE name='index_accounts_on_uid' AND type='index'
860
+
861
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts"
862
+  (0.1ms) begin transaction
863
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
864
+ SQL (0.1ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-03 10:10:48.162209"], ["updated_at", "2015-04-03 10:10:48.162209"]]
865
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
866
+  (3.1ms) commit transaction
867
+  (0.0ms) begin transaction
868
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
869
+ SQL (0.1ms) UPDATE "accounts" SET "name" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["name", "tttt"], ["updated_at", "2015-04-03 10:10:48.168051"]]
870
+  (2.3ms) commit transaction
871
+ Account Load (0.7ms) SELECT "accounts".* FROM "accounts"
872
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
873
+  (0.0ms) begin transaction
874
+ SQL (0.2ms) DELETE FROM "accounts" WHERE "accounts"."id" = ? [["id", 1]]
875
+  (2.1ms) commit transaction
876
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
877
+  (0.1ms) begin transaction
878
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
879
+ SQL (0.2ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-03 10:11:30.805930"], ["updated_at", "2015-04-03 10:11:30.805930"]]
880
+  (1.7ms) commit transaction
881
+  (0.1ms) begin transaction
882
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
883
+  (0.0ms) begin transaction
884
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
885
+ SQL (0.1ms) UPDATE "accounts" SET "name" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["name", "ddd"], ["updated_at", "2015-04-03 10:11:55.091080"]]
886
+  (2.4ms) commit transaction
887
+  (0.0ms) commit transaction
888
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
889
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
890
+  (0.0ms) select sqlite_version(*)
891
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
892
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
893
+ Migrating to CreateAccounts (20140522110326)
894
+  (0.0ms) begin transaction
895
+  (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
896
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
897
+  (1.3ms) commit transaction
898
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
899
+  (0.0ms) begin transaction
900
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
901
+  (0.1ms) ALTER TABLE "accounts" ADD "uid" integer
902
+  (0.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
903
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
904
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
905
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
906
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
907
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
908
+  (1.4ms) commit transaction
909
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
910
+  (0.1ms) SELECT sql
911
+ FROM sqlite_master
912
+ WHERE name='index_accounts_on_uid' AND type='index'
913
+ UNION ALL
914
+ SELECT sql
915
+ FROM sqlite_temp_master
916
+ WHERE name='index_accounts_on_uid' AND type='index'
917
+
918
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
919
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
920
+  (0.1ms)  SELECT sql
921
+ FROM sqlite_master
922
+ WHERE name='index_accounts_on_uid' AND type='index'
923
+ UNION ALL
924
+ SELECT sql
925
+ FROM sqlite_temp_master
926
+ WHERE name='index_accounts_on_uid' AND type='index'
927
+ 
928
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
929
+  (0.0ms) select sqlite_version(*)
930
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
931
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
932
+ Migrating to CreateAccounts (20140522110326)
933
+  (0.0ms) begin transaction
934
+  (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
935
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
936
+  (1.3ms) commit transaction
937
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
938
+  (0.0ms) begin transaction
939
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
940
+  (0.1ms) ALTER TABLE "accounts" ADD "uid" integer
941
+  (0.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
942
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
943
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
944
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
945
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
946
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
947
+  (1.1ms) commit transaction
948
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
949
+  (0.1ms) SELECT sql
950
+ FROM sqlite_master
951
+ WHERE name='index_accounts_on_uid' AND type='index'
952
+ UNION ALL
953
+ SELECT sql
954
+ FROM sqlite_temp_master
955
+ WHERE name='index_accounts_on_uid' AND type='index'
956
+
200
957
   (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
201
958
   (0.1ms) select sqlite_version(*)
202
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
203
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
204
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
205
-  (0.1ms) SELECT version FROM "schema_migrations"
959
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
960
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
961
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
962
+  (0.0ms) SELECT version FROM "schema_migrations"
206
963
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
207
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
208
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
209
-  (0.1ms) select sqlite_version(*)
210
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
211
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
212
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
213
-  (0.1ms) SELECT version FROM "schema_migrations"
214
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
215
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
216
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
964
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
965
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
966
+  (0.0ms) select sqlite_version(*)
967
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
968
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
969
+ Migrating to CreateAccounts (20140522110326)
970
+  (0.0ms) begin transaction
971
+  (0.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
972
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
973
+  (1.4ms) commit transaction
974
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
975
+  (0.0ms) begin transaction
976
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
977
+  (0.1ms) ALTER TABLE "accounts" ADD "uid" integer
978
+  (0.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
979
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
980
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
981
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
982
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
983
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
984
+  (1.4ms) commit transaction
985
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
986
+  (0.1ms) SELECT sql
987
+ FROM sqlite_master
988
+ WHERE name='index_accounts_on_uid' AND type='index'
989
+ UNION ALL
990
+ SELECT sql
991
+ FROM sqlite_temp_master
992
+ WHERE name='index_accounts_on_uid' AND type='index'
993
+
994
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
995
+  (0.0ms) select sqlite_version(*)
996
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
997
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
998
+ Migrating to CreateAccounts (20140522110326)
999
+  (0.0ms) begin transaction
1000
+  (0.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
1001
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
1002
+  (1.3ms) commit transaction
1003
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
1004
+  (0.0ms) begin transaction
1005
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
1006
+  (0.1ms) ALTER TABLE "accounts" ADD "uid" integer
1007
+  (0.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1008
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
1009
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
1010
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
1011
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
1012
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
1013
+  (1.4ms) commit transaction
1014
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1015
+  (0.1ms) SELECT sql
1016
+ FROM sqlite_master
1017
+ WHERE name='index_accounts_on_uid' AND type='index'
1018
+ UNION ALL
1019
+ SELECT sql
1020
+ FROM sqlite_temp_master
1021
+ WHERE name='index_accounts_on_uid' AND type='index'
1022
+
1023
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts"
1024
+  (0.0ms) begin transaction
1025
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1026
+ SQL (0.2ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-07 13:51:09.166447"], ["updated_at", "2015-04-07 13:51:09.166447"]]
1027
+  (2.6ms) commit transaction
1028
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1029
+  (0.1ms) begin transaction
1030
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1031
+  (0.0ms) rollback transaction
1032
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1033
+  (0.1ms) begin transaction
1034
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1035
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1036
+  (0.0ms) begin transaction
1037
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1038
+ SQL (0.3ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["provider", "ggg"], ["updated_at", "2015-04-07 13:53:15.028550"]]
1039
+  (0.1ms) commit transaction
1040
+ SQLite3::BusyException: database is locked: commit transaction
1041
+  (0.1ms) rollback transaction
1042
+  (0.0ms) rollback transaction
1043
+  (0.2ms) begin transaction
1044
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1045
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1046
+  (0.0ms) begin transaction
1047
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1048
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["provider", "ggg"], ["updated_at", "2015-04-07 13:54:06.968798"]]
1049
+  (0.1ms) commit transaction
1050
+ SQLite3::BusyException: database is locked: commit transaction
1051
+  (0.1ms) rollback transaction
1052
+  (0.0ms) rollback transaction
1053
+  (0.2ms) begin transaction
1054
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1055
+  (0.0ms) begin transaction
1056
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1057
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["provider", "ggg"], ["updated_at", "2015-04-07 13:54:18.775284"]]
1058
+  (2.1ms) commit transaction
1059
+  (0.0ms) commit transaction
1060
+  (0.2ms) begin transaction
1061
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1062
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1063
+  (0.0ms) begin transaction
1064
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1065
+  (0.0ms) commit transaction
1066
+  (0.0ms) commit transaction
1067
+  (0.2ms) begin transaction
1068
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1069
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1070
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1071
+  (0.1ms) begin transaction
1072
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1073
+  (0.0ms) commit transaction
1074
+  (0.0ms) commit transaction
1075
+  (0.2ms) begin transaction
1076
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1077
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1078
+  (0.0ms) begin transaction
1079
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1080
+  (0.0ms) commit transaction
1081
+  (0.1ms) commit transaction
1082
+  (0.2ms) begin transaction
1083
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1084
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1085
+  (0.0ms) begin transaction
1086
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1087
+  (0.0ms) commit transaction
1088
+  (0.0ms) commit transaction
1089
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1090
+  (0.1ms) begin transaction
1091
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1092
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1093
+  (0.0ms) begin transaction
1094
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1095
+  (0.0ms) commit transaction
1096
+  (0.0ms) commit transaction
1097
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1098
+  (0.2ms) begin transaction
1099
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1100
+  (0.0ms) rollback transaction
1101
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1102
+  (0.1ms) begin transaction
1103
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1104
+  (0.0ms) rollback transaction
1105
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1106
+  (0.0ms) begin transaction
1107
+ SQL (0.2ms) DELETE FROM "accounts" WHERE "accounts"."id" = ? [["id", 1]]
1108
+  (1.7ms) commit transaction
1109
+  (0.2ms) begin transaction
1110
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1111
+ SQL (0.2ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-07 13:56:59.589012"], ["updated_at", "2015-04-07 13:56:59.589012"]]
1112
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1113
+  (0.1ms) rollback transaction
1114
+  (0.2ms) begin transaction
1115
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1116
+ SQL (0.2ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-07 13:57:17.125068"], ["updated_at", "2015-04-07 13:57:17.125068"]]
1117
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1118
+  (0.1ms) rollback transaction
1119
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1120
+  (0.1ms) begin transaction
1121
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1122
+ SQL (0.1ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-07 13:57:28.945065"], ["updated_at", "2015-04-07 13:57:28.945065"]]
1123
+  (2.4ms) commit transaction
1124
+  (0.2ms) begin transaction
1125
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1126
+  (0.1ms) rollback transaction
1127
+  (0.2ms) begin transaction
1128
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1129
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1130
+  (0.0ms) begin transaction
1131
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1132
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 13:57:51.867328"]]
1133
+  (0.1ms) commit transaction
1134
+ SQLite3::BusyException: database is locked: commit transaction
1135
+  (0.1ms) rollback transaction
1136
+  (0.0ms) rollback transaction
1137
+  (0.2ms) begin transaction
1138
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1139
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1140
+  (0.1ms) begin transaction
1141
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1142
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 13:58:29.641919"]]
1143
+  (0.1ms) commit transaction
1144
+ SQLite3::BusyException: database is locked: commit transaction
1145
+  (0.1ms) rollback transaction
1146
+  (0.0ms) rollback transaction
1147
+  (0.2ms) begin transaction
1148
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1149
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1150
+  (0.0ms) begin transaction
1151
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1152
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 14:01:00.722499"]]
1153
+  (10050.4ms) commit transaction
1154
+ SQLite3::BusyException: database is locked: commit transaction
1155
+  (0.2ms) rollback transaction
1156
+  (0.0ms) rollback transaction
1157
+ Account Load (0.7ms) SELECT "accounts".* FROM "accounts"
1158
+  (0.1ms) begin transaction
1159
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1160
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1161
+  (0.0ms) begin transaction
1162
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1163
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 14:03:02.299326"]]
1164
+  (10043.6ms) commit transaction
1165
+ SQLite3::BusyException: database is locked: commit transaction
1166
+  (0.1ms) rollback transaction
1167
+  (0.1ms) rollback transaction
1168
+  (0.2ms) begin transaction
1169
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1170
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1171
+  (0.0ms) begin transaction
1172
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1173
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 14:03:50.827221"]]
1174
+  (0.1ms) commit transaction
1175
+ SQLite3::BusyException: database is locked: commit transaction
1176
+  (0.1ms) rollback transaction
1177
+  (0.0ms) rollback transaction
1178
+  (0.2ms) begin transaction
1179
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1180
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1181
+  (0.1ms) begin transaction
1182
+ Account Exists (1.4ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 2) LIMIT 1
1183
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = ?, "updated_at" = ? WHERE "accounts"."id" = 2 [["provider", "ggg"], ["updated_at", "2015-04-07 14:04:08.378838"]]
1184
+  (0.1ms) commit transaction
1185
+ SQLite3::BusyException: database is locked: commit transaction
1186
+  (0.1ms) rollback transaction
1187
+  (0.0ms) rollback transaction
1188
+  (106.8ms) DROP DATABASE IF EXISTS "test"
1189
+  (236.3ms) CREATE DATABASE "test" ENCODING = 'unicode'
1190
+  (5.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "uid" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) 
1191
+  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1192
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
1193
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1194
+  (0.3ms) SELECT version FROM "schema_migrations"
1195
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1196
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1197
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
1198
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1199
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1200
+ Migrating to CreateAccounts (20140522110326)
1201
+  (0.2ms) BEGIN
1202
+  (1.6ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp) 
1203
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140522110326"]]
1204
+  (0.4ms) COMMIT
1205
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
1206
+  (0.2ms) BEGIN
1207
+  (0.3ms) ALTER TABLE "accounts" ADD COLUMN "provider" character varying(255)
1208
+  (0.2ms) ALTER TABLE "accounts" ADD COLUMN "uid" integer
1209
+  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1210
+  (2.3ms) ALTER TABLE "accounts" ADD COLUMN "name" character varying(255)
1211
+  (0.2ms) ALTER TABLE "accounts" ADD COLUMN "oauth_access_token" character varying(255)
1212
+  (0.3ms) ALTER TABLE "accounts" ADD COLUMN "oauth_refresh_token" character varying(255)
1213
+  (0.2ms) ALTER TABLE "accounts" ADD COLUMN "oauth_expires_at" character varying(255)
1214
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140522110454"]]
1215
+  (0.5ms) COMMIT
1216
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1217
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1218
+  (0.3ms) BEGIN
1219
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1220
+ SQL (0.4ms) INSERT INTO "accounts" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2015-04-07 15:39:16.792033"], ["updated_at", "2015-04-07 15:39:16.792033"]]
1221
+  (0.7ms) COMMIT
1222
+  (0.1ms) BEGIN
1223
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1224
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1225
+  (0.2ms) BEGIN
1226
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1227
+ SQL (0.9ms) UPDATE "accounts" SET "provider" = $1, "updated_at" = $2 WHERE "accounts"."id" = 1 [["provider", "ggg"], ["updated_at", "2015-04-07 15:39:23.590734"]]
1228
+  (0.4ms) COMMIT
1229
+  (0.1ms) COMMIT
1230
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts"
1231
+  (0.2ms) BEGIN
1232
+ Account Exists (0.8ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1233
+  (0.2ms) ROLLBACK
1234
+  (0.2ms) BEGIN
1235
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1236
+  (0.2ms) ROLLBACK
1237
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts"
1238
+  (0.1ms) BEGIN
1239
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1240
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1241
+  (0.2ms) BEGIN
1242
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1243
+ SQL (0.3ms) UPDATE "accounts" SET "provider" = $1, "updated_at" = $2 WHERE "accounts"."id" = 1 [["provider", "jjj"], ["updated_at", "2015-04-07 15:40:30.543862"]]
1244
+  (0.4ms) COMMIT
1245
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1246
+  (0.2ms) ROLLBACK
1247
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts"
1248
+  (0.2ms) BEGIN
1249
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" = 1 LIMIT 1
1250
+ SQL (0.3ms) INSERT INTO "accounts" ("created_at", "uid", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-04-07 15:40:57.507338"], ["uid", 1], ["updated_at", "2015-04-07 15:40:57.507338"]]
1251
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1252
+  (0.5ms) BEGIN
1253
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1254
+  (0.2ms) COMMIT
1255
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1256
+  (0.3ms) ROLLBACK
1257
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts"
1258
+  (0.2ms) BEGIN
1259
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" = 1 LIMIT 1
1260
+ SQL (1.5ms) INSERT INTO "accounts" ("created_at", "uid", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-04-07 15:41:15.386947"], ["uid", 1], ["updated_at", "2015-04-07 15:41:15.386947"]]
1261
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1262
+  (0.2ms) BEGIN
1263
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1264
+ SQL (0.3ms) UPDATE "accounts" SET "provider" = $1, "updated_at" = $2 WHERE "accounts"."id" = 1 [["provider", "ttt"], ["updated_at", "2015-04-07 15:41:15.398840"]]
1265
+  (0.5ms) COMMIT
1266
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" IS NULL LIMIT 1
1267
+  (0.2ms) ROLLBACK
1268
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts"
1269
+  (0.1ms) BEGIN
1270
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" = 1 LIMIT 1
1271
+ SQL (0.3ms) INSERT INTO "accounts" ("created_at", "uid", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", "2015-04-07 15:41:28.681702"], ["uid", 1], ["updated_at", "2015-04-07 15:41:28.681702"]]
1272
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1273
+  (0.2ms) BEGIN
1274
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" IS NULL AND "accounts"."id" != 1) LIMIT 1
1275
+  (0.2ms) COMMIT
1276
+  (0.4ms) COMMIT
1277
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts"
1278
+  (0.2ms) BEGIN
1279
+ Account Exists (0.8ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" = 1 LIMIT 1
1280
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1281
+  (0.2ms) BEGIN
1282
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" = 1 AND "accounts"."id" != 4) LIMIT 1
1283
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = $1, "updated_at" = $2 WHERE "accounts"."id" = 4 [["provider", "ttt"], ["updated_at", "2015-04-07 15:41:42.472056"]]
1284
+  (0.4ms) COMMIT
1285
+  (0.2ms) COMMIT
1286
+  (0.2ms) BEGIN
1287
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."uid" = 1 LIMIT 1
1288
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" DESC LIMIT 1
1289
+  (0.2ms) BEGIN
1290
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."uid" = 1 AND "accounts"."id" != 4) LIMIT 1
1291
+ SQL (0.2ms) UPDATE "accounts" SET "provider" = $1, "updated_at" = $2 WHERE "accounts"."id" = 4 [["provider", "zzz"], ["updated_at", "2015-04-07 15:41:58.180617"]]
1292
+  (0.4ms) COMMIT
1293
+  (0.2ms) COMMIT
1294
+ Account Load (1.2ms) SELECT "accounts".* FROM "accounts"
1295
+  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
217
1296
   (0.1ms) select sqlite_version(*)
218
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
219
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
220
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
221
-  (0.1ms) SELECT version FROM "schema_migrations"
222
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1297
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1298
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1299
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1300
+  (0.0ms) SELECT version FROM "schema_migrations"
1301
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
223
1302
   (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
224
-  (1.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
225
-  (0.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
226
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
227
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
228
-  (0.1ms) SELECT version FROM "schema_migrations"
229
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
230
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
231
-  (1.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1303
+  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
232
1304
   (0.1ms) select sqlite_version(*)
233
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
234
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
235
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
-  (0.1ms) SELECT version FROM "schema_migrations"
237
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
238
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
239
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
1305
+  (2.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1306
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1307
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1308
+  (0.0ms) SELECT version FROM "schema_migrations"
1309
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1310
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1311
+  (2.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
240
1312
   (0.1ms) select sqlite_version(*)
241
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
242
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
243
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1313
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1314
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1315
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1316
+  (0.0ms) SELECT version FROM "schema_migrations"
1317
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1318
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1319
+  (2.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1320
+  (0.1ms) select sqlite_version(*)
1321
+  (1.5ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1322
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1323
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1324
+  (0.0ms) SELECT version FROM "schema_migrations"
1325
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1326
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1327
+  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1328
+  (0.1ms) select sqlite_version(*)
1329
+  (1.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1330
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1331
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
244
1332
   (0.1ms) SELECT version FROM "schema_migrations"
245
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
246
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
247
-  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1333
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1334
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1335
+  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
248
1336
   (0.1ms) select sqlite_version(*)
249
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
250
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
251
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1337
+  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1338
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1339
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
252
1340
   (0.1ms) SELECT version FROM "schema_migrations"
253
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
254
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1341
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1342
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
255
1343
   (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
256
1344
   (0.1ms) select sqlite_version(*)
257
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
258
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
259
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1345
+  (1.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1346
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1347
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
260
1348
   (0.1ms) SELECT version FROM "schema_migrations"
261
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
262
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
263
-  (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1349
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1350
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1351
+  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
264
1352
   (0.1ms) select sqlite_version(*)
265
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
266
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
267
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1353
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1354
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1355
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
268
1356
   (0.1ms) SELECT version FROM "schema_migrations"
269
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
270
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
271
-  (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1357
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1358
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1359
+  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
272
1360
   (0.1ms) select sqlite_version(*)
273
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
274
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
275
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
-  (0.1ms) SELECT version FROM "schema_migrations"
277
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
278
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
279
-  (2.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1361
+  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1362
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1363
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1364
+  (0.0ms) SELECT version FROM "schema_migrations"
1365
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1366
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1367
+  (2.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
280
1368
   (0.1ms) select sqlite_version(*)
281
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
282
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
283
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
284
-  (0.1ms) SELECT version FROM "schema_migrations"
285
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1369
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1370
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1371
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1372
+  (0.0ms) SELECT version FROM "schema_migrations"
1373
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
286
1374
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
287
-  (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1375
+  (2.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
288
1376
   (0.1ms) select sqlite_version(*)
289
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
290
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
291
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
292
-  (0.1ms) SELECT version FROM "schema_migrations"
1377
+  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
1378
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1379
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1380
+  (0.0ms) SELECT version FROM "schema_migrations"
1381
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1382
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1383
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1384
+  (0.0ms) select sqlite_version(*)
1385
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1387
+ Migrating to CreateAccounts (20140522110326)
1388
+  (0.0ms) begin transaction
1389
+  (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
1390
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
1391
+  (1.2ms) commit transaction
1392
+ Migrating to AddOAuthFieldsToAccounts (20140522110454)
1393
+  (0.0ms) begin transaction
1394
+  (0.2ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
1395
+  (0.1ms) ALTER TABLE "accounts" ADD "synced_id" integer
1396
+  (0.1ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1397
+  (0.1ms) ALTER TABLE "accounts" ADD "name" varchar(255)
1398
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
1399
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
1400
+  (0.1ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
1401
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
1402
+  (0.8ms) commit transaction
1403
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1404
+  (0.1ms) SELECT sql
1405
+ FROM sqlite_master
1406
+ WHERE name='index_accounts_on_synced_id' AND type='index'
1407
+ UNION ALL
1408
+ SELECT sql
1409
+ FROM sqlite_temp_master
1410
+ WHERE name='index_accounts_on_synced_id' AND type='index'
1411
+
1412
+  (2.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1413
+  (0.0ms) select sqlite_version(*)
1414
+  (1.5ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1415
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1416
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1417
+  (0.0ms) SELECT version FROM "schema_migrations"
293
1418
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
294
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
295
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
296
-  (0.1ms) select sqlite_version(*)
297
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
298
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
299
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
300
-  (0.1ms) SELECT version FROM "schema_migrations"
301
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
302
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
303
-  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1419
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1420
+  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
304
1421
   (0.1ms) select sqlite_version(*)
305
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
306
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
307
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
308
-  (0.1ms) SELECT version FROM "schema_migrations"
1422
+  (1.1ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1423
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1424
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1425
+  (0.0ms) SELECT version FROM "schema_migrations"
309
1426
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
310
1427
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
311
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1428
+  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
312
1429
   (0.1ms) select sqlite_version(*)
313
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
314
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
315
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1430
+  (1.2ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1431
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1432
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
316
1433
   (0.1ms) SELECT version FROM "schema_migrations"
317
1434
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
318
1435
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
319
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1436
+  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
320
1437
   (0.1ms) select sqlite_version(*)
321
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
322
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
323
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
324
-  (0.1ms) SELECT version FROM "schema_migrations"
1438
+  (1.3ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1439
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1440
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1441
+  (0.0ms) SELECT version FROM "schema_migrations"
325
1442
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
326
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
327
-  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1443
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1444
+  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
328
1445
   (0.1ms) select sqlite_version(*)
329
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
330
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
331
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1446
+  (1.2ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1447
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1448
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
332
1449
   (0.1ms) SELECT version FROM "schema_migrations"
333
1450
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
334
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
335
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1451
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1452
+  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
336
1453
   (0.1ms) select sqlite_version(*)
337
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
338
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
339
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
340
-  (0.1ms) SELECT version FROM "schema_migrations"
1454
+  (1.7ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1455
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1456
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1457
+  (0.0ms) SELECT version FROM "schema_migrations"
341
1458
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
342
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
343
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1459
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1460
+  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
344
1461
   (0.1ms) select sqlite_version(*)
345
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
346
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
347
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
348
-  (0.1ms) SELECT version FROM "schema_migrations"
1462
+  (1.6ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1463
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1464
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1465
+  (0.0ms) SELECT version FROM "schema_migrations"
349
1466
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
350
1467
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
351
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
352
-  (0.1ms) select sqlite_version(*)
353
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
354
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
355
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
-  (0.1ms) SELECT version FROM "schema_migrations"
357
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
358
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
359
-  (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1468
+  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
360
1469
   (0.1ms) select sqlite_version(*)
361
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
362
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
363
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
364
-  (0.1ms) SELECT version FROM "schema_migrations"
365
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
366
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
367
-  (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
368
-  (0.1ms) select sqlite_version(*)
369
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
370
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
371
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
372
-  (0.1ms) SELECT version FROM "schema_migrations"
373
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
374
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
375
-  (1.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
376
-  (0.1ms) select sqlite_version(*)
377
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
378
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
379
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
380
-  (0.1ms) SELECT version FROM "schema_migrations"
381
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
382
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
383
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
384
-  (0.1ms) select sqlite_version(*)
385
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
386
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
387
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
388
-  (0.1ms) SELECT version FROM "schema_migrations"
1470
+  (1.4ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1471
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1472
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1473
+  (0.0ms) SELECT version FROM "schema_migrations"
389
1474
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
390
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
391
-  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1475
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1476
+  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
392
1477
   (0.1ms) select sqlite_version(*)
393
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
394
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
-  (0.1ms) SELECT version FROM "schema_migrations"
397
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1478
+  (1.4ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1479
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1480
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1481
+  (0.0ms) SELECT version FROM "schema_migrations"
1482
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
398
1483
   (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
399
-  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1484
+  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
400
1485
   (0.1ms) select sqlite_version(*)
401
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
402
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
403
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
404
-  (0.1ms) SELECT version FROM "schema_migrations"
405
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1486
+  (1.2ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1487
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1488
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1489
+  (0.0ms) SELECT version FROM "schema_migrations"
1490
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
406
1491
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
407
-  (1.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
408
-  (0.1ms) select sqlite_version(*)
409
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
410
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
411
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
412
-  (0.1ms) SELECT version FROM "schema_migrations"
413
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
414
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
415
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
416
-  (0.1ms) select sqlite_version(*)
417
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
418
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
419
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
420
-  (0.1ms) SELECT version FROM "schema_migrations"
421
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
422
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
423
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
424
-  (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
425
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
426
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
427
-  (0.1ms) SELECT version FROM "schema_migrations"
428
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
429
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
430
-  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
431
-  (0.1ms) select sqlite_version(*)
432
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
433
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
434
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
435
-  (0.1ms) SELECT version FROM "schema_migrations"
436
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
437
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
438
-  (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
439
-  (0.1ms) select sqlite_version(*)
440
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
441
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
442
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
443
-  (0.1ms) SELECT version FROM "schema_migrations"
444
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
445
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
446
-  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1492
+  (2.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
447
1493
   (0.1ms) select sqlite_version(*)
448
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
449
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
450
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1494
+  (1.3ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1495
+  (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1496
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
451
1497
   (0.1ms) SELECT version FROM "schema_migrations"
452
1498
   (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
453
-  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
454
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
455
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
456
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
457
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
458
-  (0.1ms) SELECT version FROM "schema_migrations"
459
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
460
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
461
-  (1.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
462
-  (0.1ms) select sqlite_version(*)
463
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
464
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
465
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
466
-  (0.1ms) SELECT version FROM "schema_migrations"
467
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
468
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
469
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
470
-  (0.1ms) select sqlite_version(*)
471
-  (0.7ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
472
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
473
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
474
-  (0.1ms) SELECT version FROM "schema_migrations"
475
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
476
-  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
477
-  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
478
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
479
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
480
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
-  (0.1ms) SELECT version FROM "schema_migrations"
482
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
483
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
484
-  (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1499
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
1500
+  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
485
1501
   (0.1ms) select sqlite_version(*)
486
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
487
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
488
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1502
+  (1.5ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1503
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1504
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
489
1505
   (0.1ms) SELECT version FROM "schema_migrations"
490
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1506
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
491
1507
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
492
-  (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
493
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
494
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
495
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
496
-  (0.1ms) SELECT version FROM "schema_migrations"
497
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
498
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
499
-  (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
1508
+  (2.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
500
1509
   (0.1ms) select sqlite_version(*)
501
-  (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
502
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
503
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
504
-  (0.1ms) SELECT version FROM "schema_migrations"
505
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
506
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
507
-  (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
508
-  (0.1ms) select sqlite_version(*)
509
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
510
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
511
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
512
-  (0.1ms) SELECT version FROM "schema_migrations"
513
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
1510
+  (1.7ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
1511
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1512
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1513
+  (0.0ms) SELECT version FROM "schema_migrations"
1514
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
514
1515
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
515
-  (1.0ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
516
-  (0.2ms) select sqlite_version(*)
517
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
518
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
519
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
520
-  (0.1ms) SELECT version FROM "schema_migrations"
521
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
522
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')