bookingsync-engine 0.4.6 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f55a6e835b6ed9a619a45ca38d1bc85c3e91b426
4
- data.tar.gz: d9a4cfd9d9d7c30af32bf90fc254595e15c0f24f
3
+ metadata.gz: ea0fd3e150abdace341f9898eecebd300b547250
4
+ data.tar.gz: cf2fea9ac3c75e756d57279456d7f924a586e088
5
5
  SHA512:
6
- metadata.gz: 552bb7ba519eb9fce5aa30e1f62bcd488a4e0b0566bdf5f4c51185ea37cf0c6d8275f753c8aa147989737c0cc50fc9957eb039f9bee712f536c79b45b10497d6
7
- data.tar.gz: e8e32127494f4508bb2ad9f1b67274d77c345425cc5a4f78c0c514b21d860b83bd87ed6b6172267a845379ffeb4b935a64ca6a1862f5d222c14f76635fd3ea41
6
+ metadata.gz: 56acfa9eeb2a5ef113cd8c5cd22b55f8c8b7aa5b6ffd17faffc0f5ec3c77aedc15a28050f4eaedf8f2cd88bcbac507d810932ccec5164f7004457761ef418dc7
7
+ data.tar.gz: 2201599717c678de4a7d35609dc5d86f3730074b69275ff6cfbe8164c0082a8f28e96024b8ea73a1d14ac8ef4c2ee9ccce3d70e6fa8c353af8b6ba210ea3299c
data/README.md CHANGED
@@ -50,7 +50,7 @@ and migrate:
50
50
  rake db:migrate
51
51
  ```
52
52
 
53
- And include `BookingSync::Engine::Account` in your `Account` model:
53
+ Also include `BookingSync::Engine::Account` in your `Account` model:
54
54
 
55
55
  ```ruby
56
56
  class Account < ActiveRecord::Base
@@ -58,6 +58,8 @@ class Account < ActiveRecord::Base
58
58
  end
59
59
  ```
60
60
 
61
+ When saving new token, this gem uses a separate thread with new db connection to ensure token save (in case of a rollback in the main transaction). To make room for the new connections, it is recommended to increase db `pool` size by 2-3.
62
+
61
63
  ## Configuration
62
64
 
63
65
  The engine is configured by the following ENV variables:
@@ -50,8 +50,12 @@ module BookingSync::Engine::Model
50
50
  end
51
51
 
52
52
  def update_token!(token)
53
- update_token(token)
54
- save!
53
+ Thread.new do
54
+ ActiveRecord::Base.connection_pool.with_connection do
55
+ update_token(token)
56
+ save!
57
+ end
58
+ end.join
55
59
  end
56
60
 
57
61
  def clear_token!
@@ -1,3 +1,3 @@
1
1
  module BookingSync
2
- ENGINE_VERSION = "0.4.6"
2
+ ENGINE_VERSION = "0.5.0"
3
3
  end
Binary file
@@ -1,112 +1,522 @@
1
-  (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)) 
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)) 
2
37
   (0.1ms) select sqlite_version(*)
3
-  (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
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")
4
47
   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
48
   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
49
   (0.1ms) SELECT version FROM "schema_migrations"
7
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
50
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
8
51
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
9
-  (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)) 
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)) 
10
74
   (0.1ms) select sqlite_version(*)
11
-  (1.4ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
12
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
13
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("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")
14
86
   (0.1ms) SELECT version FROM "schema_migrations"
15
87
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
16
88
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
17
-  (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)) 
18
-  (0.2ms) select sqlite_version(*)
19
-  (1.6ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
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")
20
92
   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21
93
   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22
94
   (0.1ms) SELECT version FROM "schema_migrations"
23
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
24
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
25
-  (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)) 
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)) 
26
98
   (0.1ms) select sqlite_version(*)
27
99
   (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
28
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
29
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
30
102
   (0.1ms) SELECT version FROM "schema_migrations"
31
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
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')
32
120
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
33
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)) 
34
-  (0.5ms) select sqlite_version(*)
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(*)
35
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")
36
171
   (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
37
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
172
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
173
   (0.1ms) SELECT version FROM "schema_migrations"
39
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
40
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
41
-  (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)) 
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)) 
42
177
   (0.2ms) select sqlite_version(*)
43
-  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
44
-  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
45
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
46
-  (0.2ms) SELECT version FROM "schema_migrations"
47
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
48
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
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')
49
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)) 
50
185
   (0.1ms) select sqlite_version(*)
51
-  (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
52
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
53
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("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")
54
189
   (0.1ms) SELECT version FROM "schema_migrations"
55
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
190
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
56
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')
57
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)) 
58
-  (0.2ms) select sqlite_version(*)
59
-  (1.3ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
60
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
61
204
   (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
205
   (0.1ms) SELECT version FROM "schema_migrations"
63
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
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')
64
286
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
65
-  (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)) 
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)) 
66
288
   (0.1ms) select sqlite_version(*)
67
-  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
68
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
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)
69
299
   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
70
300
   (0.1ms) SELECT version FROM "schema_migrations"
71
301
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
72
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
73
-  (3.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
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)) 
74
312
   (0.1ms) select sqlite_version(*)
75
313
   (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
76
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
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)
77
331
   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
78
332
   (0.1ms) SELECT version FROM "schema_migrations"
79
333
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
80
334
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
81
-  (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)) 
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)) 
82
344
   (0.1ms) select sqlite_version(*)
83
345
   (1.1ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
84
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
85
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
86
348
   (0.1ms) SELECT version FROM "schema_migrations"
87
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
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')
88
406
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
89
-  (1.5ms) 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) 
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)) 
90
408
   (0.1ms) select sqlite_version(*)
91
-  (1.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
92
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
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)
93
419
   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
94
420
   (0.1ms) SELECT version FROM "schema_migrations"
95
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
96
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
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')
97
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)) 
98
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(*)
99
486
   (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
100
487
   (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
101
488
   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
102
489
   (0.1ms) SELECT version FROM "schema_migrations"
103
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
490
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
104
491
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
105
-  (1.2ms) 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) 
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)) 
106
508
   (0.1ms) select sqlite_version(*)
107
509
   (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
108
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
109
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
110
512
   (0.1ms) SELECT version FROM "schema_migrations"
111
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
513
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
112
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')