Connecting to database specified by database.yml  (0.4ms) select sqlite_version(*)  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateCustomers (20130318201927)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "customers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130318201927')  (1.4ms) commit transaction Migrating to CreateSubscriptions (20130318204455)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar(255), "plan_id" integer, "last_four" varchar(255), "coupon_id" integer, "card_type" varchar(255), "current_price" float, "customer_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130318204455')  (0.6ms) commit transaction Migrating to CreatePlans (20130318204458)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "stripe_id" varchar(255), "price" float, "features" text, "highlight" boolean, "display_order" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130318204458')  (0.6ms) commit transaction Migrating to CreateCoupons (20130318204502)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "coupons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar(255), "free_trial_length" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130318204502')  (0.6ms) commit transaction Migrating to AddIntervalToPlan (20130520163946)  (0.0ms) begin transaction  (0.2ms) ALTER TABLE "plans" ADD "interval" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130520163946')  (0.6ms) commit transaction  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.2ms) select sqlite_version(*)  (0.7ms) CREATE TABLE "coupons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar(255), "free_trial_length" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE TABLE "customers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.8ms) CREATE TABLE "plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "stripe_id" varchar(255), "price" float, "features" text, "highlight" boolean, "display_order" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "interval" varchar(255))  (0.7ms) CREATE TABLE "subscriptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar(255), "plan_id" integer, "last_four" varchar(255), "coupon_id" integer, "card_type" varchar(255), "current_price" float, "customer_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.0ms) SELECT version FROM "schema_migrations"  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130520163946')  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130318201927')  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130318204455')  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130318204458')  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130318204502')