cathode 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +346 -125
  3. data/Rakefile +1 -0
  4. data/app/controllers/cathode/base_controller.rb +28 -45
  5. data/app/models/cathode/token.rb +21 -0
  6. data/config/routes.rb +16 -0
  7. data/db/migrate/20140425164100_create_cathode_tokens.rb +11 -0
  8. data/lib/cathode.rb +0 -13
  9. data/lib/cathode/_version.rb +2 -1
  10. data/lib/cathode/action.rb +197 -39
  11. data/lib/cathode/action_dsl.rb +60 -0
  12. data/lib/cathode/base.rb +81 -12
  13. data/lib/cathode/create_request.rb +21 -0
  14. data/lib/cathode/custom_request.rb +5 -0
  15. data/lib/cathode/debug.rb +25 -0
  16. data/lib/cathode/destroy_request.rb +13 -0
  17. data/lib/cathode/engine.rb +9 -0
  18. data/lib/cathode/exceptions.rb +20 -0
  19. data/lib/cathode/index_request.rb +40 -0
  20. data/lib/cathode/object_collection.rb +49 -0
  21. data/lib/cathode/query.rb +24 -0
  22. data/lib/cathode/railtie.rb +21 -0
  23. data/lib/cathode/request.rb +139 -7
  24. data/lib/cathode/resource.rb +50 -19
  25. data/lib/cathode/resource_dsl.rb +46 -0
  26. data/lib/cathode/show_request.rb +13 -0
  27. data/lib/cathode/update_request.rb +26 -0
  28. data/lib/cathode/version.rb +112 -23
  29. data/lib/tasks/cathode_tasks.rake +5 -4
  30. data/spec/dummy/app/api/api.rb +0 -0
  31. data/spec/dummy/app/models/payment.rb +3 -0
  32. data/spec/dummy/app/models/product.rb +1 -0
  33. data/spec/dummy/app/models/sale.rb +5 -0
  34. data/spec/dummy/app/models/salesperson.rb +3 -0
  35. data/spec/dummy/db/development.sqlite3 +0 -0
  36. data/spec/dummy/db/migrate/20140409183635_create_sales.rb +11 -0
  37. data/spec/dummy/db/migrate/20140423172419_create_salespeople.rb +11 -0
  38. data/spec/dummy/db/migrate/20140424181343_create_payments.rb +10 -0
  39. data/spec/dummy/db/schema.rb +31 -1
  40. data/spec/dummy/db/test.sqlite3 +0 -0
  41. data/spec/dummy/log/development.log +1167 -0
  42. data/spec/dummy/log/test.log +180602 -0
  43. data/spec/dummy/spec/factories/payments.rb +8 -0
  44. data/spec/dummy/spec/factories/products.rb +1 -1
  45. data/spec/dummy/spec/factories/sales.rb +9 -0
  46. data/spec/dummy/spec/factories/salespeople.rb +7 -0
  47. data/spec/dummy/spec/requests/requests_spec.rb +434 -0
  48. data/spec/lib/cathode/action_spec.rb +136 -0
  49. data/spec/lib/cathode/base_spec.rb +34 -0
  50. data/spec/lib/cathode/create_request_spec.rb +40 -0
  51. data/spec/lib/cathode/custom_request_spec.rb +31 -0
  52. data/spec/lib/cathode/debug_spec.rb +25 -0
  53. data/spec/lib/cathode/destroy_request_spec.rb +28 -0
  54. data/spec/lib/cathode/index_request_spec.rb +62 -0
  55. data/spec/lib/cathode/object_collection_spec.rb +66 -0
  56. data/spec/lib/cathode/query_spec.rb +28 -0
  57. data/spec/lib/cathode/request_spec.rb +58 -0
  58. data/spec/lib/cathode/resource_spec.rb +482 -0
  59. data/spec/lib/cathode/show_request_spec.rb +23 -0
  60. data/spec/lib/cathode/update_request_spec.rb +41 -0
  61. data/spec/lib/cathode/version_spec.rb +416 -0
  62. data/spec/models/cathode/token_spec.rb +62 -0
  63. data/spec/spec_helper.rb +8 -2
  64. data/spec/support/factories/payments.rb +3 -0
  65. data/spec/support/factories/sale.rb +3 -0
  66. data/spec/support/factories/salespeople.rb +3 -0
  67. data/spec/support/factories/token.rb +3 -0
  68. data/spec/support/helpers.rb +13 -2
  69. metadata +192 -47
  70. data/app/helpers/cathode/application_helper.rb +0 -4
  71. data/spec/dummy/app/api/dummy_api.rb +0 -4
  72. data/spec/integration/api_spec.rb +0 -88
  73. data/spec/lib/action_spec.rb +0 -140
  74. data/spec/lib/base_spec.rb +0 -28
  75. data/spec/lib/request_spec.rb +0 -5
  76. data/spec/lib/resources_spec.rb +0 -78
  77. data/spec/lib/versioning_spec.rb +0 -104
