bookingsync-engine 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eaa9ea497804f5d7b45a0f417ce6c0a48e9072c0
4
- data.tar.gz: 7266930fcf0b9c2090db06eff5a4c390a7c6b3cf
3
+ metadata.gz: 723921aae73287cdedb4271281326c4b87026317
4
+ data.tar.gz: b59ffee3a4912315abec696f64337ec240285130
5
5
  SHA512:
6
- metadata.gz: dcba45975f5ca64f115729cd77082b1e9e9e74ae2a516dde0da8b2bc84bd0590c4fa3525889be538ce1becb7c0569de122000c97d74b78d2df344becd5130393
7
- data.tar.gz: d4224704091d92d5d8c40c32660210a31e9ec5aa5b15468f5155e91480e2c2562d59d643aefd37b86c0f021320a684403ad1ac76d3771fe79687798f7fc9b3ec
6
+ metadata.gz: 8da66541deda2e85cca1bfa20accebcac59099f2c0c5898aa7136f808bef85368ec5e1f56aff3c62806c59b80094e84b1e430ae4e55d895511fd7098ad1037b0
7
+ data.tar.gz: a117017d87e49e4e8c66ba2dfce630103ee83347233066d33251c722772cb64907b58e11f704e048aac594ec0953201d7e11d749eda646a8d123dad2b88c823f
@@ -7,13 +7,18 @@ class BookingSync::Engine::APIClient < BookingSync::API::Client
7
7
  def call(method, path, data = nil, options = nil)
8
8
  tries ||= 1
9
9
  super
10
- rescue BookingSync::API::Unauthorized => e
11
- token_expired = e.headers["www-authenticate"].include?("The access token expired")
12
- if token_expired && (tries -= 1) >= 0
10
+ rescue BookingSync::API::Unauthorized => error
11
+ if refresh_token?(error) && (tries -= 1) >= 0
13
12
  @token = @account.refresh_token!.token
14
13
  retry
15
14
  else
16
15
  raise
17
16
  end
18
17
  end
18
+
19
+ private
20
+
21
+ def refresh_token?(error)
22
+ error.headers["www-authenticate"].include?("The access token expired")
23
+ end
19
24
  end
@@ -1,3 +1,3 @@
1
1
  module BookingSync
2
- ENGINE_VERSION = "2.0.1"
2
+ ENGINE_VERSION = "2.0.2"
3
3
  end
@@ -3,13 +3,9 @@ development:
3
3
  encoding: unicode
4
4
  database: bookingsync_engine_development
5
5
  pool: 5
6
- username: manda
7
- password:
8
6
 
9
7
  test:
10
8
  adapter: postgresql
11
9
  encoding: unicode
12
10
  database: bookingsync_engine_test
13
11
  pool: 5
14
- username: manda
15
- password:
Binary file
@@ -1,25 +1,612 @@
1
-  (9.2ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
2
-  (1.2ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")
3
-  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
4
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.2ms) SELECT version FROM "schema_migrations"
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"
6
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')
523
+  (1.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) 
524
+  (0.1ms) select sqlite_version(*)
525
+  (0.7ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
526
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
527
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
528
+  (0.1ms) SELECT version FROM "schema_migrations"
529
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
530
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
531
+  (1.0ms) 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)) 
532
+  (0.1ms) select sqlite_version(*)
533
+  (0.8ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
534
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
535
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
536
+  (0.1ms) SELECT version FROM "schema_migrations"
537
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
538
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
539
+  (2.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) 
540
+  (0.1ms) select sqlite_version(*)
541
+  (0.8ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
542
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
543
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
544
+  (0.1ms) SELECT version FROM "schema_migrations"
545
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
546
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
547
+  (1.0ms) 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)) 
548
+  (0.1ms) select sqlite_version(*)
549
+  (0.8ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
550
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
551
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
552
+  (0.1ms) SELECT version FROM "schema_migrations"
553
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
554
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
555
+  (1.1ms) 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) 
556
+  (0.1ms) select sqlite_version(*)
557
+  (0.7ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
558
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
559
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
560
+  (0.1ms) SELECT version FROM "schema_migrations"
561
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
562
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
563
+  (2.8ms) 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)) 
564
+  (0.1ms) select sqlite_version(*)
565
+  (0.9ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
566
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
567
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
568
+  (0.1ms) SELECT version FROM "schema_migrations"
569
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
570
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
571
+  (2.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) 
572
+  (0.1ms) select sqlite_version(*)
573
+  (1.0ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
574
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
575
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
576
+  (0.1ms) SELECT version FROM "schema_migrations"
577
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
578
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
579
+  (1.0ms) 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)) 
580
+  (0.1ms) select sqlite_version(*)
581
+  (0.8ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
582
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
583
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
584
+  (0.1ms) SELECT version FROM "schema_migrations"
585
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
586
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
587
+  (2.6ms) 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) 
588
+  (0.1ms) select sqlite_version(*)
589
+  (0.8ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
590
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
591
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
592
+  (0.1ms) SELECT version FROM "schema_migrations"
593
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
594
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
595
+  (0.7ms) DROP DATABASE IF EXISTS "bookingsync_engine_test"
596
+  (303.3ms) CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
597
+  (12.8ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
598
+  (1.2ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")
599
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
600
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
601
+  (0.3ms) SELECT version FROM "schema_migrations"
602
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
7
603
   (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
8
-  (8.3ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)
9
-  (1.3ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")
10
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
11
-  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12
-  (0.3ms) SELECT version FROM "schema_migrations"
13
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
14
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
15
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
-  (113.6ms) DROP DATABASE IF EXISTS "bookingsync_engine_test"
17
-  (261.8ms) CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
18
-  (6.5ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
19
-  (1.3ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")
20
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
21
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22
-  (0.2ms) SELECT version FROM "schema_migrations"
23
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
24
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
25
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
604
+  (118.1ms) DROP DATABASE IF EXISTS "bookingsync_engine_test"
605
+  (234.3ms) CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
606
+  (5.1ms) CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) 
607
+  (0.9ms) CREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")
608
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
609
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
610
+  (0.3ms) SELECT version FROM "schema_migrations"
611
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
612
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')