bookingsync-engine 0.1.2 → 0.1.3

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: 6fed4cfae729b99c736877145146c98a93f7341f
4
- data.tar.gz: 13ef3453b1520747d1379c9390e9234bec0aa96f
3
+ metadata.gz: 6c7df488875dd2e228ce8c74459be6dbb7f3ae4a
4
+ data.tar.gz: d31908634bee600dfdcf836fd7f6383b4c1f2d91
5
5
  SHA512:
6
- metadata.gz: ed693d4e35c979f1fb3fcda005db02218c5d73bec0081fdcbeab8bd15ea846fd448468db470788489d25af3d04590b4e4f09debb2ea019665020421b272b8ea5
7
- data.tar.gz: 6858716f6cd4874a823c25f38727ce7afd5898170650923d4dda20ababbbed749f9aab72ca6e9547f7c8ce835dd12f54c453ef32853a1e3e04b24525544cdb5a
6
+ metadata.gz: d93b62581b7795d0cf1331f8619f303fd27a57ba9cde5bcd74d05464643bf58d0dd6eca52dc8956b530c9d0ba128c428fb9e48094e7088ffc83dec3f11123f66
7
+ data.tar.gz: 53060b1c19e18b3549879015ae4e0a932555af158cc37b1e3cce5136d5bb2b221627ea8ee988f22c7cd10a67f970b722ddaedbd4b8a581494d9fe63a2e2237c0
@@ -3,14 +3,9 @@ module BookingSync::Engine::Model
3
3
 
4
4
  module ClassMethods
5
5
  def from_omniauth(auth)
6
- auth_params = auth.slice(:provider, :uid).permit(:provider, :uid)
7
- where(auth_params).first_or_initialize.tap do |account|
8
- account.provider = auth.provider
9
- account.uid = auth.uid
10
- account.name = auth.info.business_name
11
-
6
+ find_or_initialize_by(uid: auth.uid, provider: auth.provider).tap do |account|
7
+ account.name = auth.info.business_name
12
8
  account.update_token(auth.credentials)
13
-
14
9
  account.save!
15
10
  end
16
11
  end
@@ -1,3 +1,3 @@
1
1
  module BookingSync
2
- ENGINE_VERSION = "0.1.2"
2
+ ENGINE_VERSION = "0.1.3"
3
3
  end
Binary file
@@ -1,70 +1,414 @@
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")
1
17
   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
18
   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreateAccounts (20140312093436)
6
-  (0.2ms) begin transaction
7
-  (0.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
8
-  (0.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
9
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140312093436"]]
10
-  (0.7ms) commit transaction
11
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
-  (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar(255), "uid" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) 
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)) 
13
23
   (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
14
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
15
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
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")
16
26
   (0.1ms) SELECT version FROM "schema_migrations"
17
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140312093436')
18
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
-  (0.2ms) SELECT version FROM "schema_migrations"
20
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
- Migrating to CreateAccounts (20140522110326)
22
-  (0.1ms) begin transaction
23
-  (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
24
- SQLite3::SQLException: table "accounts" already exists: CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
25
-  (0.1ms) rollback transaction
26
-  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
27
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
28
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
- Migrating to CreateAccounts (20140522110326)
30
-  (0.1ms) begin transaction
31
-  (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
32
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110326"]]
33
-  (0.9ms) commit transaction
34
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
- Migrating to AddOAuthFieldsToAccounts (20140522110454)
37
-  (0.1ms) begin transaction
38
-  (0.9ms) ALTER TABLE "accounts" ADD "provider" varchar(255)
39
-  (0.3ms) ALTER TABLE "accounts" ADD "uid" integer
40
-  (0.2ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
41
-  (0.3ms) ALTER TABLE "accounts" ADD "name" varchar(255)
42
-  (0.2ms) ALTER TABLE "accounts" ADD "oauth_access_token" varchar(255)
43
-  (0.3ms) ALTER TABLE "accounts" ADD "oauth_refresh_token" varchar(255)
44
-  (0.3ms) ALTER TABLE "accounts" ADD "oauth_expires_at" varchar(255)
45
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140522110454"]]
46
-  (0.7ms) commit transaction
47
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
48
-  (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)) 
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)) 
49
60
   (0.9ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
50
61
   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
51
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
52
63
   (0.1ms) SELECT version FROM "schema_migrations"
53
64
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
54
65
   (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
55
-  (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)) 
56
-  (0.2ms) select sqlite_version(*)
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(*)
57
107
   (1.0ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
58
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)
59
125
   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
60
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"
61
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')
62
151
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
63
-  (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "uid" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) 
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) 
64
153
   (0.1ms) select sqlite_version(*)
65
154
   (0.8ms) CREATE INDEX "index_accounts_on_uid" ON "accounts" ("uid")
66
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)
67
164
   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
68
165
   (0.1ms) SELECT version FROM "schema_migrations"
69
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')
70
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')