Binary file
@@ -310,3 +310,1170 @@ Migrating to CreateProducts (20140404222551)
310
310
   (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
311
   (0.1ms) SELECT version FROM "schema_migrations"
312
312
   (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
313
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
314
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
315
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
316
+  (0.1ms) SELECT version FROM "schema_migrations"
317
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
318
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
319
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
320
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
321
+  (0.1ms) SELECT version FROM "schema_migrations"
322
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
323
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
324
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
325
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
+  (0.1ms) SELECT version FROM "schema_migrations"
327
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
328
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
329
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
330
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
331
+  (0.1ms) SELECT version FROM "schema_migrations"
332
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
333
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
334
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
335
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
336
+  (0.1ms) SELECT version FROM "schema_migrations"
337
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
338
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
339
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
340
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
341
+  (0.1ms) SELECT version FROM "schema_migrations"
342
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
343
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
344
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
345
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
+  (0.1ms) SELECT version FROM "schema_migrations"
347
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
348
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
349
+ Migrating to CreateSales (20140409183635)
350
+  (0.1ms) begin transaction
351
+  (0.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime) 
352
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140409183635"]]
353
+  (2.6ms) commit transaction
354
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
355
+  (2.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
356
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
357
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
358
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
359
+  (0.1ms) SELECT version FROM "schema_migrations"
360
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
361
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
362
+  (46.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
363
+  (223.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
364
+  (69.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
365
+  (16.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
366
+  (0.1ms) SELECT version FROM "schema_migrations"
367
+  (145.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
368
+  (30.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
369
+  (86.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
370
+  (3.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
371
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
372
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
373
+  (0.1ms) SELECT version FROM "schema_migrations"
374
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
375
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
376
+  (211.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
377
+  (4.0ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
378
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
379
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
380
+  (0.1ms) SELECT version FROM "schema_migrations"
381
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
382
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
383
+  (1.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
384
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
385
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
386
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
387
+  (0.1ms) SELECT version FROM "schema_migrations"
388
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
389
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
390
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
391
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
392
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
393
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
394
+  (0.1ms) SELECT version FROM "schema_migrations"
395
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
396
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
397
+  (1.8ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
398
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
399
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
400
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
401
+  (0.1ms) SELECT version FROM "schema_migrations"
402
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
403
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
404
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
405
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
406
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
407
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
408
+  (0.1ms) SELECT version FROM "schema_migrations"
409
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
410
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
411
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
412
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
413
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
414
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
415
+  (0.1ms) SELECT version FROM "schema_migrations"
416
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
417
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
418
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
419
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
420
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
421
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
422
+  (0.1ms) SELECT version FROM "schema_migrations"
423
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
424
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
425
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
426
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
427
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
428
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
429
+  (0.1ms) SELECT version FROM "schema_migrations"
430
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
431
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
432
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
433
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
434
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
435
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
+  (0.1ms) SELECT version FROM "schema_migrations"
437
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
438
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
439
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
440
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
441
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
442
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
443
+  (0.1ms) SELECT version FROM "schema_migrations"
444
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
445
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
446
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
447
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
448
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
449
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
450
+  (0.1ms) SELECT version FROM "schema_migrations"
451
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
452
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
453
+  (1.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
454
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
455
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
456
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
457
+  (0.1ms) SELECT version FROM "schema_migrations"
458
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
459
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
460
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
461
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
462
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
463
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
464
+  (0.1ms) SELECT version FROM "schema_migrations"
465
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
466
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
467
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
468
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
469
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
470
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
471
+  (0.1ms) SELECT version FROM "schema_migrations"
472
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
473
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
474
+  (32.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
475
+  (66.0ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
476
+  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
477
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
478
+  (0.1ms) SELECT version FROM "schema_migrations"
479
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
480
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
481
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
482
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
483
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
484
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
485
+  (0.1ms) SELECT version FROM "schema_migrations"
486
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
487
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
488
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
489
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
490
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
491
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
492
+  (0.1ms) SELECT version FROM "schema_migrations"
493
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
494
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
495
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
496
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
497
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
498
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
499
+  (0.1ms) SELECT version FROM "schema_migrations"
500
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
501
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
502
+  (219.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
503
+  (2.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
504
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
505
+  (5.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
+  (0.1ms) SELECT version FROM "schema_migrations"
507
+  (4.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
508
+  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
509
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
510
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
511
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
512
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
513
+  (0.1ms) SELECT version FROM "schema_migrations"
514
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
515
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
516
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
517
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
518
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
519
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
520
+  (0.1ms) SELECT version FROM "schema_migrations"
521
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
522
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
523
+  (1.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
524
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
525
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
526
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
527
+  (0.1ms) SELECT version FROM "schema_migrations"
528
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
529
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
530
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
531
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
532
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
533
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
534
+  (0.1ms) SELECT version FROM "schema_migrations"
535
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
536
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
537
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
538
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
539
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
540
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
541
+  (0.1ms) SELECT version FROM "schema_migrations"
542
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
543
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
544
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
545
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
546
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
547
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
548
+  (0.1ms) SELECT version FROM "schema_migrations"
549
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
550
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
551
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
552
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
553
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
554
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
555
+  (0.1ms) SELECT version FROM "schema_migrations"
556
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
557
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
558
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
559
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
560
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
561
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
562
+  (0.1ms) SELECT version FROM "schema_migrations"
563
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
564
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
565
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
566
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
567
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
568
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
569
+  (0.1ms) SELECT version FROM "schema_migrations"
570
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
571
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
572
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
573
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
574
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
575
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
576
+  (0.1ms) SELECT version FROM "schema_migrations"
577
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
578
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
579
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
580
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
581
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
582
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
583
+  (0.1ms) SELECT version FROM "schema_migrations"
584
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
585
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
586
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
587
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
588
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
589
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
590
+  (0.1ms) SELECT version FROM "schema_migrations"
591
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
592
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
593
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
594
+  (2.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
595
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
596
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
597
+  (0.1ms) SELECT version FROM "schema_migrations"
598
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
599
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
600
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
601
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
602
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
603
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
604
+  (0.1ms) SELECT version FROM "schema_migrations"
605
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
606
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
607
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
608
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
609
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
610
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
611
+  (0.1ms) SELECT version FROM "schema_migrations"
612
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
613
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
614
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
615
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
616
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
617
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
618
+  (0.1ms) SELECT version FROM "schema_migrations"
619
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
620
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
621
+  (1.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
622
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
623
+  (74.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
624
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
625
+  (0.1ms) SELECT version FROM "schema_migrations"
626
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
627
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
628
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
629
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
630
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
631
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
632
+  (0.1ms) SELECT version FROM "schema_migrations"
633
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
634
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
635
+  (54.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
636
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
637
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
638
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
639
+  (0.1ms) SELECT version FROM "schema_migrations"
640
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
641
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
642
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
643
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
644
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
645
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
+  (0.1ms) SELECT version FROM "schema_migrations"
647
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
648
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
649
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
650
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
651
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
652
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
653
+  (0.1ms) SELECT version FROM "schema_migrations"
654
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
655
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
656
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
657
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
658
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
659
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
660
+  (0.1ms) SELECT version FROM "schema_migrations"
661
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
662
+  (74.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
663
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
664
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
665
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
666
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
667
+  (0.1ms) SELECT version FROM "schema_migrations"
668
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
669
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
670
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
671
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
672
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
673
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
674
+  (0.1ms) SELECT version FROM "schema_migrations"
675
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
676
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
677
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
678
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
679
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
680
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
681
+  (0.1ms) SELECT version FROM "schema_migrations"
682
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
683
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
684
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
685
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
686
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
687
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
688
+  (0.1ms) SELECT version FROM "schema_migrations"
689
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
690
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
691
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
692
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
693
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
694
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
695
+  (0.1ms) SELECT version FROM "schema_migrations"
696
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
697
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
698
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
699
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
700
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
701
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
702
+  (0.1ms) SELECT version FROM "schema_migrations"
703
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
704
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
705
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
706
+  (1.9ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
707
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
708
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
709
+  (0.1ms) SELECT version FROM "schema_migrations"
710
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
711
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
712
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
713
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
714
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
715
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
716
+  (0.1ms) SELECT version FROM "schema_migrations"
717
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
718
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
719
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
720
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
721
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
722
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
723
+  (0.1ms) SELECT version FROM "schema_migrations"
724
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
725
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
726
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
727
+  (2.1ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
728
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
729
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
730
+  (0.1ms) SELECT version FROM "schema_migrations"
731
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
732
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
733
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
734
+  (1.9ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
735
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
736
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
737
+  (0.1ms) SELECT version FROM "schema_migrations"
738
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
739
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
740
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
741
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
742
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
743
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
744
+  (0.1ms) SELECT version FROM "schema_migrations"
745
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
746
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
747
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
748
+  (1.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
749
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
750
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
751
+  (0.1ms) SELECT version FROM "schema_migrations"
752
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
753
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
754
+  (1.8ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
755
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
756
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
757
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
758
+  (0.1ms) SELECT version FROM "schema_migrations"
759
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
760
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
761
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
762
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
763
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
764
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
765
+  (0.1ms) SELECT version FROM "schema_migrations"
766
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
767
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
768
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
769
+  (2.2ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
770
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
771
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
772
+  (0.1ms) SELECT version FROM "schema_migrations"
773
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
774
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
775
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
776
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
777
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
778
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
779
+  (0.1ms) SELECT version FROM "schema_migrations"
780
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
781
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
782
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
783
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
784
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
785
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
786
+  (0.1ms) SELECT version FROM "schema_migrations"
787
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
788
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
789
+  (40.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
790
+  (2.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
791
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
792
+  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
793
+  (0.1ms) SELECT version FROM "schema_migrations"
794
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
795
+  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
796
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
797
+  (1.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
798
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
799
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
800
+  (0.1ms) SELECT version FROM "schema_migrations"
801
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
802
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
803
+  (2.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
804
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
805
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
806
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
807
+  (0.1ms) SELECT version FROM "schema_migrations"
808
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
809
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
810
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
811
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
812
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
813
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
814
+  (0.1ms) SELECT version FROM "schema_migrations"
815
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
816
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
817
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
818
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
819
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
820
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
821
+  (0.1ms) SELECT version FROM "schema_migrations"
822
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
823
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
824
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
825
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
826
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
827
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
828
+  (0.1ms) SELECT version FROM "schema_migrations"
829
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
830
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
831
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
832
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
833
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
834
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
835
+  (0.1ms) SELECT version FROM "schema_migrations"
836
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
837
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
838
+  (2.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
839
+  (1.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
840
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
841
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
842
+  (0.1ms) SELECT version FROM "schema_migrations"
843
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
844
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
845
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
846
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
847
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
848
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
849
+  (0.1ms) SELECT version FROM "schema_migrations"
850
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
851
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
852
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
853
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
854
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
855
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
856
+  (0.1ms) SELECT version FROM "schema_migrations"
857
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
858
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
859
+  (37.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
860
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
861
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
862
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
863
+  (0.1ms) SELECT version FROM "schema_migrations"
864
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
865
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
866
+  (2.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
867
+  (1.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
868
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
869
+  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
870
+  (0.1ms) SELECT version FROM "schema_migrations"
871
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
872
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
873
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
874
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
875
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
876
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
877
+  (0.1ms) SELECT version FROM "schema_migrations"
878
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
879
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
880
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
881
+  (1.7ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
882
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
883
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
884
+  (0.1ms) SELECT version FROM "schema_migrations"
885
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
886
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
887
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
888
+  (2.2ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
889
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
890
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
891
+  (0.1ms) SELECT version FROM "schema_migrations"
892
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
893
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
894
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
895
+  (2.0ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
896
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
897
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
898
+  (0.1ms) SELECT version FROM "schema_migrations"
899
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
900
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
901
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
902
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
903
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
904
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
905
+  (0.1ms) SELECT version FROM "schema_migrations"
906
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
907
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
908
+  (1.8ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
909
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
910
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
911
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
912
+  (0.1ms) SELECT version FROM "schema_migrations"
913
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
914
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
915
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
916
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
917
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
918
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
919
+  (0.1ms) SELECT version FROM "schema_migrations"
920
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
921
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
922
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
923
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime)
924
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
925
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
926
+  (0.1ms) SELECT version FROM "schema_migrations"
927
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
928
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
929
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
930
+ Migrating to CreateSalespeople (20140423172419)
931
+  (0.1ms) begin transaction
932
+  (0.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
933
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140423172419"]]
934
+  (1.7ms) commit transaction
935
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
936
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
937
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
938
+ Migrating to CreateSalespeople (20140423172419)
939
+  (0.1ms) begin transaction
940
+  (0.9ms) DROP TABLE "salespeople"
941
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140423172419'
942
+  (2.0ms) commit transaction
943
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
944
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
945
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
946
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
947
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
948
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
949
+  (0.1ms) SELECT version FROM "schema_migrations"
950
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
951
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
952
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
953
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
954
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
955
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
956
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
957
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
958
+  (0.1ms) SELECT version FROM "schema_migrations"
959
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
960
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
961
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
962
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
963
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
964
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
965
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
966
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
967
+  (0.1ms) SELECT version FROM "schema_migrations"
968
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
969
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
970
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
971
+  (1.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
972
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
973
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
974
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
975
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
976
+  (0.1ms) SELECT version FROM "schema_migrations"
977
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
978
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
979
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
980
+  (29.7ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
981
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
982
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
983
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
984
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
985
+  (0.1ms) SELECT version FROM "schema_migrations"
986
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
987
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
988
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
989
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
990
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
991
+  (1.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
992
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
993
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
994
+  (0.1ms) SELECT version FROM "schema_migrations"
995
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
996
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
997
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
998
+  (1.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
999
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1000
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1001
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1002
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1003
+  (0.1ms) SELECT version FROM "schema_migrations"
1004
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1005
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1006
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1007
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1008
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1009
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1010
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1011
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1012
+  (0.1ms) SELECT version FROM "schema_migrations"
1013
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1014
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1015
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1016
+  (2.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1017
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1018
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1019
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1020
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1021
+  (0.1ms) SELECT version FROM "schema_migrations"
1022
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1023
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1024
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1025
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1026
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1027
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1028
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1029
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1030
+  (0.1ms) SELECT version FROM "schema_migrations"
1031
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1032
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1033
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1034
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1035
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1036
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1037
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1038
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1039
+  (0.1ms) SELECT version FROM "schema_migrations"
1040
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1041
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1042
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1043
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime) 
1044
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime)
1045
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer) 
1046
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1047
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1048
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1049
+  (0.1ms) SELECT version FROM "schema_migrations"
1050
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1051
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1052
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1053
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1054
+  (2.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime) 
1055
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime)
1056
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer) 
1057
+  (1.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1058
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1059
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1060
+  (0.1ms) SELECT version FROM "schema_migrations"
1061
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1062
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1063
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1064
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1065
+  (1.3ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime) 
1066
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime)
1067
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer) 
1068
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1069
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1070
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1071
+  (0.1ms) SELECT version FROM "schema_migrations"
1072
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1073
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1074
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1075
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1076
+  (1.7ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime) 
1077
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime)
1078
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer) 
1079
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1080
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1081
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1082
+  (0.1ms) SELECT version FROM "schema_migrations"
1083
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1084
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1085
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1086
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1087
+  (1.6ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime) 
1088
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime)
1089
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer) 
1090
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
1091
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1092
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1093
+  (0.1ms) SELECT version FROM "schema_migrations"
1094
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1095
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1096
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1097
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1098
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1099
+ Migrating to CreateSalespeople (20140423172419)
1100
+  (0.1ms) begin transaction
1101
+  (0.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1102
+  (0.1ms) ALTER TABLE "sales" ADD "salesperson_id" integer
1103
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140423172419"]]
1104
+  (1.7ms) commit transaction
1105
+ Migrating to CreatePayments (20140424181343)
1106
+  (0.1ms) begin transaction
1107
+  (0.2ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1108
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140424181343"]]
1109
+  (1.7ms) commit transaction
1110
+ Migrating to CreateCathodeTokens (20140425164100)
1111
+  (0.1ms) begin transaction
1112
+  (0.3ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime)
1113
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140425164100"]]
1114
+  (2.1ms) commit transaction
1115
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1116
+  (1.6ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1117
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1118
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1119
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1120
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1121
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1122
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1123
+  (0.1ms) SELECT version FROM "schema_migrations"
1124
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1125
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1126
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1127
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1128
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1129
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1130
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1131
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1132
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1133
+  (1.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1134
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1135
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1136
+  (0.1ms) SELECT version FROM "schema_migrations"
1137
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1138
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1139
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1140
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1141
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1142
+  (2.3ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1143
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1144
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1145
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1146
+  (1.8ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1147
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1148
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1149
+  (0.1ms) SELECT version FROM "schema_migrations"
1150
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1151
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1152
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1153
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1154
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1155
+  (1.7ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1156
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1157
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1158
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1159
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1160
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1161
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1162
+  (0.1ms) SELECT version FROM "schema_migrations"
1163
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1164
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1165
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1166
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1167
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1168
+  (1.6ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1169
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1170
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1171
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1172
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1173
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1174
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1175
+  (0.1ms) SELECT version FROM "schema_migrations"
1176
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1177
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1178
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1179
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1180
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1181
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1182
+  (1.3ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1183
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1184
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1185
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1186
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1187
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1188
+  (0.1ms) SELECT version FROM "schema_migrations"
1189
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1190
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1191
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1192
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1193
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1194
+  (1.9ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1195
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1196
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1197
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1198
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1199
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1200
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1201
+  (0.1ms) SELECT version FROM "schema_migrations"
1202
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1203
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1204
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1205
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1206
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1207
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1208
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1209
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1210
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1211
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1212
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1213
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1214
+  (0.1ms) SELECT version FROM "schema_migrations"
1215
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1216
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1217
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1218
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1219
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1220
+  (53.9ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1221
+  (2.9ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1222
+  (3.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1223
+  (4.6ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1224
+  (3.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1225
+  (4.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1226
+  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1227
+  (0.1ms) SELECT version FROM "schema_migrations"
1228
+  (5.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1229
+  (6.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1230
+  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1231
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1232
+  (4.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1233
+  (2.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1234
+  (1.6ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1235
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1236
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1237
+  (2.2ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1238
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1239
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1240
+  (0.1ms) SELECT version FROM "schema_migrations"
1241
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1242
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1243
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1244
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1245
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1246
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1247
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1248
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1249
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1250
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1251
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1252
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1253
+  (0.1ms) SELECT version FROM "schema_migrations"
1254
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1255
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1256
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1257
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1258
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1259
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1260
+  (1.7ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1261
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1262
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1263
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1264
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1265
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1266
+  (0.1ms) SELECT version FROM "schema_migrations"
1267
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1268
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1269
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1270
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1271
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1272
+  (1.7ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1273
+  (1.3ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1274
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1275
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1276
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1277
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1278
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1279
+  (0.1ms) SELECT version FROM "schema_migrations"
1280
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1281
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1282
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1283
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1284
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1285
+  (1.7ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1286
+  (1.7ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1287
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1288
+  (1.3ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1289
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1290
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1291
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1292
+  (0.1ms) SELECT version FROM "schema_migrations"
1293
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1294
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1295
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1296
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1297
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1298
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1299
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1300
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1301
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1302
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1303
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1304
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1305
+  (0.1ms) SELECT version FROM "schema_migrations"
1306
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1307
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1308
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1309
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1310
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1311
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1312
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1313
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1314
+  (1.8ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1315
+  (1.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1316
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1317
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1318
+  (0.1ms) SELECT version FROM "schema_migrations"
1319
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1320
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1321
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1322
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1323
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1324
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1325
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1326
+  (1.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1327
+  (2.1ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1328
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1329
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1330
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1331
+  (0.1ms) SELECT version FROM "schema_migrations"
1332
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1333
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1334
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1335
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1336
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1337
+  (41.3ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1338
+  (83.8ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1339
+  (21.6ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1340
+  (2.0ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1341
+  (2.2ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1342
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1343
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1344
+  (0.1ms) SELECT version FROM "schema_migrations"
1345
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1346
+  (4.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1347
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1348
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1349
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1350
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1351
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1352
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1353
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1354
+  (2.8ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1355
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1356
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1357
+  (0.1ms) SELECT version FROM "schema_migrations"
1358
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1359
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1360
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1361
+  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1362
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1363
+  (1.6ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1364
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1365
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1366
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1367
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1368
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1369
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1370
+  (0.1ms) SELECT version FROM "schema_migrations"
1371
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1372
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1373
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1374
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1375
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1376
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1377
+  (1.4ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1378
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1379
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1380
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1381
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1382
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1383
+  (0.1ms) SELECT version FROM "schema_migrations"
1384
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1385
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1386
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1387
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1388
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1389
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1390
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1391
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1392
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1393
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1394
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1395
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1396
+  (0.1ms) SELECT version FROM "schema_migrations"
1397
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1398
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1399
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1400
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1401
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1402
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1403
+  (1.3ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1404
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1405
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1406
+  (1.3ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1407
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1408
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1409
+  (0.1ms) SELECT version FROM "schema_migrations"
1410
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1411
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1412
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1413
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1414
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1415
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1416
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1417
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1418
+  (1.5ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1419
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1420
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1421
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1422
+  (0.1ms) SELECT version FROM "schema_migrations"
1423
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1424
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1425
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1426
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1427
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1428
+  (1.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1429
+  (2.0ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1430
+  (1.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1431
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1432
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1433
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1434
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1435
+  (0.1ms) SELECT version FROM "schema_migrations"
1436
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1437
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1438
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1439
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1440
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1441
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1442
+  (2.2ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1443
+  (1.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1444
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1445
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1446
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1447
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1448
+  (0.1ms) SELECT version FROM "schema_migrations"
1449
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1450
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1451
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1452
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1453
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1454
+  (2.5ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1455
+  (1.7ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1456
+  (2.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1457
+  (2.2ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1458
+  (2.5ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1459
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1460
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1461
+  (0.1ms) SELECT version FROM "schema_migrations"
1462
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1463
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1464
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1465
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1466
+  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')
1467
+  (1.4ms) CREATE TABLE "cathode_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" boolean DEFAULT 't', "expired_at" datetime, "token" varchar(255), "created_at" datetime, "updated_at" datetime) 
1468
+  (1.5ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer, "sale_id" integer, "created_at" datetime, "updated_at" datetime)
1469
+  (2.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "cost" integer, "created_at" datetime, "updated_at" datetime) 
1470
+  (1.4ms) CREATE TABLE "sales" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "subtotal" integer, "taxes" integer, "created_at" datetime, "updated_at" datetime, "salesperson_id" integer)
1471
+  (1.4ms) CREATE TABLE "salespeople" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1472
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1473
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1474
+  (0.1ms) SELECT version FROM "schema_migrations"
1475
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140425164100')
1476
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140404222551')
1477
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140409183635')
1478
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423172419')
1479
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140424181343')