paid_up 0.7.11 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -6506,3 +6506,844 @@ Migrating to AddTimestampsToUsersRoles (20150710160830)
6506
6506
   (124.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
6507
6507
   (117.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
6508
6508
   (124.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
6509
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6510
+  (0.1ms) select sqlite_version(*)
6511
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6512
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6513
+ Migrating to CreateUsersTable (20150406154440)
6514
+  (0.1ms) begin transaction
6515
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
6516
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406154440"]]
6517
+  (1.4ms) commit transaction
6518
+ Migrating to CreateGroupsTable (20150517175135)
6519
+  (0.1ms) begin transaction
6520
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150517175135_create_groups_table.rb:7)
6521
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
6522
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175135"]]
6523
+  (2.0ms) commit transaction
6524
+ Migrating to CreateDoodadsTable (20150517175136)
6525
+  (0.1ms) begin transaction
6526
+  (0.3ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
6527
+  (0.1ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
6528
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175136"]]
6529
+  (1.4ms) commit transaction
6530
+ Migrating to AddDeviseToUsers (20150523010827)
6531
+  (0.1ms) begin transaction
6532
+  (0.6ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
6533
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
6534
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar
6535
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
6536
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
6537
+  (0.1ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
6538
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
6539
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
6540
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
6541
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
6542
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
6543
+  (0.1ms) SELECT sql
6544
+ FROM sqlite_master
6545
+ WHERE name='index_users_on_email' AND type='index'
6546
+ UNION ALL
6547
+ SELECT sql
6548
+ FROM sqlite_temp_master
6549
+ WHERE name='index_users_on_email' AND type='index'
6550
+
6551
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
6552
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010827"]]
6553
+  (1.5ms) commit transaction
6554
+ Migrating to RolifyCreateRoles (20150523010837)
6555
+  (0.1ms) begin transaction
6556
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150523010837_rolify_create_roles.rb:7)
6557
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
6558
+  (0.1ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
6559
+  (0.1ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
6560
+  (0.0ms) SELECT sql
6561
+ FROM sqlite_master
6562
+ WHERE name='index_roles_on_name' AND type='index'
6563
+ UNION ALL
6564
+ SELECT sql
6565
+ FROM sqlite_temp_master
6566
+ WHERE name='index_roles_on_name' AND type='index'
6567
+
6568
+  (0.1ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
6569
+  (0.1ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
6570
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010837"]]
6571
+  (1.5ms) commit transaction
6572
+ Migrating to CreatePaidUpPlansTable (20160207184112)
6573
+  (0.1ms) begin transaction
6574
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20160207184112_create_paid_up_plans_table.paid_up.rb:10)
6575
+  (0.4ms) CREATE TABLE "paid_up_plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar, "title" varchar, "description" text, "sort_order" integer, "created_at" datetime, "updated_at" datetime)
6576
+  (0.4ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
6577
+  (0.0ms) SELECT sql
6578
+ FROM sqlite_master
6579
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6580
+ UNION ALL
6581
+ SELECT sql
6582
+ FROM sqlite_temp_master
6583
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6584
+
6585
+  (0.2ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
6586
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184112"]]
6587
+  (1.7ms) commit transaction
6588
+ Migrating to AddStripeIdColumnToUsers (20160207184113)
6589
+  (0.3ms) begin transaction
6590
+  (1.2ms) ALTER TABLE "users" ADD "stripe_id" varchar
6591
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184113"]]
6592
+  (1.5ms) commit transaction
6593
+ Migrating to CreatePaidUpPlanFeatureSettingsTable (20160207184114)
6594
+  (0.1ms) begin transaction
6595
+  (0.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid_up_plan_id" integer, "feature" varchar, "setting" integer) 
6596
+  (0.3ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_paid_up_plan_id" ON "paid_up_plan_feature_settings" ("paid_up_plan_id")
6597
+  (0.0ms)  SELECT sql
6598
+ FROM sqlite_master
6599
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6600
+ UNION ALL
6601
+ SELECT sql
6602
+ FROM sqlite_temp_master
6603
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6604
+ 
6605
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
6606
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184114"]]
6607
+  (1.7ms) commit transaction
6608
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6609
+  (0.1ms) SELECT sql
6610
+ FROM sqlite_master
6611
+ WHERE name='index_doodads_on_user_id' AND type='index'
6612
+ UNION ALL
6613
+ SELECT sql
6614
+ FROM sqlite_temp_master
6615
+ WHERE name='index_doodads_on_user_id' AND type='index'
6616
+
6617
+  (0.1ms)  SELECT sql
6618
+ FROM sqlite_master
6619
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6620
+ UNION ALL
6621
+ SELECT sql
6622
+ FROM sqlite_temp_master
6623
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6624
+ 
6625
+  (0.1ms) SELECT sql
6626
+ FROM sqlite_master
6627
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6628
+ UNION ALL
6629
+ SELECT sql
6630
+ FROM sqlite_temp_master
6631
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6632
+
6633
+  (0.1ms)  SELECT sql
6634
+ FROM sqlite_master
6635
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6636
+ UNION ALL
6637
+ SELECT sql
6638
+ FROM sqlite_temp_master
6639
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6640
+ 
6641
+  (0.1ms) SELECT sql
6642
+ FROM sqlite_master
6643
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6644
+ UNION ALL
6645
+ SELECT sql
6646
+ FROM sqlite_temp_master
6647
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6648
+
6649
+  (0.1ms)  SELECT sql
6650
+ FROM sqlite_master
6651
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6652
+ UNION ALL
6653
+ SELECT sql
6654
+ FROM sqlite_temp_master
6655
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6656
+ 
6657
+  (0.1ms) SELECT sql
6658
+ FROM sqlite_master
6659
+ WHERE name='index_roles_on_name' AND type='index'
6660
+ UNION ALL
6661
+ SELECT sql
6662
+ FROM sqlite_temp_master
6663
+ WHERE name='index_roles_on_name' AND type='index'
6664
+
6665
+  (0.1ms)  SELECT sql
6666
+ FROM sqlite_master
6667
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6668
+ UNION ALL
6669
+ SELECT sql
6670
+ FROM sqlite_temp_master
6671
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6672
+ 
6673
+  (0.1ms) SELECT sql
6674
+ FROM sqlite_master
6675
+ WHERE name='index_users_on_email' AND type='index'
6676
+ UNION ALL
6677
+ SELECT sql
6678
+ FROM sqlite_temp_master
6679
+ WHERE name='index_users_on_email' AND type='index'
6680
+
6681
+  (0.1ms)  SELECT sql
6682
+ FROM sqlite_master
6683
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6684
+ UNION ALL
6685
+ SELECT sql
6686
+ FROM sqlite_temp_master
6687
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6688
+ 
6689
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6690
+  (0.1ms) begin transaction
6691
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
6692
+ SQL (0.4ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Anonymous"], ["stripe_id", "anonymous-plan"], ["description", "What you can do without logging in."], ["sort_order", -1], ["created_at", "2016-02-07 18:41:43.731672"], ["updated_at", "2016-02-07 18:41:43.731672"]]
6693
+  (1.5ms) commit transaction
6694
+  (0.1ms) begin transaction
6695
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
6696
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Free"], ["stripe_id", "free-plan"], ["description", "Can't beat the price!"], ["sort_order", 0], ["created_at", "2016-02-07 18:41:44.245208"], ["updated_at", "2016-02-07 18:41:44.245208"]]
6697
+  (1.5ms) commit transaction
6698
+  (0.1ms) begin transaction
6699
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
6700
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "No Ads"], ["stripe_id", "no-ads-plan"], ["description", "No frills, just removes the ads."], ["sort_order", 1], ["created_at", "2016-02-07 18:41:45.098119"], ["updated_at", "2016-02-07 18:41:45.098119"]]
6701
+  (1.5ms) commit transaction
6702
+  (0.1ms) begin transaction
6703
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
6704
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Group Leader"], ["stripe_id", "group-leader-plan"], ["description", "For leaders of single groups, with configuration."], ["sort_order", 2], ["created_at", "2016-02-07 18:41:45.658744"], ["updated_at", "2016-02-07 18:41:45.658744"]]
6705
+  (1.6ms) commit transaction
6706
+  (0.1ms) begin transaction
6707
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
6708
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Professional"], ["stripe_id", "professional-plan"], ["description", "Designed for professionals with unlimited groups, a calendar and configuration."], ["sort_order", 3], ["created_at", "2016-02-07 18:41:46.177668"], ["updated_at", "2016-02-07 18:41:46.177668"]]
6709
+  (1.6ms) commit transaction
6710
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6711
+  (0.1ms) select sqlite_version(*)
6712
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6713
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6714
+ Migrating to CreateUsersTable (20150406154440)
6715
+  (0.1ms) begin transaction
6716
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
6717
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406154440"]]
6718
+  (1.6ms) commit transaction
6719
+ Migrating to CreateGroupsTable (20150517175135)
6720
+  (0.1ms) begin transaction
6721
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150517175135_create_groups_table.rb:7)
6722
+  (0.6ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
6723
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175135"]]
6724
+  (1.5ms) commit transaction
6725
+ Migrating to CreateDoodadsTable (20150517175136)
6726
+  (0.1ms) begin transaction
6727
+  (0.4ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
6728
+  (0.1ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
6729
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175136"]]
6730
+  (1.5ms) commit transaction
6731
+ Migrating to AddDeviseToUsers (20150523010827)
6732
+  (0.1ms) begin transaction
6733
+  (0.4ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
6734
+  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
6735
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar
6736
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
6737
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
6738
+  (0.1ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
6739
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
6740
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
6741
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
6742
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
6743
+  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
6744
+  (0.1ms) SELECT sql
6745
+ FROM sqlite_master
6746
+ WHERE name='index_users_on_email' AND type='index'
6747
+ UNION ALL
6748
+ SELECT sql
6749
+ FROM sqlite_temp_master
6750
+ WHERE name='index_users_on_email' AND type='index'
6751
+
6752
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
6753
+ SQL (5.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010827"]]
6754
+  (1.8ms) commit transaction
6755
+ Migrating to RolifyCreateRoles (20150523010837)
6756
+  (0.1ms) begin transaction
6757
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150523010837_rolify_create_roles.rb:7)
6758
+  (0.8ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
6759
+  (0.1ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
6760
+  (0.1ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
6761
+  (0.0ms) SELECT sql
6762
+ FROM sqlite_master
6763
+ WHERE name='index_roles_on_name' AND type='index'
6764
+ UNION ALL
6765
+ SELECT sql
6766
+ FROM sqlite_temp_master
6767
+ WHERE name='index_roles_on_name' AND type='index'
6768
+
6769
+  (0.1ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
6770
+  (0.1ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
6771
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010837"]]
6772
+  (1.4ms) commit transaction
6773
+ Migrating to CreatePaidUpPlansTable (20160207184112)
6774
+  (0.1ms) begin transaction
6775
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20160207184112_create_paid_up_plans_table.paid_up.rb:10)
6776
+  (1.1ms) CREATE TABLE "paid_up_plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar, "title" varchar, "description" text, "sort_order" integer, "created_at" datetime, "updated_at" datetime)
6777
+  (1.4ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
6778
+  (0.1ms) SELECT sql
6779
+ FROM sqlite_master
6780
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6781
+ UNION ALL
6782
+ SELECT sql
6783
+ FROM sqlite_temp_master
6784
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6785
+
6786
+  (0.2ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
6787
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184112"]]
6788
+  (1.8ms) commit transaction
6789
+ Migrating to AddStripeIdColumnToUsers (20160207184113)
6790
+  (0.1ms) begin transaction
6791
+  (0.4ms) ALTER TABLE "users" ADD "stripe_id" varchar
6792
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184113"]]
6793
+  (1.4ms) commit transaction
6794
+ Migrating to CreatePaidUpPlanFeatureSettingsTable (20160207184114)
6795
+  (0.1ms) begin transaction
6796
+  (0.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid_up_plan_id" integer, "feature" varchar, "setting" integer) 
6797
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_paid_up_plan_id" ON "paid_up_plan_feature_settings" ("paid_up_plan_id")
6798
+  (0.1ms)  SELECT sql
6799
+ FROM sqlite_master
6800
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6801
+ UNION ALL
6802
+ SELECT sql
6803
+ FROM sqlite_temp_master
6804
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6805
+ 
6806
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
6807
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184114"]]
6808
+  (2.1ms) commit transaction
6809
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6810
+  (0.1ms) SELECT sql
6811
+ FROM sqlite_master
6812
+ WHERE name='index_doodads_on_user_id' AND type='index'
6813
+ UNION ALL
6814
+ SELECT sql
6815
+ FROM sqlite_temp_master
6816
+ WHERE name='index_doodads_on_user_id' AND type='index'
6817
+
6818
+  (0.1ms)  SELECT sql
6819
+ FROM sqlite_master
6820
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6821
+ UNION ALL
6822
+ SELECT sql
6823
+ FROM sqlite_temp_master
6824
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6825
+ 
6826
+  (0.1ms) SELECT sql
6827
+ FROM sqlite_master
6828
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6829
+ UNION ALL
6830
+ SELECT sql
6831
+ FROM sqlite_temp_master
6832
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
6833
+
6834
+  (0.1ms)  SELECT sql
6835
+ FROM sqlite_master
6836
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6837
+ UNION ALL
6838
+ SELECT sql
6839
+ FROM sqlite_temp_master
6840
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6841
+ 
6842
+  (0.1ms) SELECT sql
6843
+ FROM sqlite_master
6844
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6845
+ UNION ALL
6846
+ SELECT sql
6847
+ FROM sqlite_temp_master
6848
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6849
+
6850
+  (0.1ms)  SELECT sql
6851
+ FROM sqlite_master
6852
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6853
+ UNION ALL
6854
+ SELECT sql
6855
+ FROM sqlite_temp_master
6856
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6857
+ 
6858
+  (0.1ms) SELECT sql
6859
+ FROM sqlite_master
6860
+ WHERE name='index_roles_on_name' AND type='index'
6861
+ UNION ALL
6862
+ SELECT sql
6863
+ FROM sqlite_temp_master
6864
+ WHERE name='index_roles_on_name' AND type='index'
6865
+
6866
+  (0.1ms)  SELECT sql
6867
+ FROM sqlite_master
6868
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6869
+ UNION ALL
6870
+ SELECT sql
6871
+ FROM sqlite_temp_master
6872
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6873
+ 
6874
+  (0.1ms) SELECT sql
6875
+ FROM sqlite_master
6876
+ WHERE name='index_users_on_email' AND type='index'
6877
+ UNION ALL
6878
+ SELECT sql
6879
+ FROM sqlite_temp_master
6880
+ WHERE name='index_users_on_email' AND type='index'
6881
+
6882
+  (0.3ms)  SELECT sql
6883
+ FROM sqlite_master
6884
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6885
+ UNION ALL
6886
+ SELECT sql
6887
+ FROM sqlite_temp_master
6888
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6889
+ 
6890
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6891
+  (0.1ms) begin transaction
6892
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
6893
+ SQL (0.3ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Anonymous"], ["stripe_id", "anonymous-plan"], ["description", "What you can do without logging in."], ["sort_order", -1], ["created_at", "2016-02-07 18:43:22.384335"], ["updated_at", "2016-02-07 18:43:22.384335"]]
6894
+  (1.4ms) commit transaction
6895
+  (0.1ms) begin transaction
6896
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
6897
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Free"], ["stripe_id", "free-plan"], ["description", "Can't beat the price!"], ["sort_order", 0], ["created_at", "2016-02-07 18:43:22.952168"], ["updated_at", "2016-02-07 18:43:22.952168"]]
6898
+  (1.4ms) commit transaction
6899
+  (0.1ms) begin transaction
6900
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
6901
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "No Ads"], ["stripe_id", "no-ads-plan"], ["description", "No frills, just removes the ads."], ["sort_order", 1], ["created_at", "2016-02-07 18:43:23.474433"], ["updated_at", "2016-02-07 18:43:23.474433"]]
6902
+  (1.5ms) commit transaction
6903
+  (0.1ms) begin transaction
6904
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
6905
+ SQL (0.3ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Group Leader"], ["stripe_id", "group-leader-plan"], ["description", "For leaders of single groups, with configuration."], ["sort_order", 2], ["created_at", "2016-02-07 18:43:24.018026"], ["updated_at", "2016-02-07 18:43:24.018026"]]
6906
+  (1.4ms) commit transaction
6907
+  (0.1ms) begin transaction
6908
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
6909
+ SQL (0.2ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Professional"], ["stripe_id", "professional-plan"], ["description", "Designed for professionals with unlimited groups, a calendar and configuration."], ["sort_order", 3], ["created_at", "2016-02-07 18:43:24.593807"], ["updated_at", "2016-02-07 18:43:24.593807"]]
6910
+  (1.4ms) commit transaction
6911
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6912
+  (0.1ms) select sqlite_version(*)
6913
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6914
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6915
+ Migrating to CreateUsersTable (20150406154440)
6916
+  (0.1ms) begin transaction
6917
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
6918
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406154440"]]
6919
+  (1.7ms) commit transaction
6920
+ Migrating to CreateGroupsTable (20150517175135)
6921
+  (0.1ms) begin transaction
6922
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150517175135_create_groups_table.rb:7)
6923
+  (0.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
6924
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175135"]]
6925
+  (1.3ms) commit transaction
6926
+ Migrating to CreateDoodadsTable (20150517175136)
6927
+  (0.1ms) begin transaction
6928
+  (0.3ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
6929
+  (0.1ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
6930
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175136"]]
6931
+  (1.5ms) commit transaction
6932
+ Migrating to AddDeviseToUsers (20150523010827)
6933
+  (0.1ms) begin transaction
6934
+  (0.3ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
6935
+  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
6936
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar
6937
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
6938
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
6939
+  (0.1ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
6940
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
6941
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
6942
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
6943
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
6944
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
6945
+  (0.1ms) SELECT sql
6946
+ FROM sqlite_master
6947
+ WHERE name='index_users_on_email' AND type='index'
6948
+ UNION ALL
6949
+ SELECT sql
6950
+ FROM sqlite_temp_master
6951
+ WHERE name='index_users_on_email' AND type='index'
6952
+
6953
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
6954
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010827"]]
6955
+  (1.6ms) commit transaction
6956
+ Migrating to RolifyCreateRoles (20150523010837)
6957
+  (0.1ms) begin transaction
6958
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20150523010837_rolify_create_roles.rb:7)
6959
+  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
6960
+  (0.2ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
6961
+  (0.1ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
6962
+  (0.0ms) SELECT sql
6963
+ FROM sqlite_master
6964
+ WHERE name='index_roles_on_name' AND type='index'
6965
+ UNION ALL
6966
+ SELECT sql
6967
+ FROM sqlite_temp_master
6968
+ WHERE name='index_roles_on_name' AND type='index'
6969
+
6970
+  (0.1ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
6971
+  (0.1ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
6972
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010837"]]
6973
+  (1.7ms) commit transaction
6974
+ Migrating to CreatePaidUpPlansTable (20160207184112)
6975
+  (0.3ms) begin transaction
6976
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/karen/Gems/paid_up/spec/dummy/db/migrate/20160207184112_create_paid_up_plans_table.paid_up.rb:10)
6977
+  (1.0ms) CREATE TABLE "paid_up_plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar, "title" varchar, "description" text, "sort_order" integer, "created_at" datetime, "updated_at" datetime)
6978
+  (0.9ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
6979
+  (0.1ms) SELECT sql
6980
+ FROM sqlite_master
6981
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6982
+ UNION ALL
6983
+ SELECT sql
6984
+ FROM sqlite_temp_master
6985
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6986
+
6987
+  (0.1ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
6988
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184112"]]
6989
+  (1.4ms) commit transaction
6990
+ Migrating to AddStripeIdColumnToUsers (20160207184113)
6991
+  (0.1ms) begin transaction
6992
+  (0.4ms) ALTER TABLE "users" ADD "stripe_id" varchar
6993
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184113"]]
6994
+  (1.5ms) commit transaction
6995
+ Migrating to CreatePaidUpPlanFeatureSettingsTable (20160207184114)
6996
+  (0.1ms) begin transaction
6997
+  (0.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid_up_plan_id" integer, "feature" varchar, "setting" integer) 
6998
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_paid_up_plan_id" ON "paid_up_plan_feature_settings" ("paid_up_plan_id")
6999
+  (0.0ms)  SELECT sql
7000
+ FROM sqlite_master
7001
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
7002
+ UNION ALL
7003
+ SELECT sql
7004
+ FROM sqlite_temp_master
7005
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
7006
+ 
7007
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
7008
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160207184114"]]
7009
+  (1.6ms) commit transaction
7010
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7011
+  (0.1ms) SELECT sql
7012
+ FROM sqlite_master
7013
+ WHERE name='index_doodads_on_user_id' AND type='index'
7014
+ UNION ALL
7015
+ SELECT sql
7016
+ FROM sqlite_temp_master
7017
+ WHERE name='index_doodads_on_user_id' AND type='index'
7018
+
7019
+  (0.1ms)  SELECT sql
7020
+ FROM sqlite_master
7021
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
7022
+ UNION ALL
7023
+ SELECT sql
7024
+ FROM sqlite_temp_master
7025
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
7026
+ 
7027
+  (0.1ms) SELECT sql
7028
+ FROM sqlite_master
7029
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
7030
+ UNION ALL
7031
+ SELECT sql
7032
+ FROM sqlite_temp_master
7033
+ WHERE name='index_paid_up_plan_feature_settings_on_paid_up_plan_id' AND type='index'
7034
+
7035
+  (0.1ms)  SELECT sql
7036
+ FROM sqlite_master
7037
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
7038
+ UNION ALL
7039
+ SELECT sql
7040
+ FROM sqlite_temp_master
7041
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
7042
+ 
7043
+  (0.1ms) SELECT sql
7044
+ FROM sqlite_master
7045
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
7046
+ UNION ALL
7047
+ SELECT sql
7048
+ FROM sqlite_temp_master
7049
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
7050
+
7051
+  (0.1ms)  SELECT sql
7052
+ FROM sqlite_master
7053
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
7054
+ UNION ALL
7055
+ SELECT sql
7056
+ FROM sqlite_temp_master
7057
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
7058
+ 
7059
+  (0.1ms) SELECT sql
7060
+ FROM sqlite_master
7061
+ WHERE name='index_roles_on_name' AND type='index'
7062
+ UNION ALL
7063
+ SELECT sql
7064
+ FROM sqlite_temp_master
7065
+ WHERE name='index_roles_on_name' AND type='index'
7066
+
7067
+  (0.1ms)  SELECT sql
7068
+ FROM sqlite_master
7069
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7070
+ UNION ALL
7071
+ SELECT sql
7072
+ FROM sqlite_temp_master
7073
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7074
+ 
7075
+  (0.1ms) SELECT sql
7076
+ FROM sqlite_master
7077
+ WHERE name='index_users_on_email' AND type='index'
7078
+ UNION ALL
7079
+ SELECT sql
7080
+ FROM sqlite_temp_master
7081
+ WHERE name='index_users_on_email' AND type='index'
7082
+
7083
+  (0.1ms)  SELECT sql
7084
+ FROM sqlite_master
7085
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
7086
+ UNION ALL
7087
+ SELECT sql
7088
+ FROM sqlite_temp_master
7089
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
7090
+ 
7091
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7092
+  (0.1ms) begin transaction
7093
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
7094
+ SQL (0.5ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Anonymous"], ["stripe_id", "anonymous-plan"], ["description", "What you can do without logging in."], ["sort_order", -1], ["created_at", "2016-02-07 18:47:11.061175"], ["updated_at", "2016-02-07 18:47:11.061175"]]
7095
+  (1.7ms) commit transaction
7096
+  (0.1ms) begin transaction
7097
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
7098
+ SQL (0.4ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Free"], ["stripe_id", "free-plan"], ["description", "Can't beat the price!"], ["sort_order", 0], ["created_at", "2016-02-07 18:47:11.613132"], ["updated_at", "2016-02-07 18:47:11.613132"]]
7099
+  (1.8ms) commit transaction
7100
+  (0.1ms) begin transaction
7101
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
7102
+ SQL (0.3ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "No Ads"], ["stripe_id", "no-ads-plan"], ["description", "No frills, just removes the ads."], ["sort_order", 1], ["created_at", "2016-02-07 18:47:12.165268"], ["updated_at", "2016-02-07 18:47:12.165268"]]
7103
+  (1.4ms) commit transaction
7104
+  (0.2ms) begin transaction
7105
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
7106
+ SQL (0.3ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Group Leader"], ["stripe_id", "group-leader-plan"], ["description", "For leaders of single groups, with configuration."], ["sort_order", 2], ["created_at", "2016-02-07 18:47:12.668209"], ["updated_at", "2016-02-07 18:47:12.668209"]]
7107
+  (1.5ms) commit transaction
7108
+  (0.1ms) begin transaction
7109
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
7110
+ SQL (0.4ms) INSERT INTO "paid_up_plans" ("title", "stripe_id", "description", "sort_order", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "Professional"], ["stripe_id", "professional-plan"], ["description", "Designed for professionals with unlimited groups, a calendar and configuration."], ["sort_order", 3], ["created_at", "2016-02-07 18:47:13.192495"], ["updated_at", "2016-02-07 18:47:13.192495"]]
7111
+  (1.8ms) commit transaction
7112
+  (0.1ms) begin transaction
7113
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["paid_up_plan_id", 3], ["setting", 1]]
7114
+  (1.6ms) commit transaction
7115
+  (0.1ms) begin transaction
7116
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["paid_up_plan_id", 4], ["setting", 1]]
7117
+  (1.7ms) commit transaction
7118
+  (0.1ms) begin transaction
7119
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["paid_up_plan_id", 4], ["setting", 5]]
7120
+  (1.4ms) commit transaction
7121
+  (0.1ms) begin transaction
7122
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["paid_up_plan_id", 4], ["setting", 10]]
7123
+  (1.5ms) commit transaction
7124
+  (0.1ms) begin transaction
7125
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["paid_up_plan_id", 5], ["setting", 1]]
7126
+  (1.5ms) commit transaction
7127
+  (0.1ms) begin transaction
7128
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["paid_up_plan_id", 5], ["setting", 999999999]]
7129
+  (1.5ms) commit transaction
7130
+  (0.1ms) begin transaction
7131
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "paid_up_plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["paid_up_plan_id", 5], ["setting", 999999999]]
7132
+  (0.5ms) commit transaction
7133
+  (0.1ms) begin transaction
7134
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
7135
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$uBmN.WdnWKnxxCWibewxoO0KOuFT46jxjTqx5MX4hQz8RcauwfUq2"], ["name", "Free Subscriber"]]
7136
+  (1.7ms) commit transaction
7137
+  (0.1ms) begin transaction
7138
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgwEPW7fLxSXt"], ["id", 1]]
7139
+  (1.4ms) commit transaction
7140
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
7141
+  (0.1ms) begin transaction
7142
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'no.ads.subscriber@example.com' LIMIT 1
7143
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "no.ads.subscriber@example.com"], ["encrypted_password", "$2a$10$ex6HkfCus0CTmfO3Z7sVmeESHBvMp2A3MEbtbqKcX8H3WOTKSalLa"], ["name", "No Ads Subscriber"]]
7144
+  (1.4ms) commit transaction
7145
+  (0.1ms) begin transaction
7146
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgw9S8bKJGOrr"], ["id", 2]]
7147
+  (1.5ms) commit transaction
7148
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]
7149
+  (0.1ms) begin transaction
7150
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'group.leader.subscriber@example.com' LIMIT 1
7151
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "group.leader.subscriber@example.com"], ["encrypted_password", "$2a$10$ON1kxlsImNFm90m96AFMC.R2E6tjb0Zj78pOFJbXLZvk3UWvo7GWy"], ["name", "Group Leader Subscriber"]]
7152
+  (1.5ms) commit transaction
7153
+  (0.1ms) begin transaction
7154
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgwXTqaTuvcDy"], ["id", 3]]
7155
+  (1.4ms) commit transaction
7156
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
7157
+  (0.1ms) begin transaction
7158
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'disabling.subscriber@example.com' LIMIT 1
7159
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "disabling.subscriber@example.com"], ["encrypted_password", "$2a$10$VpgDZofh5jZ/mLEs0ntMpOH0399jhyH65vlBU2bCwynYrhZb0SAqm"], ["name", "Disabling Subscriber"]]
7160
+  (1.4ms) commit transaction
7161
+  (0.1ms) begin transaction
7162
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgxa6GGnqsgB2"], ["id", 4]]
7163
+  (1.5ms) commit transaction
7164
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
7165
+  (0.1ms) begin transaction
7166
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'professional.subscriber@example.com' LIMIT 1
7167
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "professional.subscriber@example.com"], ["encrypted_password", "$2a$10$NGohOYfsnYY6LuUKH5wWHe.B1JiaBZxc6yh/.mFJxiLcPgBoQ3Xla"], ["name", "Professional Subscriber"]]
7168
+  (1.3ms) commit transaction
7169
+  (0.1ms) begin transaction
7170
+ SQL (2.7ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgxYEr7RGqaEW"], ["id", 5]]
7171
+  (3.8ms) commit transaction
7172
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
7173
+  (0.1ms) begin transaction
7174
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'blank.subscriber@example.com' LIMIT 1
7175
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "blank.subscriber@example.com"], ["encrypted_password", "$2a$10$37c1htb5D8MpR1ZafhDSIuFBvzu3yJDXdfcNgpls1pvy.KoDo9p9y"], ["name", "Blank Subscriber"]]
7176
+  (1.7ms) commit transaction
7177
+  (0.1ms) begin transaction
7178
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_7rgxnj5UquAwuT"], ["id", 6]]
7179
+  (1.6ms) commit transaction
7180
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
7181
+  (0.1ms) begin transaction
7182
+ SQL (0.3ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "First Group"], ["created_at", "2016-02-07 18:47:25.475057"], ["updated_at", "2016-02-07 18:47:25.475057"]]
7183
+  (1.6ms) commit transaction
7184
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 1]]
7185
+  (0.1ms) begin transaction
7186
+ SQL (0.3ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 1], ["created_at", "2016-02-07 18:47:25.482685"], ["updated_at", "2016-02-07 18:47:25.482685"]]
7187
+  (1.5ms) commit transaction
7188
+ Role Exists (0.2ms) SELECT 1 AS one FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? AND "roles"."id" = ? LIMIT 1 [["user_id", 3], ["id", 1]]
7189
+  (0.1ms) SELECT "roles".id FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 3]]
7190
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1 [["id", 1]]
7191
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 3]]
7192
+  (0.0ms) begin transaction
7193
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 3], ["role_id", 1]]
7194
+  (1.4ms) commit transaction
7195
+  (0.0ms) begin transaction
7196
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Second Group"], ["created_at", "2016-02-07 18:47:25.581926"], ["updated_at", "2016-02-07 18:47:25.581926"]]
7197
+  (1.4ms) commit transaction
7198
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 2]]
7199
+  (0.0ms) begin transaction
7200
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 2], ["created_at", "2016-02-07 18:47:25.585526"], ["updated_at", "2016-02-07 18:47:25.585526"]]
7201
+  (1.4ms) commit transaction
7202
+ Role Exists (0.1ms) SELECT 1 AS one FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? AND "roles"."id" = ? LIMIT 1 [["user_id", 5], ["id", 2]]
7203
+  (0.0ms) SELECT "roles".id FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 5]]
7204
+ Role Load (0.0ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1 [["id", 2]]
7205
+ Role Load (0.0ms) SELECT "roles".* FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 5]]
7206
+  (0.0ms) begin transaction
7207
+ SQL (0.3ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 5], ["role_id", 2]]
7208
+  (1.5ms) commit transaction
7209
+  (0.0ms) begin transaction
7210
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Third Group"], ["created_at", "2016-02-07 18:47:25.599285"], ["updated_at", "2016-02-07 18:47:25.599285"]]
7211
+  (1.5ms) commit transaction
7212
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 3]]
7213
+  (0.0ms) begin transaction
7214
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 3], ["created_at", "2016-02-07 18:47:25.603419"], ["updated_at", "2016-02-07 18:47:25.603419"]]
7215
+  (1.5ms) commit transaction
7216
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (2, 3)
7217
+  (0.0ms) begin transaction
7218
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 5], ["role_id", 3]]
7219
+  (2.1ms) commit transaction
7220
+  (0.1ms) begin transaction
7221
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Test Title"], ["created_at", "2016-02-07 18:47:25.612187"], ["updated_at", "2016-02-07 18:47:25.612187"]]
7222
+  (1.6ms) commit transaction
7223
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 4]]
7224
+  (0.1ms) begin transaction
7225
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 4], ["created_at", "2016-02-07 18:47:25.616198"], ["updated_at", "2016-02-07 18:47:25.616198"]]
7226
+  (1.4ms) commit transaction
7227
+ Role Exists (0.1ms) SELECT 1 AS one FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? AND "roles"."id" = ? LIMIT 1 [["user_id", 4], ["id", 4]]
7228
+  (0.1ms) SELECT "roles".id FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 4]]
7229
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1 [["id", 4]]
7230
+ Role Load (0.0ms) SELECT "roles".* FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 4]]
7231
+  (0.0ms) begin transaction
7232
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 4]]
7233
+  (1.4ms) commit transaction
7234
+  (0.1ms) begin transaction
7235
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Test Title"], ["created_at", "2016-02-07 18:47:25.625126"], ["updated_at", "2016-02-07 18:47:25.625126"]]
7236
+  (1.6ms) commit transaction
7237
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 5]]
7238
+  (0.0ms) begin transaction
7239
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 5], ["created_at", "2016-02-07 18:47:25.629062"], ["updated_at", "2016-02-07 18:47:25.629062"]]
7240
+  (1.9ms) commit transaction
7241
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (4, 5)
7242
+  (0.0ms) begin transaction
7243
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 5]]
7244
+  (1.5ms) commit transaction
7245
+  (0.1ms) begin transaction
7246
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Test Title"], ["created_at", "2016-02-07 18:47:25.636981"], ["updated_at", "2016-02-07 18:47:25.636981"]]
7247
+  (1.4ms) commit transaction
7248
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 6]]
7249
+  (0.1ms) begin transaction
7250
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 6], ["created_at", "2016-02-07 18:47:25.640947"], ["updated_at", "2016-02-07 18:47:25.640947"]]
7251
+  (1.6ms) commit transaction
7252
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (4, 5, 6)
7253
+  (0.0ms) begin transaction
7254
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 6]]
7255
+  (1.4ms) commit transaction
7256
+  (0.0ms) begin transaction
7257
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Test Title"], ["created_at", "2016-02-07 18:47:25.648326"], ["updated_at", "2016-02-07 18:47:25.648326"]]
7258
+  (1.4ms) commit transaction
7259
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 7]]
7260
+  (0.0ms) begin transaction
7261
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 7], ["created_at", "2016-02-07 18:47:25.651916"], ["updated_at", "2016-02-07 18:47:25.651916"]]
7262
+  (2.0ms) commit transaction
7263
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (4, 5, 6, 7)
7264
+  (0.1ms) begin transaction
7265
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 7]]
7266
+  (1.6ms) commit transaction
7267
+  (0.1ms) begin transaction
7268
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Test Title"], ["created_at", "2016-02-07 18:47:25.660568"], ["updated_at", "2016-02-07 18:47:25.660568"]]
7269
+  (1.4ms) commit transaction
7270
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 8]]
7271
+  (0.0ms) begin transaction
7272
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 8], ["created_at", "2016-02-07 18:47:25.667021"], ["updated_at", "2016-02-07 18:47:25.667021"]]
7273
+  (1.4ms) commit transaction
7274
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (4, 5, 6, 7, 8)
7275
+  (0.0ms) begin transaction
7276
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 8]]
7277
+  (1.7ms) commit transaction
7278
+  (0.1ms) begin transaction
7279
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Disabled Group"], ["created_at", "2016-02-07 18:47:25.674887"], ["updated_at", "2016-02-07 18:47:25.674887"]]
7280
+  (1.5ms) commit transaction
7281
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? AND "roles"."resource_type" = ? AND "roles"."resource_id" = ? ORDER BY "roles"."id" ASC LIMIT 1 [["name", "owner"], ["resource_type", "Group"], ["resource_id", 9]]
7282
+  (0.1ms) begin transaction
7283
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 9], ["created_at", "2016-02-07 18:47:25.678933"], ["updated_at", "2016-02-07 18:47:25.678933"]]
7284
+  (1.5ms) commit transaction
7285
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (4, 5, 6, 7, 8, 9)
7286
+  (0.0ms) begin transaction
7287
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 9]]
7288
+  (1.5ms) commit transaction
7289
+  (1.6ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
7290
+  (0.1ms) select sqlite_version(*)
7291
+  (1.1ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
7292
+  (1.0ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) 
7293
+  (1.1ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid_up_plan_id" integer, "feature" varchar, "setting" integer)
7294
+  (1.4ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
7295
+  (0.1ms) SELECT sql
7296
+ FROM sqlite_master
7297
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
7298
+ UNION ALL
7299
+ SELECT sql
7300
+ FROM sqlite_temp_master
7301
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
7302
+
7303
+  (1.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_paid_up_plan_id" ON "paid_up_plan_feature_settings" ("paid_up_plan_id")
7304
+  (1.6ms) CREATE TABLE "paid_up_plans" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "stripe_id" varchar, "title" varchar, "description" text, "sort_order" integer, "created_at" datetime, "updated_at" datetime)
7305
+  (1.6ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
7306
+  (0.1ms) SELECT sql
7307
+ FROM sqlite_master
7308
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
7309
+ UNION ALL
7310
+ SELECT sql
7311
+ FROM sqlite_temp_master
7312
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
7313
+
7314
+  (1.6ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
7315
+  (1.6ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime)
7316
+  (1.6ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
7317
+  (0.1ms) SELECT sql
7318
+ FROM sqlite_master
7319
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
7320
+ UNION ALL
7321
+ SELECT sql
7322
+ FROM sqlite_temp_master
7323
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
7324
+
7325
+  (1.8ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
7326
+  (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "stripe_id" varchar)
7327
+  (1.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
7328
+  (0.1ms) SELECT sql
7329
+ FROM sqlite_master
7330
+ WHERE name='index_users_on_email' AND type='index'
7331
+ UNION ALL
7332
+ SELECT sql
7333
+ FROM sqlite_temp_master
7334
+ WHERE name='index_users_on_email' AND type='index'
7335
+
7336
+  (1.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
7337
+  (1.9ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
7338
+  (1.8ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
7339
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
7340
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7341
+  (0.1ms) SELECT version FROM "schema_migrations"
7342
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160207184114')
7343
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
7344
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
7345
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
7346
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
7347
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
7348
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160207184112')
7349
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160207184113')