(3.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateStripeLocalCustomers (20131030062900)  (0.1ms) BEGIN  (1.2ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "model_type" character varying(255), "model_id" integer, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_customers_on_model_type_and_model_id" ON "stripe_local_customers" ("model_type", "model_id") SQL (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131030062900"]]  (0.4ms) COMMIT Migrating to CreateStripeLocalCards (20131030064604)  (0.1ms) BEGIN  (1.2ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131030064604"]]  (0.4ms) COMMIT Migrating to CreateStripeLocalPlans (20131031024841)  (0.1ms) BEGIN  (1.6ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131031024841"]]  (0.3ms) COMMIT Migrating to CreateStripeLocalCoupons (20131031032453)  (0.1ms) BEGIN  (1.2ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "created_at" timestamp, "updated_at" timestamp)  (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131031032453"]]  (0.5ms) COMMIT Migrating to CreateStripeLocalDiscounts (20131101034057)  (0.1ms) BEGIN  (2.3ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131101034057"]]  (0.3ms) COMMIT Migrating to CreateStripeLocalSubscriptions (20131101092526)  (0.1ms) BEGIN  (1.3ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.9ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131101092526"]]  (0.5ms) COMMIT Migrating to CreateStripeLocalInvoices (20131101110359)  (0.2ms) BEGIN  (1.6ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131101110359"]]  (0.3ms) COMMIT Migrating to CreateStripeLocalLineItems (20131101134517)  (0.1ms) BEGIN  (1.4ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131101134517"]]  (0.3ms) COMMIT Migrating to CreateStripeLocalCharges (20131101171503)  (0.1ms) BEGIN  (1.5ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "balance_transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (0.4ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (1.0ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (1.0ms) CREATE INDEX "index_stripe_local_charges_on_balance_transaction_id" ON "stripe_local_charges" ("balance_transaction_id") SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131101171503"]]  (0.9ms) COMMIT Migrating to CreateClients (20131102200937)  (0.3ms) BEGIN  (2.1ms) CREATE TABLE "clients" ("id" serial primary key, "name" character varying(255), "email" character varying(255), "password" character varying(255), "created_at" timestamp, "updated_at" timestamp) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131102200937"]]  (0.3ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.5ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:30:40', '2013-11-10 21:30:40', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:30:40', '2013-11-10 21:30:40', 298486374)  (0.3ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.0ms) BEGIN -------------------------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_recieves messages through the object that references it using the macro 'stripe_customer' --------------------------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.2ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.2ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:39:09', '2013-11-10 21:39:09', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:39:09', '2013-11-10 21:39:09', 298486374)  (2.0ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_recieves messages through the object that references it using the macro 'stripe_customer' --------------------------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.2ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:40:33', '2013-11-10 21:40:33', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:40:33', '2013-11-10 21:40:33', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_recieves messages through the object that references it using the macro 'stripe_customer' --------------------------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:40:57', '2013-11-10 21:40:57', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:40:57', '2013-11-10 21:40:57', 298486374)  (2.5ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_recieves messages through the object that references it using the macro 'stripe_customer' --------------------------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:41:20', '2013-11-10 21:41:20', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-10 21:41:20', '2013-11-10 21:41:20', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_recieves messages through the object that references it using the macro 'stripe_customer' --------------------------------------------------------------------------------------------------------------------------  (0.3ms) ROLLBACK  (0.2ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (2.9ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.2ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (1.0ms) DELETE FROM "clients" Fixture Insert (1.8ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 20:59:12', '2013-11-11 20:59:12', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 20:59:12', '2013-11-11 20:59:12', 298486374)  (97.9ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.0ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.6ms) DELETE FROM "clients" Fixture Insert (0.5ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:00:12', '2013-11-11 21:00:12', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:00:12', '2013-11-11 21:00:12', 298486374)  (1.6ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:01:20', '2013-11-11 21:01:20', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:01:20', '2013-11-11 21:01:20', 298486374)  (1.6ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:01:58', '2013-11-11 21:01:58', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:01:58', '2013-11-11 21:01:58', 298486374)  (1.9ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:02:49', '2013-11-11 21:02:49', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:02:49', '2013-11-11 21:02:49', 298486374)  (2.3ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:04:03', '2013-11-11 21:04:03', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:04:03', '2013-11-11 21:04:03', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.5ms) DELETE FROM "clients" Fixture Insert (0.5ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:04:49', '2013-11-11 21:04:49', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:04:49', '2013-11-11 21:04:49', 298486374)  (2.1ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:06:41', '2013-11-11 21:06:41', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:06:41', '2013-11-11 21:06:41', 298486374)  (2.0ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:07:08', '2013-11-11 21:07:08', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:07:08', '2013-11-11 21:07:08', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:08:05', '2013-11-11 21:08:05', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:08:05', '2013-11-11 21:08:05', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:09:15', '2013-11-11 21:09:15', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:09:15', '2013-11-11 21:09:15', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:09:44', '2013-11-11 21:09:44', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:09:44', '2013-11-11 21:09:44', 298486374)  (2.3ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:10:14', '2013-11-11 21:10:14', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:10:14', '2013-11-11 21:10:14', 298486374)  (1.8ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:10:56', '2013-11-11 21:10:56', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:10:56', '2013-11-11 21:10:56', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:26', '2013-11-11 21:11:26', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:26', '2013-11-11 21:11:26', 298486374)  (2.0ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.2ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:42', '2013-11-11 21:11:42', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:42', '2013-11-11 21:11:42', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:59', '2013-11-11 21:11:59', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:11:59', '2013-11-11 21:11:59', 298486374)  (2.3ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:14:01', '2013-11-11 21:14:01', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:14:01', '2013-11-11 21:14:01', 298486374)  (0.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:14:36', '2013-11-11 21:14:36', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:14:36', '2013-11-11 21:14:36', 298486374)  (0.4ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.0ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:16:09', '2013-11-11 21:16:09', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:16:09', '2013-11-11 21:16:09', 298486374)  (0.4ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.0ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:17:21', '2013-11-11 21:17:21', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:17:21', '2013-11-11 21:17:21', 298486374)  (1.8ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (5.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:17:21 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:17:21 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:17:48', '2013-11-11 21:17:48', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:17:48', '2013-11-11 21:17:48', 298486374)  (2.5ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (4.1ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:17:48 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:17:48 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:18:07', '2013-11-11 21:18:07', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:18:07', '2013-11-11 21:18:07', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (2.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:18:07 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:18:07 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:18:52', '2013-11-11 21:18:52', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:18:52', '2013-11-11 21:18:52', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:19:35', '2013-11-11 21:19:35', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:19:35', '2013-11-11 21:19:35', 298486374)  (2.4ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:20:37', '2013-11-11 21:20:37', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:20:37', '2013-11-11 21:20:37', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:21:23', '2013-11-11 21:21:23', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:21:23', '2013-11-11 21:21:23', 298486374)  (2.5ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.3ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:22:42', '2013-11-11 21:22:42', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:22:42', '2013-11-11 21:22:42', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (4.7ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:22:42 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:22:42 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:23:42', '2013-11-11 21:23:42', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:23:42', '2013-11-11 21:23:42', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.3ms) SAVEPOINT active_record_1 SQL (3.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:23:42 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:23:42 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:24:12', '2013-11-11 21:24:12', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:24:12', '2013-11-11 21:24:12', 298486374)  (2.3ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.4ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:24:13 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:24:13 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:24:41', '2013-11-11 21:24:41', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:24:41', '2013-11-11 21:24:41', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (5.3ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:24:41 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:24:41 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:25:27', '2013-11-11 21:25:27', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:25:27', '2013-11-11 21:25:27', 298486374)  (2.1ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.1ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:25:27 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:25:27 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:26:13', '2013-11-11 21:26:13', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:26:13', '2013-11-11 21:26:13', 298486374)  (1.6ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (4.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:26:13 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:26:13 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:27:16', '2013-11-11 21:27:16', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:27:16', '2013-11-11 21:27:16', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:27:34', '2013-11-11 21:27:34', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:27:34', '2013-11-11 21:27:34', 298486374)  (2.3ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (4.7ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:27:35 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:27:35 CST -06:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:09', '2013-11-11 21:28:09', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:09', '2013-11-11 21:28:09', 298486374)  (1.8ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:27', '2013-11-11 21:28:27', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:27', '2013-11-11 21:28:27', 298486374)  (1.9ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.6ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:28:27 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:28:27 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:45', '2013-11-11 21:28:45', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:28:45', '2013-11-11 21:28:45', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:01', '2013-11-11 21:29:01', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:01', '2013-11-11 21:29:01', 298486374)  (2.5ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.7ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:29:01 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:29:01 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:25', '2013-11-11 21:29:25', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:25', '2013-11-11 21:29:25', 298486374)  (2.0ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.3ms) SAVEPOINT active_record_1 SQL (4.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:29:25 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:29:25 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.3ms) DELETE FROM "clients" Fixture Insert (0.3ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:47', '2013-11-11 21:29:47', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:29:47', '2013-11-11 21:29:47', 298486374)  (1.9ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.6ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:29:47 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:29:47 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:30:49', '2013-11-11 21:30:49', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:30:49', '2013-11-11 21:30:49', 298486374)  (2.4ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1 SQL (4.8ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:30:49 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:30:49 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:32:44', '2013-11-11 21:32:44', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:32:44', '2013-11-11 21:32:44', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.1ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:32:44 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:32:44 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:36:33', '2013-11-11 21:36:33', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:36:33', '2013-11-11 21:36:33', 298486374)  (2.3ms) COMMIT  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.3ms) SAVEPOINT active_record_1 SQL (3.3ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:36:33 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:36:33 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (5.5ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) [["brand", "Visa"], ["created_at", Mon, 11 Nov 2013 15:36:36 CST -06:00], ["customer_id", "cus_2vIyTMPbqNtmsa"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2015], ["last4", "4242"], ["name", ""], ["updated_at", Mon, 11 Nov 2013 15:36:36 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "id", "metadata", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["account_balance", 0], ["created_at", Mon, 11 Nov 2013 15:36:36 CST -06:00], ["default_card", "card_2vIxGw5UbKt68r"], ["delinquent", false], ["id", "cus_2vIyTMPbqNtmsa"], ["metadata", # JSON: {}], ["updated_at", Mon, 11 Nov 2013 15:36:36 CST -06:00]] TypeError: can't cast Stripe::StripeObject to text: INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "id", "metadata", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (0.2ms) DELETE FROM "clients" Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:38:23', '2013-11-11 21:38:23', 980190962) Fixture Insert (0.1ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-11 21:38:23', '2013-11-11 21:38:23', 298486374)  (1.9ms) COMMIT  (0.3ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (3.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Mon, 11 Nov 2013 15:38:23 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Mon, 11 Nov 2013 15:38:23 CST -06:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.2ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (3.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (3.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (0.1ms) BEGIN Fixture Delete (1.0ms) DELETE FROM "clients" Fixture Insert (3.7ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-13 03:58:47', '2013-11-13 03:58:47', 980190962) Fixture Insert (0.2ms) INSERT INTO "clients" ("name", "email", "password", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 'MyString', '2013-11-13 03:58:47', '2013-11-13 03:58:47', 298486374)  (118.6ms) COMMIT  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------------- StripeLocal::Customer: test_0001_decorates AR models that reference it with the macro 'stripe_customer' -------------------------------------------------------------------------------------------------------  (0.2ms) SAVEPOINT active_record_1 SQL (4.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 12 Nov 2013 21:58:47 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Tue, 12 Nov 2013 21:58:47 CST -06:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) ROLLBACK  (0.1ms) BEGIN --------------------------- StripeLocalTest: test_truth ---------------------------  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (2.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.8ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  PG::DuplicateTable: ERROR: relation "stripe_local_customers" already exists : CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateClients (20131102200937)  (0.1ms) BEGIN  (10.4ms) DROP TABLE "clients" SQL (3.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131102200937'  (9.5ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateClients (20131102200937)  (0.1ms) BEGIN  (17.1ms) CREATE TABLE "clients" ("id" serial primary key, "name" character varying(255), "email" character varying(255), "password" character varying(255), "created_at" timestamp, "updated_at" timestamp)  SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131102200937"]]  (0.5ms) COMMIT Migrating to LoadStripeTables (20131122063517)  (0.2ms) BEGIN  (0.3ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  PG::DuplicateTable: ERROR: relation "stripe_local_customers" already exists : CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.1ms) ROLLBACK  (1.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (4.9ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (80.2ms) TRUNCATE TABLE "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "clients" RESTART IDENTITY CASCADE;  (0.4ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.7ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Fri, 22 Nov 2013 02:39:48 CST -06:00], ["email", "jappseed@gmail.com"], ["name", "John Appleseed"], ["password", "password"], ["updated_at", Fri, 22 Nov 2013 02:39:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_customers" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Fri, 22 Nov 2013 02:39:48 CST -06:00], ["updated_at", Fri, 22 Nov 2013 02:39:48 CST -06:00]]  (0.3ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:39:48 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:39:48 CST -06:00]]  (0.3ms) ROLLBACK  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (1.4ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (16.9ms) TRUNCATE TABLE "stripe_local_plans", "stripe_local_coupons", "stripe_local_customers", "stripe_local_cards", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "clients" RESTART IDENTITY CASCADE;  (0.7ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" PG::UndefinedTable: ERROR: relation "stripe_local_transactions" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_transaction... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_transactions"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum  (0.2ms) BEGIN SQL (5.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:40:54 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:40:54 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:40:54 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:40:54 CST -06:00]]  (0.5ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_transfers" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_transfers"'... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_transfers"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum StripeLocal::Plan Load (0.6ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1 StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:40:54 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:40:54 CST -06:00]]  (0.1ms) ROLLBACK ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.4ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  PG::DuplicateTable: ERROR: relation "stripe_local_customers" already exists : CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.1ms) ROLLBACK SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"  (1.9ms) DROP TABLE "stripe_local_cards"  (2.5ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.8ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" USING btree ("customer_id")  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" USING btree ("id")  (1.6ms) DROP TABLE "stripe_local_charges"  (2.0ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "balance_transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE INDEX "index_stripe_local_charges_on_balance_transaction_id" ON "stripe_local_charges" USING btree ("balance_transaction_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" USING btree ("card_id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" USING btree ("customer_id")  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" USING btree ("id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" USING btree ("invoice_id")  (0.9ms) DROP TABLE "stripe_local_coupons"  (2.0ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "created_at" timestamp, "updated_at" timestamp)  (1.1ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" USING btree ("id")  (1.2ms) DROP TABLE "stripe_local_customers"  (1.5ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "model_type" character varying(255), "model_id" integer, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" USING btree ("id")  (0.7ms) CREATE INDEX "index_stripe_local_customers_on_model_type_and_model_id" ON "stripe_local_customers" USING btree ("model_type", "model_id")  (1.3ms) DROP TABLE "stripe_local_discounts"  (2.7ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)   (1.1ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" USING btree ("coupon_id", "subscription_id")  (1.4ms) DROP TABLE "stripe_local_invoices"  (1.8ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (31.3ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" USING btree ("customer_id")  (2.4ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" USING btree ("id")  (2.7ms) DROP TABLE "stripe_local_line_items"  (2.3ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.8ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" USING btree ("id")  (0.6ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" USING btree ("invoice_id")  (1.2ms) DROP TABLE "stripe_local_plans"  (2.0ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "created_at" timestamp, "updated_at" timestamp)  (1.1ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" USING btree ("id")  (2.8ms) DROP TABLE "stripe_local_subscriptions"  (3.4ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)   (1.1ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" USING btree ("customer_id")  (1.0ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" USING btree ("id")  (1.0ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" USING btree ("plan_id")  (0.2ms) SELECT version FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.4ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  PG::DuplicateTable: ERROR: relation "stripe_local_customers" already exists : CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.1ms) ROLLBACK  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (17.3ms) TRUNCATE TABLE "clients", "stripe_local_cards", "stripe_local_charges", "stripe_local_coupons", "stripe_local_customers", "stripe_local_discounts", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_plans", "stripe_local_subscriptions" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" PG::UndefinedTable: ERROR: relation "stripe_local_transactions" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_transaction... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_transactions"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (4.2ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:42:17 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:42:17 CST -06:00]]  (0.1ms) ROLLBACK StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:42:17 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:42:17 CST -06:00]]  (0.3ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_transfers" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_transfers"'... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_transfers"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:42:17 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:42:17 CST -06:00]]  (0.5ms) COMMIT ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateClients (20131102200937)  (0.1ms) BEGIN  (1.1ms) DROP TABLE "clients" SQL (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131102200937'  (1.0ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (234.5ms) DROP DATABASE IF EXISTS "dummy_test"  (324.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"  (11.0ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)  (1.1ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" USING btree ("customer_id")  (0.8ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" USING btree ("id")  (3.0ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "balance_transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE INDEX "index_stripe_local_charges_on_balance_transaction_id" ON "stripe_local_charges" USING btree ("balance_transaction_id")  (0.7ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" USING btree ("card_id")  (0.7ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" USING btree ("customer_id")  (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" USING btree ("id")  (0.7ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" USING btree ("invoice_id")  (2.0ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" USING btree ("id")  (1.2ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "model_type" character varying(255), "model_id" integer, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" USING btree ("id")  (0.6ms) CREATE INDEX "index_stripe_local_customers_on_model_type_and_model_id" ON "stripe_local_customers" USING btree ("model_type", "model_id")  (2.3ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" USING btree ("coupon_id", "subscription_id")  (2.4ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (1.1ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" USING btree ("customer_id")  (2.3ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" USING btree ("id")  (2.1ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" USING btree ("id")  (0.7ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" USING btree ("invoice_id")  (1.6ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "created_at" timestamp, "updated_at" timestamp)  (0.9ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" USING btree ("id")  (1.4ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.7ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" USING btree ("customer_id")  (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" USING btree ("id")  (0.7ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" USING btree ("plan_id")  (0.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131101171503') ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (113.8ms) DROP DATABASE IF EXISTS "dummy_test"  (268.4ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'  (3.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateClients (20131102200937)  (0.1ms) BEGIN  (2.9ms) CREATE TABLE "clients" ("id" serial primary key, "name" character varying(255), "email" character varying(255), "password" character varying(255), "created_at" timestamp, "updated_at" timestamp)  SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131102200937"]]  (0.4ms) COMMIT Migrating to LoadStripeTables (20131122063517)  (0.2ms) BEGIN  (1.4ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (1.1ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id")  (1.9ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id")  (1.4ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id")  (1.9ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id")  (1.1ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" ("id")  (0.4ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.4ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id")  (1.3ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.4ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id")  (1.2ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id")  (1.4ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "balance_transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (1.1ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (1.1ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (1.4ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (1.0ms) CREATE INDEX "index_stripe_local_charges_on_balance_transaction_id" ON "stripe_local_charges" ("balance_transaction_id")  (1.1ms) CREATE TABLE "stripe_local_transfers" ("id" character varying(255), "amount" integer, "date" timestamp, "status" character varying(255), "balance_transaction_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_transfers_on_id" ON "stripe_local_transfers" ("id")  (0.4ms) CREATE INDEX "index_stripe_local_transfers_on_status" ON "stripe_local_transfers" ("status")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_balance_transaction_id" ON "stripe_local_transfers" ("balance_transaction_id")  (1.1ms) CREATE TABLE "stripe_local_balance_transactions" ("id" character varying(255), "amount" integer, "available_on" timestamp, "created" timestamp, "fee" integer, "net" integer, "source_id" character varying(255), "source_type" character varying(255), "status" character varying(255), "description" character varying(255), "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_balance_transactions_on_id" ON "stripe_local_balance_transactions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_balance_transactions_on_status" ON "stripe_local_balance_transactions" ("status")  (0.5ms) CREATE INDEX "index_transactions_on_source_id_and_source_type" ON "stripe_local_balance_transactions" ("source_id", "source_type") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122063517"]]  (1.0ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balance_transactions" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (19.4ms) TRUNCATE TABLE "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_balance_transactions" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balance_transactions" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (36.9ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (0.3ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:46:22 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:46:22 CST -06:00]]  (1.4ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_transactions" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_transaction... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_transactions"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.5ms) DROP INDEX "index_transactions_on_source_id_and_source_type"  (0.1ms) DROP INDEX "index_stripe_local_balance_transactions_on_status"  (0.1ms) DROP INDEX "index_stripe_local_balance_transactions_on_id"  (0.4ms) DROP TABLE "stripe_local_balance_transactions"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_balance_transaction_id"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_status"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_id"  (0.3ms) DROP TABLE "stripe_local_transfers"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_balance_transaction_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_invoice_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_card_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_id"  (0.7ms) DROP TABLE "stripe_local_charges"  (0.2ms) DROP INDEX "index_stripe_local_line_items_on_invoice_id"  (0.2ms) DROP INDEX "index_stripe_local_line_items_on_id"  (0.5ms) DROP TABLE "stripe_local_line_items"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_id"  (0.5ms) DROP TABLE "stripe_local_invoices"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_plan_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_id"  (0.4ms) DROP TABLE "stripe_local_subscriptions"  (0.2ms) DROP INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id"  (0.6ms) DROP TABLE "stripe_local_discounts"  (0.1ms) DROP INDEX "index_stripe_local_coupons_on_id"  (0.5ms) DROP TABLE "stripe_local_coupons"  (0.1ms) DROP INDEX "index_stripe_local_plans_on_id"  (0.9ms) DROP TABLE "stripe_local_plans"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_id"  (0.3ms) DROP TABLE "stripe_local_cards"  (0.1ms) DROP INDEX "index_stripe_local_customers_on_id"  (0.4ms) DROP TABLE "stripe_local_customers" SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131122063517'  (3.4ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (2.0ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (1.0ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id")  (1.5ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id")  (1.3ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id")  (2.4ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id")  (1.2ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.6ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id")  (1.3ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id")  (1.3ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (1.1ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.8ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id")  (1.5ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_transaction_id" ON "stripe_local_charges" ("transaction_id")  (1.2ms) CREATE TABLE "stripe_local_transfers" ("id" character varying(255), "amount" integer, "date" timestamp, "status" character varying(255), "transaction_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.4ms) CREATE UNIQUE INDEX "index_stripe_local_transfers_on_id" ON "stripe_local_transfers" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_status" ON "stripe_local_transfers" ("status")  (0.4ms) CREATE INDEX "index_stripe_local_transfers_on_transaction_id" ON "stripe_local_transfers" ("transaction_id")  (1.2ms) CREATE TABLE "stripe_local_transactions" ("id" character varying(255), "amount" integer, "available_on" timestamp, "created" timestamp, "fee" integer, "net" integer, "source_id" character varying(255), "source_type" character varying(255), "status" character varying(255), "description" character varying(255), "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_transactions_on_id" ON "stripe_local_transactions" ("id")  (0.4ms) CREATE INDEX "index_stripe_local_transactions_on_status" ON "stripe_local_transactions" ("status")  (0.6ms) CREATE INDEX "index_transactions_on_source_id_and_source_type" ON "stripe_local_transactions" ("source_id", "source_type") SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122063517"]]  (2.1ms) COMMIT ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.9ms) TRUNCATE TABLE "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (7.0ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:52:29 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 02:52:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:52:29 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:52:29 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:52:30 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:52:30 CST -06:00]]  (0.3ms) COMMIT ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.4ms) DROP INDEX "index_transactions_on_source_id_and_source_type"  (0.2ms) DROP INDEX "index_stripe_local_transactions_on_status"  (0.2ms) DROP INDEX "index_stripe_local_transactions_on_id"  (0.4ms) DROP TABLE "stripe_local_transactions"  (0.2ms) DROP INDEX "index_stripe_local_transfers_on_transaction_id"  (0.2ms) DROP INDEX "index_stripe_local_transfers_on_status"  (0.2ms) DROP INDEX "index_stripe_local_transfers_on_id"  (0.3ms) DROP TABLE "stripe_local_transfers"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_transaction_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_invoice_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_card_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_id"  (0.6ms) DROP TABLE "stripe_local_charges"  (0.1ms) DROP INDEX "index_stripe_local_line_items_on_invoice_id"  (0.1ms) DROP INDEX "index_stripe_local_line_items_on_id"  (0.4ms) DROP TABLE "stripe_local_line_items"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_customer_id"  (0.2ms) DROP INDEX "index_stripe_local_invoices_on_id"  (0.6ms) DROP TABLE "stripe_local_invoices"  (0.2ms) DROP INDEX "index_stripe_local_subscriptions_on_plan_id"  (0.2ms) DROP INDEX "index_stripe_local_subscriptions_on_customer_id"  (0.2ms) DROP INDEX "index_stripe_local_subscriptions_on_id"  (0.4ms) DROP TABLE "stripe_local_subscriptions"  (0.1ms) DROP INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id"  (0.6ms) DROP TABLE "stripe_local_discounts"  (0.1ms) DROP INDEX "index_stripe_local_coupons_on_id"  (0.5ms) DROP TABLE "stripe_local_coupons"  (0.1ms) DROP INDEX "index_stripe_local_plans_on_id"  (0.5ms) DROP TABLE "stripe_local_plans"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_id"  (0.3ms) DROP TABLE "stripe_local_cards"  (0.1ms) DROP INDEX "index_stripe_local_customers_on_id"  (0.3ms) DROP TABLE "stripe_local_customers" SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131122063517'  (4.6ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (2.1ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (1.2ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id")  (1.6ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id")  (1.3ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id")  (2.4ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id")  (1.4ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id")  (1.3ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id")  (1.3ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.9ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id")  (1.8ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_transaction_id" ON "stripe_local_charges" ("transaction_id")  (1.2ms) CREATE TABLE "stripe_local_transfers" ("id" character varying(255), "amount" integer, "date" timestamp, "status" character varying(255), "transaction_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (1.0ms) CREATE UNIQUE INDEX "index_stripe_local_transfers_on_id" ON "stripe_local_transfers" ("id")  (1.1ms) CREATE INDEX "index_stripe_local_transfers_on_status" ON "stripe_local_transfers" ("status")  (1.9ms) CREATE INDEX "index_stripe_local_transfers_on_transaction_id" ON "stripe_local_transfers" ("transaction_id")  (3.5ms) CREATE TABLE "stripe_local_transactions" ("id" character varying(255), "amount" integer, "available_on" timestamp, "created" timestamp, "fee" integer, "net" integer, "source_id" character varying(255), "source_type" character varying(255), "status" character varying(255), "description" character varying(255), "created_at" timestamp, "updated_at" timestamp)  (1.0ms) CREATE UNIQUE INDEX "index_stripe_local_transactions_on_id" ON "stripe_local_transactions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transactions_on_status" ON "stripe_local_transactions" ("status")  (0.8ms) CREATE INDEX "index_transactions_on_source_id_and_source_type" ON "stripe_local_transactions" ("source_id", "source_type")  (2.2ms) CREATE TABLE "balances" ("id" serial primary key, "available" integer, "pending" integer, "created_at" timestamp, "updated_at" timestamp) SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122063517"]]  (115.0ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "balances" DISABLE TRIGGER ALL  (1.4ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.5ms) TRUNCATE TABLE "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "balances" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.5ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (1.4ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum PG::UndefinedTable: ERROR: relation "stripe_local_balances" does not exist LINE 5: WHERE a.attrelid = '"stripe_local_balances"':... ^ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '"stripe_local_balances"'::regclass AND a.attnum > 0 AND NOT a.attisdropped ORDER BY a.attnum  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:55:50 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 02:55:50 CST -06:00]]  (0.2ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (0.9ms) DROP TABLE "balances"  (0.1ms) DROP INDEX "index_transactions_on_source_id_and_source_type"  (0.1ms) DROP INDEX "index_stripe_local_transactions_on_status"  (0.1ms) DROP INDEX "index_stripe_local_transactions_on_id"  (0.4ms) DROP TABLE "stripe_local_transactions"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_transaction_id"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_status"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_id"  (0.3ms) DROP TABLE "stripe_local_transfers"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_transaction_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_invoice_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_customer_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_card_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_id"  (0.5ms) DROP TABLE "stripe_local_charges"  (0.1ms) DROP INDEX "index_stripe_local_line_items_on_invoice_id"  (0.1ms) DROP INDEX "index_stripe_local_line_items_on_id"  (0.4ms) DROP TABLE "stripe_local_line_items"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_id"  (0.4ms) DROP TABLE "stripe_local_invoices"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_plan_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_id"  (0.4ms) DROP TABLE "stripe_local_subscriptions"  (0.2ms) DROP INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id"  (0.6ms) DROP TABLE "stripe_local_discounts"  (0.3ms) DROP INDEX "index_stripe_local_coupons_on_id"  (0.7ms) DROP TABLE "stripe_local_coupons"  (0.2ms) DROP INDEX "index_stripe_local_plans_on_id"  (0.7ms) DROP TABLE "stripe_local_plans"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_id"  (0.4ms) DROP TABLE "stripe_local_cards"  (0.1ms) DROP INDEX "index_stripe_local_customers_on_id"  (0.3ms) DROP TABLE "stripe_local_customers" SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131122063517'  (4.6ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (1.8ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (1.1ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id")  (1.4ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id")  (1.4ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id")  (2.1ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id")  (1.2ms) CREATE TABLE "stripe_local_subscriptions" ("id" character varying(255), "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_subscriptions_on_id" ON "stripe_local_subscriptions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id")  (1.4ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id")  (1.3ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.9ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id")  (1.5ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (0.6ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (0.5ms) CREATE INDEX "index_stripe_local_charges_on_transaction_id" ON "stripe_local_charges" ("transaction_id")  (1.1ms) CREATE TABLE "stripe_local_transfers" ("id" character varying(255), "amount" integer, "date" timestamp, "status" character varying(255), "transaction_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_transfers_on_id" ON "stripe_local_transfers" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_status" ON "stripe_local_transfers" ("status")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_transaction_id" ON "stripe_local_transfers" ("transaction_id")  (1.1ms) CREATE TABLE "stripe_local_transactions" ("id" character varying(255), "amount" integer, "available_on" timestamp, "created" timestamp, "fee" integer, "net" integer, "source_id" character varying(255), "source_type" character varying(255), "status" character varying(255), "description" character varying(255), "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_transactions_on_id" ON "stripe_local_transactions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transactions_on_status" ON "stripe_local_transactions" ("status")  (0.5ms) CREATE INDEX "index_transactions_on_source_id_and_source_type" ON "stripe_local_transactions" ("source_id", "source_type")  (1.6ms) CREATE TABLE "stripe_local_balances" ("id" serial primary key, "available" integer, "pending" integer, "created_at" timestamp, "updated_at" timestamp) SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122063517"]]  (1.7ms) COMMIT ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.3ms) TRUNCATE TABLE "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances", "clients" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.4ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances" StripeLocal::Balance Load (0.3ms) SELECT "stripe_local_balances".* FROM "stripe_local_balances" ORDER BY "stripe_local_balances"."id" DESC LIMIT 1  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.5ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:56:48 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:56:48 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.7ms) TRUNCATE TABLE "stripe_local_plans", "stripe_local_coupons", "stripe_local_customers", "stripe_local_cards", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances", "clients" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.5ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:57:24 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:57:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances" StripeLocal::Balance Load (0.3ms) SELECT "stripe_local_balances".* FROM "stripe_local_balances" ORDER BY "stripe_local_balances"."id" DESC LIMIT 1  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.7ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:57:25 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:57:25 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.4ms) TRUNCATE TABLE "stripe_local_plans", "stripe_local_coupons", "stripe_local_customers", "stripe_local_cards", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances", "clients" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) BEGIN SQL (5.9ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) [["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.5ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 02:58:28 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 02:58:28 CST -06:00]]  (0.3ms) COMMIT ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (1.4ms) DROP TABLE "stripe_local_balances"  (0.3ms) DROP INDEX "index_transactions_on_source_id_and_source_type"  (0.2ms) DROP INDEX "index_stripe_local_transactions_on_status"  (0.3ms) DROP INDEX "index_stripe_local_transactions_on_id"  (0.6ms) DROP TABLE "stripe_local_transactions"  (0.2ms) DROP INDEX "index_stripe_local_transfers_on_transaction_id"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_status"  (0.1ms) DROP INDEX "index_stripe_local_transfers_on_id"  (0.4ms) DROP TABLE "stripe_local_transfers"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_transaction_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_invoice_id"  (0.2ms) DROP INDEX "index_stripe_local_charges_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_card_id"  (0.1ms) DROP INDEX "index_stripe_local_charges_on_id"  (0.8ms) DROP TABLE "stripe_local_charges"  (0.1ms) DROP INDEX "index_stripe_local_line_items_on_invoice_id"  (0.2ms) DROP INDEX "index_stripe_local_line_items_on_id"  (0.4ms) DROP TABLE "stripe_local_line_items"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_invoices_on_id"  (0.5ms) DROP TABLE "stripe_local_invoices"  (0.2ms) DROP INDEX "index_stripe_local_subscriptions_on_plan_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_subscriptions_on_id"  (0.4ms) DROP TABLE "stripe_local_subscriptions"  (0.2ms) DROP INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id"  (0.6ms) DROP TABLE "stripe_local_discounts"  (0.1ms) DROP INDEX "index_stripe_local_coupons_on_id"  (0.4ms) DROP TABLE "stripe_local_coupons"  (0.1ms) DROP INDEX "index_stripe_local_plans_on_id"  (0.6ms) DROP TABLE "stripe_local_plans"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_customer_id"  (0.1ms) DROP INDEX "index_stripe_local_cards_on_id"  (0.3ms) DROP TABLE "stripe_local_cards"  (0.1ms) DROP INDEX "index_stripe_local_customers_on_id"  (0.3ms) DROP TABLE "stripe_local_customers" SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20131122063517'  (47.3ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to LoadStripeTables (20131122063517)  (0.1ms) BEGIN  (2.1ms) CREATE TABLE "stripe_local_customers" ("id" character varying(255), "account_balance" integer, "default_card" character varying(255), "delinquent" boolean, "description" character varying(255), "email" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.7ms) CREATE UNIQUE INDEX "index_stripe_local_customers_on_id" ON "stripe_local_customers" ("id")  (2.8ms) CREATE TABLE "stripe_local_cards" ("id" character varying(255), "customer_id" character varying(255), "name" character varying(255), "exp_month" integer, "exp_year" integer, "brand" character varying(255), "last4" character varying(255), "cvc_check" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_cards_on_id" ON "stripe_local_cards" ("id")  (0.7ms) CREATE INDEX "index_stripe_local_cards_on_customer_id" ON "stripe_local_cards" ("customer_id")  (2.2ms) CREATE TABLE "stripe_local_plans" ("id" character varying(255), "name" character varying(255), "amount" integer, "interval" character varying(255), "interval_count" integer DEFAULT 1, "trial_period_days" integer DEFAULT 0, "currency" character varying(255) DEFAULT 'usd', "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.8ms) CREATE UNIQUE INDEX "index_stripe_local_plans_on_id" ON "stripe_local_plans" ("id")  (1.7ms) CREATE TABLE "stripe_local_coupons" ("id" character varying(255), "percent_off" integer, "amount_off" integer, "currency" character varying(255) DEFAULT 'usd', "duration" character varying(255), "redeem_by" timestamp, "max_redemptions" integer, "times_redeemed" integer DEFAULT 0, "duration_in_months" integer, "synced" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE UNIQUE INDEX "index_stripe_local_coupons_on_id" ON "stripe_local_coupons" ("id")  (2.2ms) CREATE TABLE "stripe_local_discounts" ("id" serial primary key, "coupon_id" character varying(255), "subscription_id" character varying(255), "start" timestamp, "end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.6ms) CREATE INDEX "index_stripe_local_discounts_on_coupon_id_and_subscription_id" ON "stripe_local_discounts" ("coupon_id", "subscription_id")  (2.1ms) CREATE TABLE "stripe_local_subscriptions" ("id" serial primary key, "customer_id" character varying(255), "plan_id" character varying(255), "status" character varying(255), "quantity" integer DEFAULT 1, "start" timestamp, "canceled_at" timestamp, "ended_at" timestamp, "current_period_start" timestamp, "current_period_end" timestamp, "trial_start" timestamp, "trial_end" timestamp, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_customer_id" ON "stripe_local_subscriptions" ("customer_id")  (0.5ms) CREATE INDEX "index_stripe_local_subscriptions_on_plan_id" ON "stripe_local_subscriptions" ("plan_id")  (1.4ms) CREATE TABLE "stripe_local_invoices" ("id" character varying(255), "customer_id" character varying(255), "amount_due" integer, "subtotal" integer, "total" integer, "attempted" boolean, "attempt_count" integer, "paid" boolean, "closed" boolean, "date" timestamp, "period_start" timestamp, "period_end" timestamp, "currency" character varying(255) DEFAULT 'usd', "starting_balance" integer, "ending_balance" integer, "charge_id" character varying(255), "discount" integer DEFAULT 0, "application_fee" integer, "next_payment_attempt" timestamp, "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_invoices_on_id" ON "stripe_local_invoices" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_invoices_on_customer_id" ON "stripe_local_invoices" ("customer_id")  (1.3ms) CREATE TABLE "stripe_local_line_items" ("id" character varying(255), "invoice_id" character varying(255), "subscription" boolean DEFAULT 't', "amount" integer, "currency" character varying(255) DEFAULT 'usd', "proration" boolean, "period_start" timestamp, "period_end" timestamp, "quantity" integer, "plan_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)  (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_line_items_on_id" ON "stripe_local_line_items" ("id")  (0.6ms) CREATE INDEX "index_stripe_local_line_items_on_invoice_id" ON "stripe_local_line_items" ("invoice_id")  (1.6ms) CREATE TABLE "stripe_local_charges" ("id" character varying(255), "card_id" character varying(255), "customer_id" character varying(255), "invoice_id" character varying(255), "transaction_id" character varying(255), "amount" integer, "captured" boolean DEFAULT 't', "refunded" boolean DEFAULT 'f', "paid" boolean, "created" timestamp, "currency" character varying(255) DEFAULT 'usd', "amount_refunded" integer DEFAULT 0, "description" character varying(255), "failure_code" character varying(255), "failure_message" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.8ms) CREATE UNIQUE INDEX "index_stripe_local_charges_on_id" ON "stripe_local_charges" ("id")  (1.1ms) CREATE INDEX "index_stripe_local_charges_on_card_id" ON "stripe_local_charges" ("card_id")  (1.3ms) CREATE INDEX "index_stripe_local_charges_on_customer_id" ON "stripe_local_charges" ("customer_id")  (2.2ms) CREATE INDEX "index_stripe_local_charges_on_invoice_id" ON "stripe_local_charges" ("invoice_id")  (1.6ms) CREATE INDEX "index_stripe_local_charges_on_transaction_id" ON "stripe_local_charges" ("transaction_id")  (1.8ms) CREATE TABLE "stripe_local_transfers" ("id" character varying(255), "amount" integer, "date" timestamp, "status" character varying(255), "transaction_id" character varying(255), "description" character varying(255), "metadata" text, "created_at" timestamp, "updated_at" timestamp)   (0.9ms) CREATE UNIQUE INDEX "index_stripe_local_transfers_on_id" ON "stripe_local_transfers" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_status" ON "stripe_local_transfers" ("status")  (0.5ms) CREATE INDEX "index_stripe_local_transfers_on_transaction_id" ON "stripe_local_transfers" ("transaction_id")  (1.2ms) CREATE TABLE "stripe_local_transactions" ("id" character varying(255), "amount" integer, "available_on" timestamp, "created" timestamp, "fee" integer, "net" integer, "source_id" character varying(255), "source_type" character varying(255), "status" character varying(255), "description" character varying(255), "created_at" timestamp, "updated_at" timestamp)   (0.5ms) CREATE UNIQUE INDEX "index_stripe_local_transactions_on_id" ON "stripe_local_transactions" ("id")  (0.5ms) CREATE INDEX "index_stripe_local_transactions_on_status" ON "stripe_local_transactions" ("status")  (0.5ms) CREATE INDEX "index_transactions_on_source_id_and_source_type" ON "stripe_local_transactions" ("source_id", "source_type")  (8.2ms) CREATE TABLE "stripe_local_balances" ("id" serial primary key, "available" integer, "pending" integer, "created_at" timestamp, "updated_at" timestamp)  SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122063517"]]  (1.3ms) COMMIT Migrating to AddStripeCustomerIdToClients (20131122104223)  (0.5ms) BEGIN  (0.4ms) ALTER TABLE "clients" ADD COLUMN "stripe_customer_id" character varying(255) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20131122104223"]]  (0.2ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (27.1ms) TRUNCATE TABLE "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (5.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:48:49 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:48:49 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.9ms) TRUNCATE TABLE "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_invoices", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.6ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances" StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:51:35 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:51:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:51:36 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:51:36 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.4ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (27.0ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.9ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.2ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:51:55 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:51:55 CST -06:00]]  (0.2ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (1.2ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.5ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_coupons", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (4.3ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:53:05 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:53:05 CST -06:00]]  (0.2ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_coupons", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.7ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:54:42 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:54:42 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:54:43 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:54:43 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (25.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.6ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:55:04 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:55:04 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.9ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (20.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (1.4ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:56:55 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:56:55 CST -06:00]]  (0.4ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (9.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:57:28 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:57:28 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:57:28 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:57:28 CST -06:00]]  (0.4ms) COMMIT  (0.3ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:57:29 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:57:29 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.9ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.5ms) COMMIT  (0.3ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:57:41 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:57:41 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.6ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (27.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (5.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:58:23 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:58:23 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:58:23 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:58:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:58:23 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:58:23 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:58:24 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:58:24 CST -06:00]]  (0.3ms) COMMIT  (1.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.1ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.8ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.6ms) COMMIT  (1.4ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.3ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.7ms) COMMIT  (0.4ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 04:59:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 04:59:14 CST -06:00]]  (0.4ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (5.9ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.2ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:02:28 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:02:28 CST -06:00]]  (0.3ms) COMMIT  (1.1ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.0ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.7ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.2ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:03:05 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:03:05 CST -06:00]]  (1.1ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.5ms) COMMIT  (0.6ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:03:06 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:03:06 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.7ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (28.9ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.6ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:04:44 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:04:44 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.3ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:04:45 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:04:45 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:04:45 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:04:45 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:04:45 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:04:45 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:04:45 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:04:45 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:04:45 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:04:45 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (62.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:06:12 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:06:12 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (2.5ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.4ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.6ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:06:13 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:06:13 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (43.6ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.6ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.3ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.9ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.3ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:07:14 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:07:14 CST -06:00]]  (0.4ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (11.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:08:23 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:08:23 CST -06:00]]  (0.2ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (25.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:08:34 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:08:34 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:08:34 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:08:34 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:08:34 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:08:34 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:08:34 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:08:34 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.2ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.6ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.6ms) COMMIT  (0.8ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.2ms) COMMIT  (0.6ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (45.5ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:08:35 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:08:35 CST -06:00]]  (0.4ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (45.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:12:48 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:12:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:12:49 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:12:49 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.4ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.0ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (1.6ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:14:14 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:14:14 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.6ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (7.7ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:23:03 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:23:03 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.7ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (27.9ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.7ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (5.7ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:31:24 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:31:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (1.6ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.9ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.7ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:34:53 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:34:53 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.0ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.2ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.5ms) COMMIT  (0.2ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:35:09 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:35:09 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.3ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:35:33 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:35:33 CST -06:00]]  (0.2ms) COMMIT  (1.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (25.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.3ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:56 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:56 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.2ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:35:57 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:35:57 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (27.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.4ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:36:27 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:36:27 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:36:27 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:36:27 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:36:28 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:36:28 CST -06:00]]  (0.4ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.2ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.6ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (5.2ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:37:47 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:37:47 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:37:47 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:37:47 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:37:47 CST -06:00], ["current_period_end", nil], ["current_period_start", nil], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", nil], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:37:47 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (2.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.3ms) COMMIT  (0.5ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:37:48 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:37:48 CST -06:00]]  (0.5ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:39:53 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:39:53 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:39:54 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:39:54 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.5ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:41:19 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:41:19 CST -06:00]]  (0.5ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (25.5ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (5.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.5ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:43:15 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:43:15 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.7ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (28.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:43:38 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:43:38 CST -06:00]]  (0.2ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:43:38 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:43:38 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:43:38 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:43:38 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:43:38 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:43:38 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:43:38 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:43:38 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:43:39 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:43:39 CST -06:00]]  (0.4ms) COMMIT  (1.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.9ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:44:36 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:44:36 CST -06:00]]  (0.3ms) COMMIT  (1.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.9ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (5.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["date", nil], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", nil], ["created", nil], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:45:32 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", nil], ["period_start", nil], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:45:32 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:45:33 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", nil], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", nil], ["period_start", nil], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:45:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:45:33 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:45:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:45:33 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:45:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:45:33 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:45:33 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:45:33 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:45:33 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.5ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.6ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (32.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.9ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:51:22 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:51:22 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (25.6ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.7ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) BEGIN SQL (6.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 0], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 29900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["pending", 19900], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Fri, 22 Nov 2013 05:54:37 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Fri, 22 Nov 2013 05:54:37 CST -06:00]]  (0.4ms) COMMIT  (5.5ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (12.9ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (80.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (8.7ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.9ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) ROLLBACK StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.1ms) ROLLBACK  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (1.1ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.6ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:04:11 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:04:11 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (1.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (22.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.5ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) ROLLBACK StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.1ms) ROLLBACK  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:06:56 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:06:56 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (60.2ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.6ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:16:24 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:16:24 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:16:25 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:16:25 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:16:25 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:16:25 CST -06:00]]  (0.2ms) ROLLBACK StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:16:25 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Sun, 24 Nov 2013 19:16:25 CST -06:00]]  (0.1ms) ROLLBACK  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:16:25 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:16:25 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:16:25 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:16:25 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (20.4ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.5ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" IS NULL LIMIT 1  (0.1ms) BEGIN SQL (7.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "synced", "trial_period_days", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["id", "HR99"], ["interval", "month"], ["name", "HR Solutions On-Call"], ["synced", true], ["trial_period_days", nil], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.1ms) ROLLBACK StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.5ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:24:25 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:24:25 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (18.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.5ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.9ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:26:12 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:26:12 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.4ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.3ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:30:16 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:30:16 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (2.1ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.4ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:30:30 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:30:30 CST -06:00]]  (0.4ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.6ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:31:45 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:31:45 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.3ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.5ms) COMMIT  (0.3ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:31:46 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:31:46 CST -06:00]]  (0.5ms) COMMIT  (1.1ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.2ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:01 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:37:01 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:37:02 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:37:02 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT StripeLocal::Plan Load (0.8ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:37:02 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:37:02 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:37:02 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:37:02 CST -06:00]]  (0.3ms) COMMIT  (1.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (23.2ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (5.5ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:37:34 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:37:34 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:37:34 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:37:34 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:34 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:37:34 CST -06:00]]  (1.0ms) COMMIT  (0.2ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.4ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.4ms) COMMIT  (0.6ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.5ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:37:35 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:37:35 CST -06:00]]  (0.3ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.2ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.4ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.4ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.7ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.4ms) COMMIT  (0.3ms) BEGIN SQL (2.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:38:05 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:38:05 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.1ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (18.7ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" StripeLocal::Plan Load (0.7ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (6.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:41:02 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:41:02 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:02 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:41:02 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:02 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:41:02 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:41:02 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:41:02 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:41:02 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:41:02 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.9ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:03 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:41:03 CST -06:00]]  (0.2ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.6ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (26.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.4ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:12 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:41:12 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:41:12 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:41:12 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:41:12 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:41:12 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:12 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:41:12 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:12 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:41:12 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (1.9ms) COMMIT  (0.3ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.5ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.5ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:13 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:13 CST -06:00]]  (0.2ms) COMMIT  (1.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.1ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (1.0ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.5ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:33 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:41:33 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.7ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.5ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.4ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:41:52 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:41:52 CST -06:00]]  (0.4ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (21.9ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:18 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:18 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:18 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:18 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]] StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.6ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:43:19 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:43:19 CST -06:00]]  (0.3ms) COMMIT  (1.1ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.4ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (20.6ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.9ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.9ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:44:35 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:44:35 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.4ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:44:36 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:44:36 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.8ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (20.8ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (5.6ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:46:32 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:46:32 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.6ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.2ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (1.2ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.6ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:46:33 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:46:33 CST -06:00]]  (0.3ms) COMMIT  (1.2ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (24.5ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (1.0ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances" StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 19:47:15 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 19:47:15 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.3ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.7ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) BEGIN SQL (1.8ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.5ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 19:47:16 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 19:47:16 CST -06:00]]  (0.3ms) COMMIT  (0.9ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (64.3ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_discounts", "stripe_local_plans", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.5ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (6.7ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.8ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (0.8ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.3ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.4ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT  (0.2ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.4ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 20:41:24 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 20:41:24 CST -06:00]]  (0.3ms) COMMIT  (1.1ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" DISABLE TRIGGER ALL;ALTER TABLE "clients" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" DISABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" DISABLE TRIGGER ALL  (1.3ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (43.0ms) TRUNCATE TABLE "stripe_local_invoices", "stripe_local_subscriptions", "stripe_local_coupons", "stripe_local_discounts", "stripe_local_plans", "stripe_local_line_items", "clients", "stripe_local_customers", "stripe_local_cards", "stripe_local_charges", "stripe_local_transfers", "stripe_local_transactions", "stripe_local_balances" RESTART IDENTITY CASCADE;  (0.8ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_invoices" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_plans" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_subscriptions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_coupons" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_discounts" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_line_items" ENABLE TRIGGER ALL;ALTER TABLE "clients" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_customers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_cards" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_charges" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transfers" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_transactions" ENABLE TRIGGER ALL;ALTER TABLE "stripe_local_balances" ENABLE TRIGGER ALL ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) BEGIN SQL (4.7ms) INSERT INTO "stripe_local_transfers" ("amount", "created_at", "date", "description", "id", "status", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["amount", 100], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["date", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["description", "a dollar for Don Atello"], ["id", "tr_2fOGfKABdHu3uf"], ["status", "paid"], ["transaction_id", "txn_2fOGkiBkDgpObU"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["current_period_end", Wed, 11 Dec 2013 15:32:46 CST -06:00], ["current_period_start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["customer_id", "cus_2vIuZmAfWK89Yk"], ["plan_id", "HR99"], ["start", Mon, 11 Nov 2013 15:32:46 CST -06:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.9ms) COMMIT  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_line_items" ("amount", "created_at", "id", "invoice_id", "period_end", "period_start", "plan_id", "proration", "quantity", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["id", "su_1bfTBoL3o7blah"], ["invoice_id", "in_2blahblahagain"], ["period_end", Thu, 06 Jun 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["plan_id", "HR99"], ["proration", false], ["quantity", 1], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_invoices" ("amount_due", "attempt_count", "attempted", "charge_id", "closed", "created_at", "customer_id", "date", "discount", "ending_balance", "id", "paid", "period_end", "period_start", "starting_balance", "subtotal", "total", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18) RETURNING "id" [["amount_due", 9900], ["attempt_count", 0], ["attempted", true], ["charge_id", "ch_blahblahblah"], ["closed", true], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["customer_id", "cus_1A3zUmx7NpUgrT"], ["date", Tue, 07 May 2013 18:23:47 CDT -05:00], ["discount", nil], ["ending_balance", 0], ["id", "in_2blahblahagain"], ["paid", true], ["period_end", Tue, 07 May 2013 18:23:47 CDT -05:00], ["period_start", Tue, 07 May 2013 18:23:47 CDT -05:00], ["starting_balance", 0], ["subtotal", 9900], ["total", 9900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT StripeLocal::LineItem Load (0.9ms) SELECT "stripe_local_line_items".* FROM "stripe_local_line_items" WHERE "stripe_local_line_items"."invoice_id" = $1 [["invoice_id", "in_2blahblahagain"]]  (0.1ms) BEGIN SQL (1.2ms) INSERT INTO "stripe_local_transactions" ("amount", "available_on", "created", "created_at", "description", "fee", "id", "net", "source_id", "source_type", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["amount", -100], ["available_on", Mon, 07 Oct 2013 05:01:01 CDT -05:00], ["created", Mon, 30 Sep 2013 05:01:01 CDT -05:00], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["description", "a dollar for Don Atello"], ["fee", 25], ["id", "txn_2fOGkiBkDgpObU"], ["net", -125], ["source_id", "tr_2fOGfKABdHu3uf"], ["source_type", "transfer"], ["status", "available"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_charges" ("amount", "card_id", "created", "created_at", "customer_id", "id", "invoice_id", "paid", "transaction_id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING "id" [["amount", 9900], ["card_id", "cc_1eX7GyRo6wivEf"], ["created", Thu, 01 Aug 2013 18:08:14 CDT -05:00], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["customer_id", "cus_1eX7onie2gq8m1"], ["id", "ch_2wiSyZQkZw8F50"], ["invoice_id", "in_2whTLSkV2ItHAv"], ["paid", true], ["transaction_id", "txn_2wiSFq1N6BTZTQ"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN SQL (0.7ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."available" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.5ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT "stripe_local_balances"."pending" FROM "stripe_local_balances"  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 9900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 29900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) BEGIN SQL (0.3ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 19900], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 19900], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.2ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.0ms) BEGIN SQL (0.2ms) INSERT INTO "stripe_local_balances" ("available", "created_at", "pending", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["available", 39800], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["pending", 0], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.1ms) SELECT COUNT(*) FROM "stripe_local_balances"  (0.2ms) BEGIN SQL (1.1ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["customer_id", "cus_2J7PZ8ncCbR10Z"], ["cvc_check", "pass"], ["exp_month", 1], ["exp_year", 2014], ["id", "cc_2J7Pscoh4jvFjJ"], ["last4", "4242"], ["name", "Connor Tumbleson"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.8ms) INSERT INTO "clients" ("created_at", "email", "name", "password", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["email", "test@test.com"], ["name", "Test Case"], ["password", "password"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_cards" ("brand", "created_at", "customer_id", "cvc_check", "exp_month", "exp_year", "id", "last4", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) [["brand", "Visa"], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["customer_id", "cus_123"], ["cvc_check", "pass"], ["exp_month", 8], ["exp_year", 2014], ["id", "card_102Y2J1Cmf55uWiejglofO7j"], ["last4", "4242"], ["name", "Test Case"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (0.4ms) INSERT INTO "stripe_local_subscriptions" ("created_at", "current_period_end", "current_period_start", "customer_id", "plan_id", "start", "status", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["current_period_end", Thu, 10 Oct 2013 13:52:04 CDT -05:00], ["current_period_start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["customer_id", ""], ["plan_id", "GIN100"], ["start", Tue, 10 Sep 2013 13:52:04 CDT -05:00], ["status", "active"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.2ms) COMMIT  (0.2ms) BEGIN SQL (0.9ms) INSERT INTO "stripe_local_customers" ("account_balance", "created_at", "default_card", "delinquent", "description", "email", "id", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["account_balance", 0], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["default_card", "card_102Y2J1Cmf55uWiejglofO7j"], ["delinquent", false], ["description", "On September 10th, Test signed up for CA50."], ["email", "test@test.com"], ["id", "cus_123"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.4ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT StripeLocal::Plan Load (0.3ms) SELECT "stripe_local_plans".* FROM "stripe_local_plans" WHERE "stripe_local_plans"."id" = 'New_Plan' LIMIT 1  (0.2ms) BEGIN SQL (1.0ms) INSERT INTO "stripe_local_plans" ("amount", "created_at", "id", "interval", "name", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["amount", 2999], ["created_at", Sun, 24 Nov 2013 20:46:50 CST -06:00], ["id", "New_Plan"], ["interval", "month"], ["name", "New Plan"], ["updated_at", Sun, 24 Nov 2013 20:46:50 CST -06:00]]  (0.3ms) COMMIT