bento 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/README.rdoc +62 -42
  2. data/lib/bento/controllers/account_scopable.rb +31 -2
  3. data/lib/bento/controllers/helpers.rb +13 -9
  4. data/lib/bento/models/account.rb +18 -37
  5. data/lib/bento/models/modules/trial.rb +15 -0
  6. data/lib/bento/models/modules/user_accessors.rb +26 -0
  7. data/lib/bento/models/modules/user_association.rb +13 -0
  8. data/lib/bento/models/modules/validations.rb +14 -0
  9. data/lib/bento/rails/routes.rb +24 -0
  10. data/lib/bento/rails.rb +2 -0
  11. data/lib/bento/version.rb +1 -1
  12. data/lib/generators/active_record/bento_generator.rb +1 -1
  13. data/lib/generators/active_record/templates/add_migration.rb +2 -2
  14. data/lib/generators/active_record/templates/create_migration.rb +4 -5
  15. data/lib/generators/bento/bento_generator.rb +4 -0
  16. data/lib/generators/bento/orm_helpers.rb +1 -1
  17. data/spec/bento/controllers/helpers_spec.rb +24 -0
  18. data/spec/bento/models/account_spec.rb +5 -95
  19. data/spec/bento/models/modules/trial_spec.rb +22 -0
  20. data/spec/bento/models/modules/user_accessors_spec.rb +48 -0
  21. data/spec/bento/models/modules/user_association_spec.rb +16 -0
  22. data/spec/bento/models/modules/validations_spec.rb +27 -0
  23. data/spec/bento/rails/routes_spec.rb +27 -0
  24. data/spec/bento_spec.rb +4 -0
  25. data/spec/controllers/bento_for_routes_spec.rb +55 -0
  26. data/spec/rails_app/app/controllers/custom_accounts_controller.rb +7 -1
  27. data/spec/rails_app/app/models/account.rb +1 -1
  28. data/spec/rails_app/app/models/site.rb +8 -0
  29. data/spec/rails_app/app/models/user.rb +1 -0
  30. data/spec/rails_app/app/views/custom_accounts/index.html.erb +14 -0
  31. data/spec/rails_app/app/views/custom_accounts/new.html.erb +11 -7
  32. data/spec/rails_app/app/views/custom_accounts/show.html.erb +12 -0
  33. data/spec/rails_app/app/views/layouts/application.html.erb +3 -2
  34. data/spec/rails_app/app/views/projects/_all_projects.html.erb +1 -0
  35. data/spec/rails_app/app/views/projects/show.html.erb +1 -0
  36. data/spec/rails_app/config/routes.rb +6 -1
  37. data/spec/rails_app/db/development.sqlite3 +0 -0
  38. data/spec/rails_app/db/migrate/20101029122256_bento_create_sites.rb +14 -0
  39. data/spec/rails_app/db/migrate/20101029122257_bento_add_site_id_to_sites.rb +9 -0
  40. data/spec/rails_app/db/schema.rb +10 -1
  41. data/spec/rails_app/db/test.sqlite3 +0 -0
  42. data/spec/rails_app/log/development.log +50 -1220
  43. data/spec/rails_app/{db/production.sqlite3 → log/production.log} +0 -0
  44. data/spec/rails_app/log/server.log +0 -0
  45. data/spec/rails_app/log/test.log +32539 -21983
  46. data/spec/spec_helper.rb +1 -1
  47. data/spec/support/blueprints.rb +4 -0
  48. metadata +24 -6
  49. data/spec/rails_app/tmp/pids/server.pid +0 -1
