bookingsync-engine 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'oauth routing', type: :routing do
4
+ routes { BookingSync::Engine.routes }
5
+ it 'has a auth callback route' do
6
+ expect(get: '/auth/facebook/callback').to route_to(controller: 'sessions',
7
+ action: 'create', provider: 'facebook')
8
+ end
9
+
10
+ it 'has a auth failure route' do
11
+ expect(get: '/auth/failure').to route_to(controller: 'sessions',
12
+ action: 'failure')
13
+ end
14
+
15
+ it 'has a signout route' do
16
+ expect(get: '/signout').to route_to(controller: 'sessions',
17
+ action: 'destroy')
18
+ end
19
+
20
+ it 'has a signout named route', :inject_locale_to_routes do
21
+ expect(get: signout_path).to route_to(controller: 'sessions',
22
+ action: 'destroy')
23
+ end
24
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookingsync-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastien Grosjean
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-11-21 00:00:00.000000000 Z
12
+ date: 2015-01-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -196,7 +196,6 @@ files:
196
196
  - spec/dummy/db/migrate/20140522110454_add_o_auth_fields_to_accounts.rb
197
197
  - spec/dummy/db/schema.rb
198
198
  - spec/dummy/db/test.sqlite3
199
- - spec/dummy/log/development.log
200
199
  - spec/dummy/log/test.log
201
200
  - spec/dummy/public/404.html
202
201
  - spec/dummy/public/422.html
@@ -204,13 +203,21 @@ files:
204
203
  - spec/dummy/public/favicon.ico
205
204
  - spec/fixtures/accounts.yml
206
205
  - spec/models/account_spec.rb
206
+ - spec/routing/oauth_routing_spec.rb
207
207
  - spec/spec_helper.rb
208
208
  - spec/support/omniauth.rb
209
209
  homepage: https://github.com/BookingSync/bookingsync-engine
210
210
  licenses:
211
211
  - MIT
212
212
  metadata: {}
213
- post_install_message:
213
+ post_install_message: |
214
+ !!!!!! Important change !!!!!!
215
+ BookingSync::Engine routes need to be mounted manually
216
+ Just copy next line to somewhere inside routes.rb
217
+
218
+ mount BookingSync::Engine => '/'
219
+
220
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
214
221
  rdoc_options: []
215
222
  require_paths:
216
223
  - lib
@@ -226,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
233
  version: '0'
227
234
  requirements: []
228
235
  rubyforge_project:
229
- rubygems_version: 2.4.4
236
+ rubygems_version: 2.2.2
230
237
  signing_key:
231
238
  specification_version: 4
232
239
  summary: A Rails engine to simplify integration with BookingSync API
@@ -265,7 +272,6 @@ test_files:
265
272
  - spec/dummy/db/migrate/20140522110454_add_o_auth_fields_to_accounts.rb
266
273
  - spec/dummy/db/schema.rb
267
274
  - spec/dummy/db/test.sqlite3
268
- - spec/dummy/log/development.log
269
275
  - spec/dummy/log/test.log
270
276
  - spec/dummy/public/404.html
271
277
  - spec/dummy/public/422.html
@@ -275,6 +281,6 @@ test_files:
275
281
  - spec/dummy/README.rdoc
276
282
  - spec/fixtures/accounts.yml
277
283
  - spec/models/account_spec.rb
284
+ - spec/routing/oauth_routing_spec.rb
278
285
  - spec/spec_helper.rb
279
286
  - spec/support/omniauth.rb
280
- has_rdoc:
@@ -1,522 +0,0 @@
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"
6
-  (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"
13
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
14
-  (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"
20
-  (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')
58
-  (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"
64
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
65
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
66
-  (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
-  (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)) 
98
-  (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')
104
-  (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)) 
106
-  (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')
113
-  (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
-  (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)) 
145
-  (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")
149
-  (0.1ms) SELECT version FROM "schema_migrations"
150
-  (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) 
153
-  (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")
157
-  (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)) 
161
-  (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')
168
-  (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
-  (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')
176
-  (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")
181
-  (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)) 
185
-  (0.1ms) select sqlite_version(*)
186
-  (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
-  (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)) 
193
-  (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')
200
-  (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
-  (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"
206
-  (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)) 
217
-  (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')
223
-  (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)) 
232
-  (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) 
240
-  (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")
244
-  (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)) 
248
-  (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")
252
-  (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')
255
-  (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
-  (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")
260
-  (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)) 
264
-  (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")
268
-  (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)) 
272
-  (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)) 
280
-  (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')
286
-  (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)) 
288
-  (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"
293
-  (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)) 
304
-  (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"
309
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
310
-  (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)) 
312
-  (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")
316
-  (0.1ms) SELECT version FROM "schema_migrations"
317
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
318
-  (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)) 
320
-  (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"
325
-  (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)) 
328
-  (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")
332
-  (0.1ms) SELECT version FROM "schema_migrations"
333
-  (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)) 
336
-  (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"
341
-  (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)) 
344
-  (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"
349
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
350
-  (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)) 
360
-  (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"
389
-  (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)) 
392
-  (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')
398
-  (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)) 
400
-  (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')
406
-  (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)) 
447
-  (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")
451
-  (0.1ms) SELECT version FROM "schema_migrations"
452
-  (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)) 
485
-  (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")
489
-  (0.1ms) SELECT version FROM "schema_migrations"
490
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
491
-  (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)) 
500
-  (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')
514
-  (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')