@@ -1,458 +1,42 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at Sun Sep 12 13:56:24 +0200 2010
4
- Processing by HomeController#index as HTML
5
- Rendered home/index.html.erb within layouts/application (1.7ms)
6
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
7
-
8
-
9
- Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
10
-
11
- ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
12
-
13
-
14
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
15
-
16
-
17
- Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
18
-
19
- ActionController::RoutingError (No route matches "/javascripts/effects.js"):
20
-
21
-
22
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
23
-
24
-
25
- Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
26
-
27
- ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
28
-
29
-
30
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
31
-
32
-
33
- Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
34
-
35
- ActionController::RoutingError (No route matches "/javascripts/controls.js"):
36
-
37
-
38
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
39
-
40
-
41
- Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 13:56:25 +0200 2010
42
-
43
- ActionController::RoutingError (No route matches "/javascripts/rails.js"):
44
-
45
-
46
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
47
-
48
-
49
- Started GET "/bento/infp" for 127.0.0.1 at Sun Sep 12 13:56:34 +0200 2010
50
-
51
- ActionController::RoutingError (No route matches "/bento/infp"):
52
-
53
-
54
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
55
-
56
-
57
- Started GET "/bento/info" for 127.0.0.1 at Sun Sep 12 13:56:36 +0200 2010
58
-
59
- ActionController::RoutingError (No route matches "/bento/info"):
60
-
61
-
62
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
63
-
64
-
65
- Started GET "/info" for 127.0.0.1 at Sun Sep 12 13:56:47 +0200 2010
66
-
67
- ActionController::RoutingError (No route matches "/info"):
68
-
69
-
70
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
71
-
72
-
73
- Started GET "/accounts" for 127.0.0.1 at Sun Sep 12 13:57:07 +0200 2010
74
-
75
- ActionController::RoutingError (No route matches "/accounts"):
76
-
77
-
78
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
79
-
80
-
81
- Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 13:57:09 +0200 2010
82
-
83
- ActionController::RoutingError (No route matches "/bento/accounts"):
84
-
85
-
86
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
87
-
88
-
89
- Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 13:58:10 +0200 2010
90
-
91
- ActionController::RoutingError (No route matches "/bento/accounts"):
92
-
93
-
94
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
95
-
96
-
97
- Started GET "/" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
98
- Processing by HomeController#index as HTML
99
- Rendered home/index.html.erb within layouts/application (1.6ms)
100
- Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
101
-
102
-
103
- Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
104
-
105
- ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
106
-
107
-
108
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
109
-
110
-
111
- Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
112
-
113
- ActionController::RoutingError (No route matches "/javascripts/effects.js"):
114
-
115
-
116
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
117
-
118
-
119
- Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
120
-
121
- ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
122
-
123
-
124
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
125
-
126
-
127
- Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
128
-
129
- ActionController::RoutingError (No route matches "/javascripts/controls.js"):
130
-
131
-
132
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
133
-
134
-
135
- Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 13:58:14 +0200 2010
136
-
137
- ActionController::RoutingError (No route matches "/javascripts/rails.js"):
138
-
139
-
140
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
141
-
142
-
143
- Started GET "/" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
144
- Processing by HomeController#index as HTML
145
- Rendered home/index.html.erb within layouts/application (1.6ms)
146
- Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
147
-
148
-
149
- Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
150
-
151
- ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
152
-
153
-
154
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
155
-
156
-
157
- Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
158
-
159
- ActionController::RoutingError (No route matches "/javascripts/effects.js"):
160
-
161
-
162
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
163
-
164
-
165
- Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
166
-
167
- ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
168
-
169
-
170
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
171
-
172
-
173
- Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
174
-
175
- ActionController::RoutingError (No route matches "/javascripts/controls.js"):
176
-
177
-
178
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
179
-
180
-
181
- Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 14:12:17 +0200 2010
182
-
183
- ActionController::RoutingError (No route matches "/javascripts/rails.js"):
184
-
185
-
186
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
187
-
188
-
189
- Started GET "/accounts" for 127.0.0.1 at Sun Sep 12 14:12:21 +0200 2010
190
-
191
- ActionController::RoutingError (No route matches "/accounts"):
192
-
193
-
194
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
195
-
196
-
197
- Started GET "/bento/accounts" for 127.0.0.1 at Sun Sep 12 14:12:24 +0200 2010
198
-
199
- ActionController::RoutingError (No route matches "/bento/accounts"):
200
-
201
-
202
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
203
-
204
-
205
- Started GET "/" for 127.0.0.1 at Sun Sep 12 14:18:33 +0200 2010
206
- Processing by HomeController#index as HTML
207
- Rendered home/index.html.erb within layouts/application (1.7ms)
208
- Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
209
-
210
-
211
- Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
212
-
213
- ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
214
-
215
-
216
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.1ms)
217
-
218
-
219
- Started GET "/javascripts/effects.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
220
-
221
- ActionController::RoutingError (No route matches "/javascripts/effects.js"):
222
-
223
-
224
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
225
-
226
-
227
- Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
228
-
229
- ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
230
-
231
-
232
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
233
-
234
-
235
- Started GET "/javascripts/controls.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
236
-
237
- ActionController::RoutingError (No route matches "/javascripts/controls.js"):
238
-
239
-
240
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
241
-
242
-
243
- Started GET "/javascripts/rails.js" for 127.0.0.1 at Sun Sep 12 14:18:34 +0200 2010
244
-
245
- ActionController::RoutingError (No route matches "/javascripts/rails.js"):
246
-
247
-
248
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
249
-
250
-
251
- Started GET "/" for 127.0.0.1 at Sat Sep 18 13:42:29 +0200 2010
252
- Processing by HomeController#index as HTML
253
- Rendered home/index.html.erb within layouts/application (2.2ms)
254
- Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
255
-
256
-
257
- Started GET "/javascripts/prototype.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
258
-
259
- ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
260
-
261
-
262
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
263
-
264
-
265
- Started GET "/javascripts/effects.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
266
-
267
- ActionController::RoutingError (No route matches "/javascripts/effects.js"):
268
-
269
-
270
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
271
-
272
-
273
- Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
274
-
275
- ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
276
-
277
-
278
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
279
-
280
-
281
- Started GET "/javascripts/controls.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
282
-
283
- ActionController::RoutingError (No route matches "/javascripts/controls.js"):
284
-
285
-
286
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
287
-
288
-
289
- Started GET "/javascripts/rails.js" for 127.0.0.1 at Sat Sep 18 13:42:30 +0200 2010
290
-
291
- ActionController::RoutingError (No route matches "/javascripts/rails.js"):
292
-
293
-
294
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
295
-
296
-
297
- Started GET "/accounts/new" for 127.0.0.1 at Sat Sep 18 13:42:31 +0200 2010
298
-
299
- ActionController::RoutingError (undefined local variable or method `inherit_resources' for Bento::AccountsController:Class):
300
-
301
-
302
- Rendered /Users/Nicklas/.rvm/gems/ruby-1.8.7-p299@bento/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
303
- SQL (0.4ms)  SELECT name
304
- FROM sqlite_master
305
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
306
- 
307
- SQL (11.9ms) select sqlite_version(*)
308
- SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
309
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
310
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
- SQL (0.1ms) SELECT name
312
- FROM sqlite_master
313
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
314
- SQL (0.2ms)  SELECT name
1
+ SQL (0.2ms) select sqlite_version(*)
2
+ SQL (0.2ms) SELECT name
315
3
  FROM sqlite_master
316
4
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
317
- 
318
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
319
- Migrating to BentoCreateAccounts (20100918192231)
320
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
5
+ SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
321
6
  SQL (0.0ms) PRAGMA index_list("accounts")
322
- SQL (49.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
323
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192231')
324
- SQL (0.2ms)  SELECT name
325
- FROM sqlite_master
326
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
327
- 
328
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
329
- SQL (0.1ms)  SELECT name
330
- FROM sqlite_master
331
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
332
- 
333
- SQL (0.1ms) PRAGMA index_list("accounts")
334
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
335
- SQL (0.6ms)  SELECT name
336
- FROM sqlite_master
337
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
338
- 
7
+ SQL (1.1ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
339
8
  SQL (0.1ms) SELECT name
340
9
  FROM sqlite_master
341
10
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
342
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
343
- SQL (0.1ms) select sqlite_version(*)
344
- SQL (0.2ms)  SELECT name
345
- FROM sqlite_master
346
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
347
- 
348
- SQL (1.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
349
- SQL (0.1ms) PRAGMA index_list("accounts")
350
- SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
351
- SQL (0.2ms)  SELECT name
352
- FROM sqlite_master
353
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
- 
355
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
356
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
357
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
358
- SQL (0.1ms)  SELECT name
359
- FROM sqlite_master
360
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
361
- 
362
- SQL (0.1ms) SELECT version FROM "schema_migrations"
363
- SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192231')
364
- SQL (0.7ms)  SELECT name
365
- FROM sqlite_master
366
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
367
- 
368
- SQL (0.2ms) SELECT name
369
- FROM sqlite_master
370
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
371
- SQL (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
372
- Migrating to BentoCreateAccounts (20100918192341)
373
- SQL (0.1ms) select sqlite_version(*)
374
- SQL (0.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
375
- SQLite3::SQLException: table "accounts" already exists: CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
376
- SQL (0.4ms)  SELECT name
377
- FROM sqlite_master
378
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
379
- 
380
- SQL (1.6ms) select sqlite_version(*)
381
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
382
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
383
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11
+ SQL (2.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
384
12
  SQL (0.1ms) SELECT name
385
13
  FROM sqlite_master
386
14
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
387
- SQL (0.2ms)  SELECT name
15
+ SQL (1.5ms) CREATE TABLE "sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
16
+ SQL (0.0ms) PRAGMA index_list("sites")
17
+ SQL (2.0ms) CREATE UNIQUE INDEX "index_sites_on_name" ON "sites" ("name")
18
+ SQL (0.1ms) SELECT name
388
19
  FROM sqlite_master
389
20
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
390
- 
391
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
392
- Migrating to BentoCreateAccounts (20100918192341)
393
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
394
- SQL (0.0ms) PRAGMA index_list("accounts")
395
- SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
396
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
397
- Migrating to DeviseCreateUsers (20100924132032)
398
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime) 
21
+ SQL (2.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer, "site_id" integer) 
399
22
  SQL (0.0ms) PRAGMA index_list("users")
400
- SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
401
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
402
- SQL (0.2ms)  SELECT name
403
- FROM sqlite_master
404
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
405
- 
406
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
407
- SQL (0.1ms)  SELECT name
408
- FROM sqlite_master
409
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
- 
411
- SQL (0.1ms) PRAGMA index_list("accounts")
412
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
413
- SQL (0.1ms) PRAGMA index_list("users")
414
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
415
- SQL (0.2ms) SELECT name
416
- FROM sqlite_master
417
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
418
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
419
- SQL (0.1ms) select sqlite_version(*)
420
- SQL (0.2ms)  SELECT name
421
- FROM sqlite_master
422
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
423
- 
424
- SQL (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
425
- SQL (0.0ms) PRAGMA index_list("accounts")
426
- SQL (1.0ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
427
- SQL (0.2ms)  SELECT name
428
- FROM sqlite_master
429
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
430
- 
431
- SQL (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
432
- SQL (0.1ms) PRAGMA index_list("users")
433
- SQL (1.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
434
- SQL (0.2ms)  SELECT name
435
- FROM sqlite_master
436
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
437
- 
438
- SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
439
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
440
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
441
- SQL (0.1ms)  SELECT name
23
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
24
+ SQL (0.1ms) SELECT name
442
25
  FROM sqlite_master
443
26
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
444
- 
445
- SQL (0.1ms) SELECT version FROM "schema_migrations"
446
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
447
- SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
448
- SQL (0.4ms)  SELECT name
27
+ SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
28
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
29
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
30
+ SQL (0.1ms) SELECT name
449
31
  FROM sqlite_master
450
32
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
451
- 
452
- SQL (0.2ms) select sqlite_version(*)
453
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
454
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
455
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
34
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101029122257')
35
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
36
+ SQL (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
37
+ SQL (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
38
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
39
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20101029122256')
456
40
  SQL (0.1ms) SELECT name
457
41
  FROM sqlite_master
458
42
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
@@ -461,830 +45,76 @@ Migrating to DeviseCreateUsers (20100924132032)
461
45
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
462
46
  
463
47
  SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
464
- Migrating to BentoCreateAccounts (20100918192341)
465
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
466
- SQL (0.0ms) PRAGMA index_list("accounts")
467
- SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
468
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
469
- Migrating to DeviseCreateUsers (20100924132032)
470
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
471
- SQL (0.0ms) PRAGMA index_list("users")
472
- SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
473
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
474
- SQL (0.2ms)  SELECT name
475
- FROM sqlite_master
476
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
477
- 
478
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
479
- SQL (0.1ms)  SELECT name
48
+ SQL (0.5ms)  SELECT name
480
49
  FROM sqlite_master
481
50
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
482
51
  
483
- SQL (0.1ms) PRAGMA index_list("accounts")
484
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
485
- SQL (0.1ms) PRAGMA index_list("users")
486
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
487
- SQL (0.2ms) SELECT name
52
+ SQL (0.1ms) SELECT name
488
53
  FROM sqlite_master
489
54
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
55
+ SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
491
56
  SQL (0.1ms) select sqlite_version(*)
492
- SQL (0.2ms)  SELECT name
493
- FROM sqlite_master
494
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
495
- 
496
- SQL (1.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
497
- SQL (0.1ms) PRAGMA index_list("accounts")
498
- SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
499
- SQL (0.1ms)  SELECT name
500
- FROM sqlite_master
501
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
502
- 
503
- SQL (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
504
- SQL (0.0ms) PRAGMA index_list("users")
505
- SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
506
- SQL (0.1ms)  SELECT name
507
- FROM sqlite_master
508
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
509
- 
510
- SQL (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
511
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
512
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
513
57
  SQL (0.1ms)  SELECT name
514
58
  FROM sqlite_master
515
59
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
516
60
  
517
- SQL (0.1ms) SELECT version FROM "schema_migrations"
518
- SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
519
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
520
- SQL (0.4ms)  SELECT name
521
- FROM sqlite_master
522
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
523
- 
524
- SQL (0.1ms) select sqlite_version(*)
525
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
526
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
527
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
528
- SQL (0.2ms) SELECT name
529
- FROM sqlite_master
530
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
531
- SQL (0.2ms)  SELECT name
532
- FROM sqlite_master
533
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
534
- 
535
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
536
- Migrating to BentoCreateAccounts (20100918192341)
537
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
538
- SQL (0.6ms) PRAGMA index_list("accounts")
539
- SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
540
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
541
- Migrating to DeviseCreateUsers (20100924132032)
542
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
543
- SQL (0.0ms) PRAGMA index_list("users")
544
- SQL (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
545
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
546
- SQL (0.2ms)  SELECT name
547
- FROM sqlite_master
548
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
- 
550
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
61
+ SQL (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
62
+ SQL (0.0ms) PRAGMA index_list("accounts")
63
+ SQL (1.0ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
551
64
  SQL (0.1ms)  SELECT name
552
65
  FROM sqlite_master
553
66
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
554
67
  
555
- SQL (0.1ms) PRAGMA index_list("accounts")
556
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
557
- SQL (0.1ms) PRAGMA index_list("users")
558
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
559
- SQL (0.2ms) SELECT name
560
- FROM sqlite_master
561
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
562
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
563
- SQL (0.1ms) select sqlite_version(*)
564
- SQL (0.2ms)  SELECT name
565
- FROM sqlite_master
566
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
567
- 
568
- SQL (1.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
569
- SQL (0.1ms) PRAGMA index_list("accounts")
570
- SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
571
- SQL (0.2ms)  SELECT name
572
- FROM sqlite_master
573
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
574
- 
575
- SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
576
- SQL (0.0ms) PRAGMA index_list("users")
577
- SQL (1.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
68
+ SQL (1.0ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
578
69
  SQL (0.1ms)  SELECT name
579
70
  FROM sqlite_master
580
71
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
581
72
  
582
- SQL (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
583
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
584
- SQL (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
585
- SQL (0.2ms)  SELECT name
586
- FROM sqlite_master
587
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
588
- 
589
- SQL (0.1ms) SELECT version FROM "schema_migrations"
590
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
591
- SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
592
- SQL (0.4ms)  SELECT name
593
- FROM sqlite_master
594
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
595
- 
596
- SQL (0.1ms) select sqlite_version(*)
597
- SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
598
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
599
- SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
600
- SQL (0.1ms) SELECT name
601
- FROM sqlite_master
602
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
603
- SQL (0.2ms)  SELECT name
604
- FROM sqlite_master
605
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
606
- 
607
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
608
- Migrating to BentoCreateAccounts (20100918192341)
609
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
610
- SQL (0.0ms) PRAGMA index_list("accounts")
611
- SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
612
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
613
- Migrating to DeviseCreateUsers (20100924132032)
614
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
615
- SQL (0.0ms) PRAGMA index_list("users")
616
- SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
617
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
618
- SQL (0.2ms)  SELECT name
619
- FROM sqlite_master
620
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
621
- 
622
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
73
+ SQL (1.1ms) CREATE TABLE "sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
74
+ SQL (0.0ms) PRAGMA index_list("sites")
75
+ SQL (1.1ms) CREATE UNIQUE INDEX "index_sites_on_name" ON "sites" ("name")
623
76
  SQL (0.1ms)  SELECT name
624
77
  FROM sqlite_master
625
78
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
626
79
  
627
- SQL (0.1ms) PRAGMA index_list("accounts")
628
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
629
- SQL (0.1ms) PRAGMA index_list("users")
630
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
631
- SQL (0.2ms) SELECT name
632
- FROM sqlite_master
633
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
634
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
635
- SQL (0.1ms) select sqlite_version(*)
636
- SQL (0.2ms)  SELECT name
637
- FROM sqlite_master
638
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
639
- 
640
- SQL (2.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
641
- SQL (0.1ms) PRAGMA index_list("accounts")
642
- SQL (2.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
643
- SQL (0.2ms)  SELECT name
644
- FROM sqlite_master
645
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
646
- 
647
- SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
80
+ SQL (1.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer, "site_id" integer)
648
81
  SQL (0.0ms) PRAGMA index_list("users")
649
- SQL (1.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
82
+ SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
650
83
  SQL (0.1ms)  SELECT name
651
84
  FROM sqlite_master
652
85
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
86
  
654
- SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
655
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
656
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87
+ SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
88
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
89
+ SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
657
90
  SQL (0.2ms)  SELECT name
658
91
  FROM sqlite_master
659
92
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
660
93
  
661
94
  SQL (0.1ms) SELECT version FROM "schema_migrations"
662
- SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
663
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
664
- SQL (0.4ms)  SELECT name
665
- FROM sqlite_master
666
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
667
- 
668
- SQL (0.1ms) select sqlite_version(*)
669
- SQL (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
670
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
671
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
672
- SQL (0.1ms) SELECT name
673
- FROM sqlite_master
674
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
675
- SQL (0.2ms)  SELECT name
676
- FROM sqlite_master
677
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
678
- 
679
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
680
- Migrating to BentoCreateAccounts (20100918192341)
681
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
682
- SQL (0.1ms) PRAGMA index_list("accounts")
683
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
684
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
685
- Migrating to DeviseCreateUsers (20100924132032)
686
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
687
- SQL (0.0ms) PRAGMA index_list("users")
688
- SQL (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
689
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
690
- SQL (0.2ms)  SELECT name
691
- FROM sqlite_master
692
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
693
- 
694
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
695
- SQL (0.1ms)  SELECT name
696
- FROM sqlite_master
697
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
698
- 
699
- SQL (0.1ms) PRAGMA index_list("accounts")
700
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
701
- SQL (0.1ms) PRAGMA index_list("users")
702
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
95
+ SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20101029122257')
96
+ SQL (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
97
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
98
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
99
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
100
+ SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101029122256')
101
+ SQL (0.2ms) select sqlite_version(*)
703
102
  SQL (0.4ms) SELECT name
704
103
  FROM sqlite_master
705
104
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
706
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
707
- SQL (0.1ms) select sqlite_version(*)
708
- SQL (0.2ms)  SELECT name
709
- FROM sqlite_master
710
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
711
- 
712
- SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
713
- SQL (0.0ms) PRAGMA index_list("accounts")
714
- SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
715
- SQL (0.2ms)  SELECT name
716
- FROM sqlite_master
717
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
718
- 
719
- SQL (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
720
- SQL (0.1ms) PRAGMA index_list("users")
721
- SQL (2.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
722
- SQL (0.2ms)  SELECT name
723
- FROM sqlite_master
724
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
725
- 
726
- SQL (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
727
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
728
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
105
  SQL (0.1ms)  SELECT name
730
106
  FROM sqlite_master
731
107
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
732
- 
733
- SQL (0.1ms) SELECT version FROM "schema_migrations"
734
- SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
735
- SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
736
- SQL (0.4ms)  SELECT name
737
- FROM sqlite_master
738
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
739
- 
740
- SQL (0.1ms) select sqlite_version(*)
741
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
742
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
743
- SQL (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
744
- SQL (0.1ms) SELECT name
745
- FROM sqlite_master
746
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
747
- SQL (0.2ms)  SELECT name
748
- FROM sqlite_master
749
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
- 
751
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
752
- Migrating to BentoCreateAccounts (20100918192341)
753
- SQL (0.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
754
- SQL (0.1ms) PRAGMA index_list("accounts")
755
- SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
756
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
757
- Migrating to DeviseCreateUsers (20100924132032)
758
- SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
759
- SQL (0.0ms) PRAGMA index_list("users")
760
- SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
761
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
762
- SQL (0.2ms)  SELECT name
763
- FROM sqlite_master
764
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
765
108
  
766
109
  SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
767
110
  SQL (0.1ms)  SELECT name
768
111
  FROM sqlite_master
769
112
  WHERE type = 'table' AND NOT name = 'sqlite_sequence'
770
113
  
771
- SQL (0.1ms) PRAGMA index_list("accounts")
772
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
773
- SQL (0.1ms) PRAGMA index_list("users")
774
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
775
- SQL (0.2ms) SELECT name
776
- FROM sqlite_master
777
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
778
- SQL (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
779
- SQL (0.1ms) select sqlite_version(*)
780
- SQL (0.2ms)  SELECT name
781
- FROM sqlite_master
782
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
783
- 
784
- SQL (1.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
785
- SQL (0.0ms) PRAGMA index_list("accounts")
786
- SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
787
- SQL (0.2ms)  SELECT name
788
- FROM sqlite_master
789
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
790
- 
791
- SQL (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
792
- SQL (0.1ms) PRAGMA index_list("users")
793
- SQL (1.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
794
- SQL (0.1ms)  SELECT name
795
- FROM sqlite_master
796
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
797
- 
798
- SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
799
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
800
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
801
- SQL (0.1ms)  SELECT name
802
- FROM sqlite_master
803
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
804
- 
805
- SQL (0.1ms) SELECT version FROM "schema_migrations"
806
- SQL (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
807
- SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
808
- SQL (0.4ms)  SELECT name
809
- FROM sqlite_master
810
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
811
- 
812
- SQL (0.1ms) select sqlite_version(*)
813
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
814
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
815
- SQL (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
816
- SQL (0.2ms) SELECT name
817
- FROM sqlite_master
818
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
819
- SQL (0.1ms)  SELECT name
820
- FROM sqlite_master
821
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
822
- 
823
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
824
- Migrating to BentoCreateAccounts (20100918192341)
825
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
826
- SQL (0.1ms) PRAGMA index_list("accounts")
827
- SQL (0.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
828
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100918192341')
829
- Migrating to DeviseCreateUsers (20100924132032)
830
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
831
- SQL (0.0ms) PRAGMA index_list("users")
832
- SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
833
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
834
- SQL (0.2ms)  SELECT name
835
- FROM sqlite_master
836
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
837
- 
838
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
839
- SQL (0.1ms)  SELECT name
840
- FROM sqlite_master
841
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
842
- 
843
- SQL (0.1ms) PRAGMA index_list("accounts")
844
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
845
- SQL (0.1ms) PRAGMA index_list("users")
846
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
847
- SQL (0.3ms) SELECT name
848
- FROM sqlite_master
849
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
850
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
851
- SQL (0.1ms) select sqlite_version(*)
852
- SQL (0.2ms)  SELECT name
853
- FROM sqlite_master
854
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
855
- 
856
- SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
857
- SQL (0.1ms) PRAGMA index_list("accounts")
858
- SQL (1.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
859
- SQL (0.2ms)  SELECT name
860
- FROM sqlite_master
861
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
862
- 
863
- SQL (3.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime)
864
- SQL (0.1ms) PRAGMA index_list("users")
865
- SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
866
- SQL (0.1ms)  SELECT name
867
- FROM sqlite_master
868
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
869
- 
870
- SQL (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
871
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
872
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
873
- SQL (0.2ms)  SELECT name
874
- FROM sqlite_master
875
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
876
- 
877
- SQL (0.1ms) SELECT version FROM "schema_migrations"
878
- SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
879
- SQL (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20100918192341')
880
- SQL (1.5ms)  SELECT name
881
- FROM sqlite_master
882
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
883
- 
884
- SQL (0.2ms) SELECT name
885
- FROM sqlite_master
886
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
887
- SQL (1.5ms)  SELECT name
888
- FROM sqlite_master
889
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
890
- 
891
- SQL (0.3ms) SELECT name
892
- FROM sqlite_master
893
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
894
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
895
- Migrating to DeviseCreateUsers (20100924132032)
896
- Migrating to BentoCreateAccounts (20101015094218)
897
- SQL (0.1ms) select sqlite_version(*)
898
- SQL (0.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
899
- SQLite3::SQLException: table "accounts" already exists: CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
900
- SQL (0.5ms)  SELECT name
901
- FROM sqlite_master
902
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
903
- 
904
- SQL (0.1ms) select sqlite_version(*)
905
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
906
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
907
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
908
- SQL (0.1ms) SELECT name
909
- FROM sqlite_master
910
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
911
- SQL (0.1ms)  SELECT name
912
- FROM sqlite_master
913
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
914
- 
915
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
916
- Migrating to DeviseCreateUsers (20100924132032)
917
- SQL (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
918
- SQL (0.1ms) PRAGMA index_list("users")
919
- SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
920
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
921
- Migrating to BentoCreateAccounts (20101015094218)
922
- SQL (0.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
923
114
  SQL (0.0ms) PRAGMA index_list("accounts")
924
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
925
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
926
- Migrating to BentoAddAccountIdToAccounts (20101015094219)
927
- SQL (0.4ms)  SELECT name
928
- FROM sqlite_master
929
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
930
- 
931
- SQL (0.1ms) select sqlite_version(*)
932
- SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
933
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
934
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
935
- SQL (0.1ms) SELECT name
936
- FROM sqlite_master
937
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
938
- SQL (0.1ms)  SELECT name
939
- FROM sqlite_master
940
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
941
- 
942
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
943
- Migrating to DeviseCreateUsers (20100924132032)
944
- SQL (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
945
- SQL (0.1ms) PRAGMA index_list("users")
946
- SQL (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
947
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
948
- Migrating to BentoCreateAccounts (20101015094218)
949
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
950
- SQL (0.1ms) PRAGMA index_list("accounts")
951
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
952
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
953
- Migrating to BentoAddAccountIdToAccounts (20101015094219)
954
- SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
955
- SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
956
- SQL (0.4ms)  SELECT name
957
- FROM sqlite_master
958
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
959
- 
960
- SQL (0.1ms) select sqlite_version(*)
961
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
962
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
963
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
- SQL (0.2ms) SELECT name
965
- FROM sqlite_master
966
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
967
- SQL (0.2ms)  SELECT name
968
- FROM sqlite_master
969
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
970
- 
971
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
972
- Migrating to DeviseCreateUsers (20100924132032)
973
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
974
- SQL (0.0ms) PRAGMA index_list("users")
975
- SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
976
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
977
- Migrating to BentoCreateAccounts (20101015094218)
978
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
979
- SQL (0.1ms) PRAGMA index_list("accounts")
980
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
981
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094218')
982
- Migrating to BentoAddAccountIdToAccounts (20101015094219)
983
- SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
984
- SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
985
- SQL (0.4ms)  SELECT name
986
- FROM sqlite_master
987
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
988
- 
989
- SQL (0.1ms) select sqlite_version(*)
990
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
991
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
992
- SQL (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
993
- SQL (0.1ms) SELECT name
994
- FROM sqlite_master
995
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
996
- SQL (0.1ms)  SELECT name
997
- FROM sqlite_master
998
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
999
- 
1000
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
- Migrating to DeviseCreateUsers (20100924132032)
1002
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1003
- SQL (0.1ms) PRAGMA index_list("users")
1004
- SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1005
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1006
- Migrating to BentoCreateAccounts (20101015094514)
1007
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1008
- SQL (1.0ms) PRAGMA index_list("accounts")
1009
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1010
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1011
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1012
- SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
1013
- SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
1014
- SQL (0.4ms)  SELECT name
1015
- FROM sqlite_master
1016
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1017
- 
1018
- SQL (0.1ms) select sqlite_version(*)
1019
- SQL (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1020
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
1021
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1022
- SQL (0.2ms) SELECT name
1023
- FROM sqlite_master
1024
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1025
- SQL (0.2ms)  SELECT name
1026
- FROM sqlite_master
1027
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1028
- 
1029
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1030
- Migrating to DeviseCreateUsers (20100924132032)
1031
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1032
- SQL (0.0ms) PRAGMA index_list("users")
1033
- SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1034
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1035
- Migrating to BentoCreateAccounts (20101015094514)
1036
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1037
- SQL (0.1ms) PRAGMA index_list("accounts")
1038
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1039
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1040
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1041
- SQL (0.2ms) ALTER TABLE "users" ADD "account_id" integer NOT NULL
1042
- SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "users" ADD "account_id" integer NOT NULL
1043
- SQL (0.4ms)  SELECT name
1044
- FROM sqlite_master
1045
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1046
- 
1047
- SQL (0.1ms) select sqlite_version(*)
1048
- SQL (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1049
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
1050
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1051
- SQL (0.2ms) SELECT name
1052
- FROM sqlite_master
1053
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1054
- SQL (0.2ms)  SELECT name
1055
- FROM sqlite_master
1056
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1057
- 
1058
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1059
- Migrating to DeviseCreateUsers (20100924132032)
1060
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1061
- SQL (0.1ms) PRAGMA index_list("users")
1062
- SQL (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1063
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1064
- Migrating to BentoCreateAccounts (20101015094514)
1065
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1066
- SQL (0.1ms) PRAGMA index_list("accounts")
1067
- SQL (0.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1068
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1069
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1070
- SQL (0.5ms) ALTER TABLE "users" ADD "account_id" integer
1071
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094515')
1072
- SQL (0.2ms)  SELECT name
1073
- FROM sqlite_master
1074
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1075
- 
1076
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1077
- SQL (0.1ms)  SELECT name
1078
- FROM sqlite_master
1079
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1080
- 
1081
- SQL (0.1ms) PRAGMA index_list("accounts")
1082
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1083
- SQL (0.1ms) PRAGMA index_list("users")
1084
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1085
- SQL (0.2ms) SELECT name
1086
- FROM sqlite_master
1087
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1088
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1089
- SQL (0.1ms) select sqlite_version(*)
1090
- SQL (0.2ms)  SELECT name
1091
- FROM sqlite_master
1092
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1093
- 
1094
- SQL (1.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime)
1095
- SQL (0.1ms) PRAGMA index_list("accounts")
1096
- SQL (1.3ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1097
- SQL (0.2ms)  SELECT name
1098
- FROM sqlite_master
1099
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1100
- 
1101
- SQL (2.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer)
1102
- SQL (0.1ms) PRAGMA index_list("users")
1103
- SQL (8.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1104
- SQL (0.3ms)  SELECT name
1105
- FROM sqlite_master
1106
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1107
- 
1108
- SQL (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1109
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
1110
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1111
- SQL (0.2ms)  SELECT name
1112
- FROM sqlite_master
1113
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1114
- 
1115
- SQL (0.1ms) SELECT version FROM "schema_migrations"
1116
- SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
1117
- SQL (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1118
- SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1119
- SQL (0.7ms)  SELECT name
1120
- FROM sqlite_master
1121
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1122
- 
1123
- SQL (0.3ms) SELECT name
1124
- FROM sqlite_master
1125
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1126
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1127
- Migrating to DeviseCreateUsers (20100924132032)
1128
- Migrating to BentoCreateAccounts (20101015094514)
1129
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1130
- SQL (0.2ms) select sqlite_version(*)
1131
- SQL (0.3ms)  SELECT name
1132
- FROM sqlite_master
1133
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1134
- 
1135
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1136
- SQL (0.2ms)  SELECT name
1137
- FROM sqlite_master
1138
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1139
- 
1140
- SQL (0.1ms) PRAGMA index_list("accounts")
1141
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1142
- SQL (0.1ms) PRAGMA index_list("users")
1143
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1144
- SQL (0.7ms)  SELECT name
1145
- FROM sqlite_master
1146
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1147
- 
1148
- SQL (0.2ms) SELECT name
1149
- FROM sqlite_master
1150
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1151
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1152
- Migrating to DeviseCreateUsers (20100924132032)
1153
- Migrating to BentoCreateAccounts (20101015094514)
1154
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1155
- Migrating to CreateProjects (20101015143011)
1156
- SQL (0.1ms) select sqlite_version(*)
1157
- SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1158
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015143011')
1159
- SQL (0.5ms)  SELECT name
1160
- FROM sqlite_master
1161
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1162
- 
1163
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1164
- SQL (0.2ms)  SELECT name
1165
- FROM sqlite_master
1166
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1167
- 
1168
- SQL (0.1ms) PRAGMA index_list("accounts")
1169
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
115
+ SQL (0.0ms) PRAGMA index_info('index_accounts_on_name')
1170
116
  SQL (0.0ms) PRAGMA index_list("projects")
1171
- SQL (0.1ms) PRAGMA index_list("users")
1172
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1173
- SQL (0.2ms)  SELECT name
1174
- FROM sqlite_master
1175
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1176
- 
1177
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1178
- SQL (0.1ms) select sqlite_version(*)
1179
- SQL (0.2ms) SELECT name
1180
- FROM sqlite_master
1181
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1182
- SQL (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1183
- SQL (0.1ms) PRAGMA index_list("accounts")
1184
- SQL (1.4ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1185
- SQL (0.2ms) SELECT name
1186
- FROM sqlite_master
1187
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1188
- SQL (1.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1189
- SQL (0.2ms) SELECT name
1190
- FROM sqlite_master
1191
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1192
- SQL (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer) 
1193
- SQL (0.1ms) PRAGMA index_list("users")
1194
- SQL (1.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1195
- SQL (0.3ms) SELECT name
1196
- FROM sqlite_master
1197
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1198
- SQL (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1199
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
1200
- SQL (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1201
- SQL (0.2ms) SELECT name
1202
- FROM sqlite_master
1203
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1204
- SQL (0.1ms) SELECT version FROM "schema_migrations"
1205
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
1206
- SQL (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1207
- SQL (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1208
- SQL (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
1209
- SQL (0.4ms)  SELECT name
1210
- FROM sqlite_master
1211
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1212
- 
1213
- SQL (0.1ms) select sqlite_version(*)
1214
- SQL (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1215
- SQL (0.0ms) PRAGMA index_list("schema_migrations")
1216
- SQL (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1217
- SQL (0.1ms) SELECT name
1218
- FROM sqlite_master
1219
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1220
- SQL (0.1ms)  SELECT name
1221
- FROM sqlite_master
1222
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1223
- 
1224
- SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1225
- Migrating to DeviseCreateUsers (20100924132032)
1226
- SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1227
- SQL (0.0ms) PRAGMA index_list("users")
1228
- SQL (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1229
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100924132032')
1230
- Migrating to BentoCreateAccounts (20101015094514)
1231
- SQL (0.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1232
- SQL (0.1ms) PRAGMA index_list("accounts")
1233
- SQL (0.5ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1234
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094514')
1235
- Migrating to BentoAddAccountIdToAccounts (20101015094515)
1236
- SQL (0.5ms) ALTER TABLE "users" ADD "account_id" integer
1237
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015094515')
1238
- Migrating to CreateProjects (20101015143011)
1239
- SQL (0.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1240
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101015143011')
1241
- SQL (0.3ms)  SELECT name
1242
- FROM sqlite_master
1243
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1244
- 
1245
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1246
- SQL (0.1ms)  SELECT name
1247
- FROM sqlite_master
1248
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1249
- 
1250
- SQL (0.1ms) PRAGMA index_list("accounts")
1251
- SQL (0.1ms) PRAGMA index_info('index_accounts_on_name')
1252
- SQL (0.1ms) PRAGMA index_list("projects")
1253
- SQL (0.1ms) PRAGMA index_list("users")
1254
- SQL (0.1ms) PRAGMA index_info('index_users_on_email')
1255
- SQL (0.2ms)  SELECT name
1256
- FROM sqlite_master
1257
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1258
- 
1259
- SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1260
- SQL (0.1ms) select sqlite_version(*)
1261
- SQL (0.2ms) SELECT name
1262
- FROM sqlite_master
1263
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1264
- SQL (1.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "plan" varchar(255), "created_at" datetime, "updated_at" datetime) 
1265
- SQL (0.1ms) PRAGMA index_list("accounts")
1266
- SQL (1.7ms) CREATE UNIQUE INDEX "index_accounts_on_name" ON "accounts" ("name")
1267
- SQL (0.2ms) SELECT name
1268
- FROM sqlite_master
1269
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1270
- SQL (7.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "account_id" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1271
- SQL (0.2ms) SELECT name
1272
- FROM sqlite_master
1273
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1274
- SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(128) DEFAULT '' NOT NULL, "password_salt" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "created_at" datetime, "updated_at" datetime, "account_id" integer) 
1275
- SQL (0.1ms) PRAGMA index_list("users")
1276
- SQL (1.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
1277
- SQL (0.2ms) SELECT name
1278
- FROM sqlite_master
1279
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1280
- SQL (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1281
- SQL (0.1ms) PRAGMA index_list("schema_migrations")
1282
- SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1283
- SQL (0.2ms) SELECT name
1284
- FROM sqlite_master
1285
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1286
- SQL (0.1ms) SELECT version FROM "schema_migrations"
1287
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015143011')
1288
- SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20100924132032')
1289
- SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094514')
1290
- SQL (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20101015094515')
117
+ SQL (0.0ms) PRAGMA index_list("sites")
118
+ SQL (0.0ms) PRAGMA index_info('index_sites_on_name')
119
+ SQL (0.0ms) PRAGMA index_list("users")
120
+ SQL (0.0ms) PRAGMA index_info('index_users_on_email')