paid_up 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +1 -1
  4. data/VERSION +1 -1
  5. data/app/models/paid_up/ability.rb +7 -3
  6. data/coverage/.last_run.json +1 -1
  7. data/coverage/.resultset.json +1430 -33
  8. data/lib/paid_up/engine.rb +9 -4
  9. data/lib/paid_up/mixins/paid_for.rb +1 -1
  10. data/paid_up.gemspec +13 -5
  11. data/spec/controllers/paid_up/plans_spec.rb +2 -2
  12. data/spec/controllers/paid_up/subscriptions_spec.rb +25 -46
  13. data/spec/dummy/config/application.rb +12 -0
  14. data/spec/dummy/coverage/.last_run.json +5 -0
  15. data/spec/dummy/coverage/.resultset.json +155 -0
  16. data/spec/dummy/coverage/.resultset.json.lock +0 -0
  17. data/spec/dummy/db/development.sqlite3 +0 -0
  18. data/spec/dummy/db/seeds.rb +88 -14
  19. data/spec/dummy/db/test.sqlite3 +0 -0
  20. data/spec/dummy/log/development.log +2281 -0
  21. data/spec/factories/group.rb +10 -0
  22. data/spec/factories/user.rb +19 -1
  23. data/spec/models/group_spec.rb +5 -5
  24. data/spec/models/paid_up/feature_spec.rb +2 -1
  25. data/spec/models/paid_up/plan_spec.rb +3 -2
  26. data/spec/models/user_spec.rb +47 -32
  27. data/spec/rails_helper.rb +18 -1
  28. data/spec/routing/paid_up/plans_spec.rb +1 -1
  29. data/spec/routing/paid_up/subscription_spec.rb +1 -1
  30. data/spec/support/features.rb +5 -0
  31. data/spec/support/groups.rb +4 -32
  32. data/spec/support/loaded_site.rb +7 -0
  33. data/spec/support/plans.rb +7 -0
  34. data/spec/support/users.rb +8 -0
  35. data/spec/views/paid_up/plans_spec.rb +1 -2
  36. data/spec/views/paid_up/subscriptions_spec.rb +2 -3
  37. metadata +23 -4
  38. data/spec/support/plans_and_features.rb +0 -163
  39. data/spec/support/subscribers.rb +0 -44
@@ -3779,3 +3779,2284 @@ Migrating to AddStripeIdColumnToUsers (20150523010840)
3779
3779
   (115.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
3780
3780
   (173.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
3781
3781
   (107.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
3782
+  (78.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
3783
+  (0.1ms) select sqlite_version(*)
3784
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3785
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3786
+ Migrating to CreateUsersTable (20150406154440)
3787
+  (0.1ms) begin transaction
3788
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
3789
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406154440"]]
3790
+  (101.4ms) commit transaction
3791
+ Migrating to CreateGroupsTable (20150517175135)
3792
+  (0.2ms) begin transaction
3793
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150517175135_create_groups_table.rb:7)
3794
+  (0.7ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
3795
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175135"]]
3796
+  (102.8ms) commit transaction
3797
+ Migrating to CreateDoodadsTable (20150517175136)
3798
+  (0.1ms) begin transaction
3799
+  (0.5ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
3800
+  (0.3ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
3801
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175136"]]
3802
+  (100.1ms) commit transaction
3803
+ Migrating to AddDeviseToUsers (20150523010827)
3804
+  (0.1ms) begin transaction
3805
+  (0.3ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
3806
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
3807
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_token" varchar
3808
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
3809
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" datetime
3810
+  (0.2ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
3811
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
3812
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
3813
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
3814
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
3815
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
3816
+  (0.1ms) SELECT sql
3817
+ FROM sqlite_master
3818
+ WHERE name='index_users_on_email' AND type='index'
3819
+ UNION ALL
3820
+ SELECT sql
3821
+ FROM sqlite_temp_master
3822
+ WHERE name='index_users_on_email' AND type='index'
3823
+
3824
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
3825
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010827"]]
3826
+  (80.8ms) commit transaction
3827
+ Migrating to RolifyCreateRoles (20150523010837)
3828
+  (0.1ms) begin transaction
3829
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150523010837_rolify_create_roles.rb:7)
3830
+  (0.4ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
3831
+  (0.2ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
3832
+  (0.2ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
3833
+  (0.1ms) SELECT sql
3834
+ FROM sqlite_master
3835
+ WHERE name='index_roles_on_name' AND type='index'
3836
+ UNION ALL
3837
+ SELECT sql
3838
+ FROM sqlite_temp_master
3839
+ WHERE name='index_roles_on_name' AND type='index'
3840
+
3841
+  (0.2ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
3842
+  (0.2ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
3843
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010837"]]
3844
+  (77.0ms) commit transaction
3845
+ Migrating to CreatePaidUpPlanFeatureSettingsTable (20150523010838)
3846
+  (0.1ms) begin transaction
3847
+  (0.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
3848
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
3849
+  (0.1ms) SELECT sql
3850
+ FROM sqlite_master
3851
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
3852
+ UNION ALL
3853
+ SELECT sql
3854
+ FROM sqlite_temp_master
3855
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
3856
+
3857
+  (0.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
3858
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010838"]]
3859
+  (71.5ms) commit transaction
3860
+ Migrating to CreatePaidUpPlansTable (20150523010839)
3861
+  (0.1ms) begin transaction
3862
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150523010839_create_paid_up_plans_table.paid_up.rb:10)
3863
+  (0.3ms) 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) 
3864
+  (0.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
3865
+  (0.1ms)  SELECT sql
3866
+ FROM sqlite_master
3867
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
3868
+ UNION ALL
3869
+ SELECT sql
3870
+ FROM sqlite_temp_master
3871
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
3872
+ 
3873
+  (0.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
3874
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010839"]]
3875
+  (83.1ms) commit transaction
3876
+ Migrating to AddStripeIdColumnToUsers (20150523010840)
3877
+  (0.1ms) begin transaction
3878
+  (0.4ms) ALTER TABLE "users" ADD "stripe_id" varchar
3879
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010840"]]
3880
+  (86.6ms) commit transaction
3881
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3882
+  (0.2ms) SELECT sql
3883
+ FROM sqlite_master
3884
+ WHERE name='index_doodads_on_user_id' AND type='index'
3885
+ UNION ALL
3886
+ SELECT sql
3887
+ FROM sqlite_temp_master
3888
+ WHERE name='index_doodads_on_user_id' AND type='index'
3889
+
3890
+  (0.2ms)  SELECT sql
3891
+ FROM sqlite_master
3892
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
3893
+ UNION ALL
3894
+ SELECT sql
3895
+ FROM sqlite_temp_master
3896
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
3897
+ 
3898
+  (0.2ms) SELECT sql
3899
+ FROM sqlite_master
3900
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
3901
+ UNION ALL
3902
+ SELECT sql
3903
+ FROM sqlite_temp_master
3904
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
3905
+
3906
+  (0.1ms)  SELECT sql
3907
+ FROM sqlite_master
3908
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
3909
+ UNION ALL
3910
+ SELECT sql
3911
+ FROM sqlite_temp_master
3912
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
3913
+ 
3914
+  (0.1ms) SELECT sql
3915
+ FROM sqlite_master
3916
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
3917
+ UNION ALL
3918
+ SELECT sql
3919
+ FROM sqlite_temp_master
3920
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
3921
+
3922
+  (0.1ms)  SELECT sql
3923
+ FROM sqlite_master
3924
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
3925
+ UNION ALL
3926
+ SELECT sql
3927
+ FROM sqlite_temp_master
3928
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
3929
+ 
3930
+  (0.1ms) SELECT sql
3931
+ FROM sqlite_master
3932
+ WHERE name='index_roles_on_name' AND type='index'
3933
+ UNION ALL
3934
+ SELECT sql
3935
+ FROM sqlite_temp_master
3936
+ WHERE name='index_roles_on_name' AND type='index'
3937
+
3938
+  (0.1ms)  SELECT sql
3939
+ FROM sqlite_master
3940
+ WHERE name='index_users_on_reset_password_token' AND type='index'
3941
+ UNION ALL
3942
+ SELECT sql
3943
+ FROM sqlite_temp_master
3944
+ WHERE name='index_users_on_reset_password_token' AND type='index'
3945
+ 
3946
+  (0.1ms) SELECT sql
3947
+ FROM sqlite_master
3948
+ WHERE name='index_users_on_email' AND type='index'
3949
+ UNION ALL
3950
+ SELECT sql
3951
+ FROM sqlite_temp_master
3952
+ WHERE name='index_users_on_email' AND type='index'
3953
+
3954
+  (0.1ms)  SELECT sql
3955
+ FROM sqlite_master
3956
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
3957
+ UNION ALL
3958
+ SELECT sql
3959
+ FROM sqlite_temp_master
3960
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
3961
+ 
3962
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3963
+  (0.1ms) begin transaction
3964
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
3965
+ SQL (0.2ms) 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", "2015-06-24 01:38:49.537249"], ["updated_at", "2015-06-24 01:38:49.537249"]]
3966
+  (100.3ms) commit transaction
3967
+  (0.1ms) begin transaction
3968
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
3969
+ SQL (0.1ms) 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", "2015-06-24 01:38:50.130866"], ["updated_at", "2015-06-24 01:38:50.130866"]]
3970
+  (100.4ms) commit transaction
3971
+  (0.1ms) begin transaction
3972
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
3973
+ SQL (0.1ms) 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", "2015-06-24 01:38:51.188237"], ["updated_at", "2015-06-24 01:38:51.188237"]]
3974
+  (90.6ms) commit transaction
3975
+  (0.1ms) begin transaction
3976
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
3977
+ 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", "2015-06-24 01:38:51.724135"], ["updated_at", "2015-06-24 01:38:51.724135"]]
3978
+  (81.4ms) commit transaction
3979
+  (0.1ms) begin transaction
3980
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
3981
+ SQL (0.3ms) 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", "2015-06-24 01:38:52.481219"], ["updated_at", "2015-06-24 01:38:52.481219"]]
3982
+  (74.7ms) commit transaction
3983
+  (0.1ms) begin transaction
3984
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
3985
+  (84.6ms) commit transaction
3986
+  (0.2ms) begin transaction
3987
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
3988
+  (96.0ms) commit transaction
3989
+  (0.8ms) begin transaction
3990
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
3991
+  (101.6ms) commit transaction
3992
+  (0.1ms) begin transaction
3993
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
3994
+  (97.7ms) commit transaction
3995
+  (0.1ms) begin transaction
3996
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
3997
+  (103.1ms) commit transaction
3998
+  (0.1ms) begin transaction
3999
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
4000
+  (94.6ms) commit transaction
4001
+  (0.2ms) begin transaction
4002
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
4003
+  (71.3ms) commit transaction
4004
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4005
+  (0.2ms) begin transaction
4006
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4007
+  (0.2ms) rollback transaction
4008
+  (0.1ms) begin transaction
4009
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4010
+  (0.1ms) rollback transaction
4011
+  (0.1ms) begin transaction
4012
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4013
+  (0.1ms) rollback transaction
4014
+  (0.1ms) begin transaction
4015
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4016
+  (0.1ms) rollback transaction
4017
+  (0.1ms) begin transaction
4018
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4019
+  (0.1ms) rollback transaction
4020
+  (0.0ms) begin transaction
4021
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4022
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4023
+  (99.1ms) commit transaction
4024
+  (0.2ms) begin transaction
4025
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4026
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4027
+  (101.4ms) commit transaction
4028
+  (0.2ms) begin transaction
4029
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4030
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4031
+  (94.9ms) commit transaction
4032
+  (0.2ms) begin transaction
4033
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4034
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4035
+  (93.3ms) commit transaction
4036
+  (0.2ms) begin transaction
4037
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4038
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4039
+  (93.5ms) commit transaction
4040
+  (0.2ms) begin transaction
4041
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4042
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4043
+  (86.3ms) commit transaction
4044
+  (0.2ms) begin transaction
4045
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4046
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4047
+  (76.6ms) commit transaction
4048
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4049
+  (0.1ms) begin transaction
4050
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4051
+  (0.1ms) rollback transaction
4052
+  (0.1ms) begin transaction
4053
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4054
+  (0.1ms) rollback transaction
4055
+  (0.1ms) begin transaction
4056
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4057
+  (0.1ms) rollback transaction
4058
+  (0.1ms) begin transaction
4059
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4060
+  (0.1ms) rollback transaction
4061
+  (0.1ms) begin transaction
4062
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4063
+  (0.0ms) rollback transaction
4064
+  (0.1ms) begin transaction
4065
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4066
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4067
+  (109.6ms) commit transaction
4068
+  (0.1ms) begin transaction
4069
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4070
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4071
+  (93.7ms) commit transaction
4072
+  (0.1ms) begin transaction
4073
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4074
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4075
+  (87.5ms) commit transaction
4076
+  (0.1ms) begin transaction
4077
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4078
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4079
+  (86.2ms) commit transaction
4080
+  (0.1ms) begin transaction
4081
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4082
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4083
+  (77.5ms) commit transaction
4084
+  (0.1ms) begin transaction
4085
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4086
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4087
+  (77.6ms) commit transaction
4088
+  (0.1ms) begin transaction
4089
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4090
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4091
+  (94.2ms) commit transaction
4092
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4093
+  (0.1ms) begin transaction
4094
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4095
+  (0.1ms) rollback transaction
4096
+  (0.1ms) begin transaction
4097
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4098
+  (0.1ms) rollback transaction
4099
+  (0.1ms) begin transaction
4100
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4101
+  (0.1ms) rollback transaction
4102
+  (0.1ms) begin transaction
4103
+ PaidUp::Plan Exists (0.4ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4104
+  (0.1ms) rollback transaction
4105
+  (0.1ms) begin transaction
4106
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4107
+  (0.1ms) rollback transaction
4108
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4109
+  (0.1ms) begin transaction
4110
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4111
+  (0.1ms) rollback transaction
4112
+  (0.1ms) begin transaction
4113
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4114
+  (0.1ms) rollback transaction
4115
+  (0.1ms) begin transaction
4116
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4117
+  (0.1ms) rollback transaction
4118
+  (0.2ms) begin transaction
4119
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4120
+  (0.1ms) rollback transaction
4121
+  (0.1ms) begin transaction
4122
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4123
+  (0.1ms) rollback transaction
4124
+  (0.0ms) begin transaction
4125
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4126
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4127
+  (94.8ms) commit transaction
4128
+  (0.1ms) begin transaction
4129
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4130
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4131
+  (111.7ms) commit transaction
4132
+  (0.2ms) begin transaction
4133
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4134
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4135
+  (77.3ms) commit transaction
4136
+  (0.2ms) begin transaction
4137
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4138
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4139
+  (101.9ms) commit transaction
4140
+  (0.1ms) begin transaction
4141
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4142
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4143
+  (87.7ms) commit transaction
4144
+  (0.1ms) begin transaction
4145
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4146
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4147
+  (119.7ms) commit transaction
4148
+  (0.1ms) begin transaction
4149
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4150
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4151
+  (85.8ms) commit transaction
4152
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4153
+  (0.1ms) begin transaction
4154
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4155
+  (0.2ms) rollback transaction
4156
+  (0.1ms) begin transaction
4157
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4158
+  (0.1ms) rollback transaction
4159
+  (0.1ms) begin transaction
4160
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4161
+  (0.1ms) rollback transaction
4162
+  (0.1ms) begin transaction
4163
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4164
+  (0.1ms) rollback transaction
4165
+  (0.1ms) begin transaction
4166
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4167
+  (0.1ms) rollback transaction
4168
+  (0.1ms) begin transaction
4169
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4170
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4171
+  (94.2ms) commit transaction
4172
+  (0.1ms) begin transaction
4173
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4174
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4175
+  (94.2ms) commit transaction
4176
+  (0.1ms) begin transaction
4177
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4178
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4179
+  (78.3ms) commit transaction
4180
+  (0.2ms) begin transaction
4181
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4182
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4183
+  (93.6ms) commit transaction
4184
+  (0.2ms) begin transaction
4185
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4186
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4187
+  (110.1ms) commit transaction
4188
+  (0.1ms) begin transaction
4189
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4190
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4191
+  (94.9ms) commit transaction
4192
+  (0.1ms) begin transaction
4193
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4194
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4195
+  (119.1ms) commit transaction
4196
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4197
+  (0.1ms) begin transaction
4198
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4199
+  (0.1ms) rollback transaction
4200
+  (0.1ms) begin transaction
4201
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4202
+  (0.1ms) rollback transaction
4203
+  (0.1ms) begin transaction
4204
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4205
+  (0.0ms) rollback transaction
4206
+  (0.1ms) begin transaction
4207
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4208
+  (0.1ms) rollback transaction
4209
+  (0.2ms) begin transaction
4210
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4211
+  (0.1ms) rollback transaction
4212
+  (0.1ms) begin transaction
4213
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4214
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4215
+  (114.0ms) commit transaction
4216
+  (0.2ms) begin transaction
4217
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4218
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4219
+  (101.3ms) commit transaction
4220
+  (0.1ms) begin transaction
4221
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4222
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4223
+  (105.6ms) commit transaction
4224
+  (0.1ms) begin transaction
4225
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4226
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4227
+  (102.7ms) commit transaction
4228
+  (0.2ms) begin transaction
4229
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4230
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4231
+  (101.7ms) commit transaction
4232
+  (0.2ms) begin transaction
4233
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4234
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4235
+  (93.4ms) commit transaction
4236
+  (0.2ms) begin transaction
4237
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4238
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4239
+  (110.2ms) commit transaction
4240
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4241
+  (0.1ms) begin transaction
4242
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4243
+  (0.1ms) rollback transaction
4244
+  (0.1ms) begin transaction
4245
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4246
+  (0.1ms) rollback transaction
4247
+  (0.1ms) begin transaction
4248
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4249
+  (0.1ms) rollback transaction
4250
+  (0.1ms) begin transaction
4251
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4252
+  (0.1ms) rollback transaction
4253
+  (0.2ms) begin transaction
4254
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4255
+  (0.0ms) rollback transaction
4256
+  (0.0ms) begin transaction
4257
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4258
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4259
+  (89.1ms) commit transaction
4260
+  (0.1ms) begin transaction
4261
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4262
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4263
+  (87.6ms) commit transaction
4264
+  (0.1ms) begin transaction
4265
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4266
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4267
+  (86.2ms) commit transaction
4268
+  (0.1ms) begin transaction
4269
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4270
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4271
+  (94.4ms) commit transaction
4272
+  (0.2ms) begin transaction
4273
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4274
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4275
+  (93.6ms) commit transaction
4276
+  (0.2ms) begin transaction
4277
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4278
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4279
+  (101.6ms) commit transaction
4280
+  (0.2ms) begin transaction
4281
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4282
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4283
+  (85.1ms) commit transaction
4284
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4285
+  (0.1ms) begin transaction
4286
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4287
+  (0.3ms) rollback transaction
4288
+  (0.1ms) begin transaction
4289
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4290
+  (0.1ms) rollback transaction
4291
+  (0.1ms) begin transaction
4292
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4293
+  (0.1ms) rollback transaction
4294
+  (0.1ms) begin transaction
4295
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4296
+  (0.1ms) rollback transaction
4297
+  (0.1ms) begin transaction
4298
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4299
+  (0.1ms) rollback transaction
4300
+  (0.1ms) begin transaction
4301
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4302
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4303
+  (93.6ms) commit transaction
4304
+  (0.2ms) begin transaction
4305
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4306
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4307
+  (95.4ms) commit transaction
4308
+  (0.1ms) begin transaction
4309
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4310
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4311
+  (88.0ms) commit transaction
4312
+  (0.3ms) begin transaction
4313
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4314
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4315
+  (86.3ms) commit transaction
4316
+  (0.1ms) begin transaction
4317
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4318
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4319
+  (86.1ms) commit transaction
4320
+  (0.2ms) begin transaction
4321
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4322
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4323
+  (101.4ms) commit transaction
4324
+  (0.2ms) begin transaction
4325
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4326
+ SQL (0.5ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4327
+  (101.5ms) commit transaction
4328
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4329
+  (0.1ms) begin transaction
4330
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4331
+  (0.1ms) rollback transaction
4332
+  (0.1ms) begin transaction
4333
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4334
+  (0.1ms) rollback transaction
4335
+  (0.2ms) begin transaction
4336
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4337
+  (0.1ms) rollback transaction
4338
+  (0.1ms) begin transaction
4339
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4340
+  (0.1ms) rollback transaction
4341
+  (0.1ms) begin transaction
4342
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4343
+  (0.1ms) rollback transaction
4344
+  (0.1ms) begin transaction
4345
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4346
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4347
+  (87.4ms) commit transaction
4348
+  (0.1ms) begin transaction
4349
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4350
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4351
+  (96.6ms) commit transaction
4352
+  (0.1ms) begin transaction
4353
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4354
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4355
+  (151.7ms) commit transaction
4356
+  (0.2ms) begin transaction
4357
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4358
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4359
+  (94.3ms) commit transaction
4360
+  (0.2ms) begin transaction
4361
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4362
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4363
+  (94.2ms) commit transaction
4364
+  (0.1ms) begin transaction
4365
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4366
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4367
+  (79.7ms) commit transaction
4368
+  (0.1ms) begin transaction
4369
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4370
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4371
+  (79.7ms) commit transaction
4372
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4373
+  (0.1ms) begin transaction
4374
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4375
+  (0.1ms) rollback transaction
4376
+  (0.1ms) begin transaction
4377
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4378
+  (0.1ms) rollback transaction
4379
+  (0.1ms) begin transaction
4380
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4381
+  (0.0ms) rollback transaction
4382
+  (0.1ms) begin transaction
4383
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4384
+  (0.1ms) rollback transaction
4385
+  (0.1ms) begin transaction
4386
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4387
+  (0.1ms) rollback transaction
4388
+  (0.1ms) begin transaction
4389
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4390
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4391
+  (91.5ms) commit transaction
4392
+  (0.2ms) begin transaction
4393
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4394
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4395
+  (93.5ms) commit transaction
4396
+  (0.1ms) begin transaction
4397
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4398
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4399
+  (85.9ms) commit transaction
4400
+  (0.5ms) begin transaction
4401
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4402
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4403
+  (77.0ms) commit transaction
4404
+  (0.2ms) begin transaction
4405
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4406
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4407
+  (85.7ms) commit transaction
4408
+  (0.1ms) begin transaction
4409
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4410
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4411
+  (87.7ms) commit transaction
4412
+  (0.1ms) begin transaction
4413
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4414
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4415
+  (95.6ms) commit transaction
4416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4417
+  (0.1ms) begin transaction
4418
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4419
+  (0.1ms) rollback transaction
4420
+  (0.1ms) begin transaction
4421
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4422
+  (0.1ms) rollback transaction
4423
+  (0.1ms) begin transaction
4424
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4425
+  (0.1ms) rollback transaction
4426
+  (0.1ms) begin transaction
4427
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4428
+  (0.1ms) rollback transaction
4429
+  (0.1ms) begin transaction
4430
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4431
+  (0.1ms) rollback transaction
4432
+  (0.1ms) begin transaction
4433
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4434
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4435
+  (94.8ms) commit transaction
4436
+  (0.1ms) begin transaction
4437
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4438
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4439
+  (85.1ms) commit transaction
4440
+  (0.1ms) begin transaction
4441
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4442
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4443
+  (84.8ms) commit transaction
4444
+  (0.2ms) begin transaction
4445
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4446
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4447
+  (85.3ms) commit transaction
4448
+  (0.2ms) begin transaction
4449
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4450
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4451
+  (84.9ms) commit transaction
4452
+  (0.1ms) begin transaction
4453
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4454
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4455
+  (110.1ms) commit transaction
4456
+  (0.1ms) begin transaction
4457
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4458
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4459
+  (78.7ms) commit transaction
4460
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4461
+  (0.1ms) begin transaction
4462
+ PaidUp::Plan Exists (0.4ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4463
+  (0.1ms) rollback transaction
4464
+  (0.1ms) begin transaction
4465
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4466
+  (0.1ms) rollback transaction
4467
+  (0.1ms) begin transaction
4468
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4469
+  (0.1ms) rollback transaction
4470
+  (0.1ms) begin transaction
4471
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4472
+  (0.0ms) rollback transaction
4473
+  (0.1ms) begin transaction
4474
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4475
+  (0.1ms) rollback transaction
4476
+  (0.0ms) begin transaction
4477
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4478
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4479
+  (75.2ms) commit transaction
4480
+  (0.2ms) begin transaction
4481
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4482
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4483
+  (109.8ms) commit transaction
4484
+  (0.2ms) begin transaction
4485
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4486
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4487
+  (85.4ms) commit transaction
4488
+  (0.2ms) begin transaction
4489
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4490
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4491
+  (85.4ms) commit transaction
4492
+  (0.3ms) begin transaction
4493
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4494
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4495
+  (110.2ms) commit transaction
4496
+  (0.2ms) begin transaction
4497
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4498
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4499
+  (101.6ms) commit transaction
4500
+  (0.1ms) begin transaction
4501
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4502
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4503
+  (79.6ms) commit transaction
4504
+  (0.1ms) begin transaction
4505
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
4506
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$Twj91GA1aBu59y7gR/7lD.tvM9i8ArQVmSexcyu73p6LyuoW3RyRi"], ["name", "Free Subscriber"]]
4507
+  (100.7ms) commit transaction
4508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4509
+  (0.1ms) begin transaction
4510
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4511
+  (0.1ms) rollback transaction
4512
+  (0.1ms) begin transaction
4513
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4514
+  (0.1ms) rollback transaction
4515
+  (0.1ms) begin transaction
4516
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4517
+  (0.1ms) rollback transaction
4518
+  (0.1ms) begin transaction
4519
+ PaidUp::Plan Exists (0.4ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4520
+  (0.1ms) rollback transaction
4521
+  (0.1ms) begin transaction
4522
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4523
+  (0.0ms) rollback transaction
4524
+  (0.1ms) begin transaction
4525
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4526
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4527
+  (74.4ms) commit transaction
4528
+  (0.1ms) begin transaction
4529
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4530
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4531
+  (94.0ms) commit transaction
4532
+  (0.1ms) begin transaction
4533
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4534
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4535
+  (85.9ms) commit transaction
4536
+  (0.1ms) begin transaction
4537
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4538
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4539
+  (79.9ms) commit transaction
4540
+  (0.1ms) begin transaction
4541
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4542
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4543
+  (110.7ms) commit transaction
4544
+  (0.1ms) begin transaction
4545
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4546
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4547
+  (95.8ms) commit transaction
4548
+  (0.1ms) begin transaction
4549
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4550
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4551
+  (85.8ms) commit transaction
4552
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4553
+  (0.1ms) begin transaction
4554
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4555
+  (0.1ms) rollback transaction
4556
+  (0.1ms) begin transaction
4557
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4558
+  (0.2ms) rollback transaction
4559
+  (0.1ms) begin transaction
4560
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4561
+  (0.1ms) rollback transaction
4562
+  (0.1ms) begin transaction
4563
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4564
+  (0.1ms) rollback transaction
4565
+  (0.1ms) begin transaction
4566
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4567
+  (0.1ms) rollback transaction
4568
+  (0.0ms) begin transaction
4569
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4570
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4571
+  (92.3ms) commit transaction
4572
+  (0.1ms) begin transaction
4573
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4574
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4575
+  (87.6ms) commit transaction
4576
+  (0.1ms) begin transaction
4577
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4578
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4579
+  (94.5ms) commit transaction
4580
+  (0.2ms) begin transaction
4581
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4582
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4583
+  (85.4ms) commit transaction
4584
+  (0.2ms) begin transaction
4585
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4586
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4587
+  (93.3ms) commit transaction
4588
+  (0.2ms) begin transaction
4589
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4590
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4591
+  (102.5ms) commit transaction
4592
+  (0.1ms) begin transaction
4593
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4594
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4595
+  (88.0ms) commit transaction
4596
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4597
+  (0.1ms) begin transaction
4598
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4599
+  (0.1ms) rollback transaction
4600
+  (0.1ms) begin transaction
4601
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4602
+  (0.1ms) rollback transaction
4603
+  (0.1ms) begin transaction
4604
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4605
+  (0.2ms) rollback transaction
4606
+  (0.1ms) begin transaction
4607
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4608
+  (0.1ms) rollback transaction
4609
+  (0.1ms) begin transaction
4610
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4611
+  (0.1ms) rollback transaction
4612
+  (0.1ms) begin transaction
4613
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4614
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4615
+  (84.4ms) commit transaction
4616
+  (0.1ms) begin transaction
4617
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4618
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4619
+  (110.9ms) commit transaction
4620
+  (0.2ms) begin transaction
4621
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4622
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4623
+  (85.2ms) commit transaction
4624
+  (0.2ms) begin transaction
4625
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4626
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4627
+  (85.5ms) commit transaction
4628
+  (0.2ms) begin transaction
4629
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4630
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4631
+  (93.3ms) commit transaction
4632
+  (0.1ms) begin transaction
4633
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4634
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4635
+  (87.9ms) commit transaction
4636
+  (0.1ms) begin transaction
4637
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4638
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4639
+  (94.5ms) commit transaction
4640
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4641
+  (0.1ms) begin transaction
4642
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4643
+  (0.1ms) rollback transaction
4644
+  (0.1ms) begin transaction
4645
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4646
+  (0.1ms) rollback transaction
4647
+  (0.1ms) begin transaction
4648
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4649
+  (0.1ms) rollback transaction
4650
+  (0.1ms) begin transaction
4651
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4652
+  (0.0ms) rollback transaction
4653
+  (0.1ms) begin transaction
4654
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4655
+  (0.1ms) rollback transaction
4656
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4657
+  (0.1ms) begin transaction
4658
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4659
+  (0.1ms) rollback transaction
4660
+  (0.1ms) begin transaction
4661
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4662
+  (0.1ms) rollback transaction
4663
+  (0.1ms) begin transaction
4664
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4665
+  (0.1ms) rollback transaction
4666
+  (0.1ms) begin transaction
4667
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4668
+  (0.1ms) rollback transaction
4669
+  (0.1ms) begin transaction
4670
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4671
+  (0.1ms) rollback transaction
4672
+  (0.1ms) begin transaction
4673
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4674
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4675
+  (93.9ms) commit transaction
4676
+  (0.1ms) begin transaction
4677
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4678
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4679
+  (79.0ms) commit transaction
4680
+  (0.1ms) begin transaction
4681
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4682
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4683
+  (85.8ms) commit transaction
4684
+  (0.1ms) begin transaction
4685
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4686
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4687
+  (111.0ms) commit transaction
4688
+  (0.1ms) begin transaction
4689
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4690
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4691
+  (94.5ms) commit transaction
4692
+  (0.2ms) begin transaction
4693
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4694
+ SQL (0.5ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4695
+  (101.9ms) commit transaction
4696
+  (0.2ms) begin transaction
4697
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4698
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4699
+  (110.2ms) commit transaction
4700
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4701
+  (0.1ms) begin transaction
4702
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4703
+  (0.1ms) rollback transaction
4704
+  (0.1ms) begin transaction
4705
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4706
+  (0.1ms) rollback transaction
4707
+  (0.1ms) begin transaction
4708
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4709
+  (0.1ms) rollback transaction
4710
+  (0.1ms) begin transaction
4711
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4712
+  (0.0ms) rollback transaction
4713
+  (0.1ms) begin transaction
4714
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4715
+  (0.1ms) rollback transaction
4716
+  (0.0ms) begin transaction
4717
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4718
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4719
+  (81.5ms) commit transaction
4720
+  (0.2ms) begin transaction
4721
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4722
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4723
+  (77.0ms) commit transaction
4724
+  (0.1ms) begin transaction
4725
+ PaidUp::Plan Exists (1.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4726
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4727
+  (84.6ms) commit transaction
4728
+  (0.1ms) begin transaction
4729
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4730
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4731
+  (86.2ms) commit transaction
4732
+  (0.1ms) begin transaction
4733
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4734
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4735
+  (86.6ms) commit transaction
4736
+  (0.1ms) begin transaction
4737
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4738
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4739
+  (127.3ms) commit transaction
4740
+  (0.1ms) begin transaction
4741
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4742
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4743
+  (94.5ms) commit transaction
4744
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4745
+  (0.1ms) begin transaction
4746
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4747
+  (0.1ms) rollback transaction
4748
+  (0.1ms) begin transaction
4749
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4750
+  (0.1ms) rollback transaction
4751
+  (0.1ms) begin transaction
4752
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4753
+  (0.1ms) rollback transaction
4754
+  (0.1ms) begin transaction
4755
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4756
+  (0.0ms) rollback transaction
4757
+  (0.1ms) begin transaction
4758
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4759
+  (0.1ms) rollback transaction
4760
+  (0.1ms) begin transaction
4761
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4762
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4763
+  (107.7ms) commit transaction
4764
+  (0.1ms) begin transaction
4765
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4766
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4767
+  (87.0ms) commit transaction
4768
+  (0.1ms) begin transaction
4769
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4770
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4771
+  (88.0ms) commit transaction
4772
+  (0.1ms) begin transaction
4773
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4774
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4775
+  (79.9ms) commit transaction
4776
+  (0.1ms) begin transaction
4777
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4778
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4779
+  (95.4ms) commit transaction
4780
+  (0.1ms) begin transaction
4781
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4782
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4783
+  (87.2ms) commit transaction
4784
+  (0.2ms) begin transaction
4785
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4786
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4787
+  (96.9ms) commit transaction
4788
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4789
+  (0.1ms) begin transaction
4790
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
4791
+  (0.1ms) rollback transaction
4792
+  (0.1ms) begin transaction
4793
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
4794
+  (0.0ms) rollback transaction
4795
+  (0.1ms) begin transaction
4796
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4797
+  (0.1ms) rollback transaction
4798
+  (0.1ms) begin transaction
4799
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4800
+  (0.1ms) rollback transaction
4801
+  (0.1ms) begin transaction
4802
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4803
+  (0.1ms) rollback transaction
4804
+  (0.1ms) begin transaction
4805
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
4806
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4807
+  (104.5ms) commit transaction
4808
+  (0.2ms) begin transaction
4809
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4810
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4811
+  (93.6ms) commit transaction
4812
+  (0.2ms) begin transaction
4813
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4814
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
4815
+  (85.1ms) commit transaction
4816
+  (0.1ms) begin transaction
4817
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
4818
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
4819
+  (85.6ms) commit transaction
4820
+  (0.1ms) begin transaction
4821
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4822
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
4823
+  (79.8ms) commit transaction
4824
+  (0.1ms) begin transaction
4825
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4826
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
4827
+  (87.7ms) commit transaction
4828
+  (0.2ms) begin transaction
4829
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
4830
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
4831
+  (93.7ms) commit transaction
4832
+  (0.1ms) begin transaction
4833
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
4834
+  (0.0ms) rollback transaction
4835
+  (79.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
4836
+  (0.1ms) select sqlite_version(*)
4837
+  (73.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4838
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4839
+ Migrating to CreateUsersTable (20150406154440)
4840
+  (0.1ms) begin transaction
4841
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
4842
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150406154440"]]
4843
+  (83.8ms) commit transaction
4844
+ Migrating to CreateGroupsTable (20150517175135)
4845
+  (0.1ms) begin transaction
4846
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150517175135_create_groups_table.rb:7)
4847
+  (0.5ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
4848
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175135"]]
4849
+  (86.8ms) commit transaction
4850
+ Migrating to CreateDoodadsTable (20150517175136)
4851
+  (0.1ms) begin transaction
4852
+  (0.3ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
4853
+  (0.2ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
4854
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150517175136"]]
4855
+  (71.8ms) commit transaction
4856
+ Migrating to AddDeviseToUsers (20150523010827)
4857
+  (0.1ms) begin transaction
4858
+  (0.6ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
4859
+  (0.3ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
4860
+  (0.3ms) ALTER TABLE "users" ADD "reset_password_token" varchar
4861
+  (0.3ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
4862
+  (0.3ms) ALTER TABLE "users" ADD "remember_created_at" datetime
4863
+  (0.3ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
4864
+  (0.3ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
4865
+  (0.3ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
4866
+  (0.3ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
4867
+  (0.3ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
4868
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
4869
+  (0.1ms) SELECT sql
4870
+ FROM sqlite_master
4871
+ WHERE name='index_users_on_email' AND type='index'
4872
+ UNION ALL
4873
+ SELECT sql
4874
+ FROM sqlite_temp_master
4875
+ WHERE name='index_users_on_email' AND type='index'
4876
+
4877
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
4878
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010827"]]
4879
+  (73.3ms) commit transaction
4880
+ Migrating to RolifyCreateRoles (20150523010837)
4881
+  (0.1ms) begin transaction
4882
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150523010837_rolify_create_roles.rb:7)
4883
+  (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) 
4884
+  (0.2ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
4885
+  (0.2ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
4886
+  (0.1ms) SELECT sql
4887
+ FROM sqlite_master
4888
+ WHERE name='index_roles_on_name' AND type='index'
4889
+ UNION ALL
4890
+ SELECT sql
4891
+ FROM sqlite_temp_master
4892
+ WHERE name='index_roles_on_name' AND type='index'
4893
+
4894
+  (0.2ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
4895
+  (0.2ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
4896
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010837"]]
4897
+  (87.4ms) commit transaction
4898
+ Migrating to CreatePaidUpPlanFeatureSettingsTable (20150523010838)
4899
+  (0.1ms) begin transaction
4900
+  (0.5ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
4901
+  (0.3ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
4902
+  (0.2ms) SELECT sql
4903
+ FROM sqlite_master
4904
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
4905
+ UNION ALL
4906
+ SELECT sql
4907
+ FROM sqlite_temp_master
4908
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
4909
+
4910
+  (0.4ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
4911
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010838"]]
4912
+  (84.6ms) commit transaction
4913
+ Migrating to CreatePaidUpPlansTable (20150523010839)
4914
+  (0.1ms) begin transaction
4915
+ DEPRECATION WARNING: `#timestamp` 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 /home/work/Gems/paid_up/spec/dummy/db/migrate/20150523010839_create_paid_up_plans_table.paid_up.rb:10)
4916
+  (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) 
4917
+  (0.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
4918
+  (0.1ms)  SELECT sql
4919
+ FROM sqlite_master
4920
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
4921
+ UNION ALL
4922
+ SELECT sql
4923
+ FROM sqlite_temp_master
4924
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
4925
+ 
4926
+  (0.2ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
4927
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010839"]]
4928
+  (94.6ms) commit transaction
4929
+ Migrating to AddStripeIdColumnToUsers (20150523010840)
4930
+  (0.1ms) begin transaction
4931
+  (0.5ms) ALTER TABLE "users" ADD "stripe_id" varchar
4932
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150523010840"]]
4933
+  (72.0ms) commit transaction
4934
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4935
+  (0.3ms) SELECT sql
4936
+ FROM sqlite_master
4937
+ WHERE name='index_doodads_on_user_id' AND type='index'
4938
+ UNION ALL
4939
+ SELECT sql
4940
+ FROM sqlite_temp_master
4941
+ WHERE name='index_doodads_on_user_id' AND type='index'
4942
+
4943
+  (0.1ms)  SELECT sql
4944
+ FROM sqlite_master
4945
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
4946
+ UNION ALL
4947
+ SELECT sql
4948
+ FROM sqlite_temp_master
4949
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
4950
+ 
4951
+  (0.1ms) SELECT sql
4952
+ FROM sqlite_master
4953
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
4954
+ UNION ALL
4955
+ SELECT sql
4956
+ FROM sqlite_temp_master
4957
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
4958
+
4959
+  (0.1ms)  SELECT sql
4960
+ FROM sqlite_master
4961
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
4962
+ UNION ALL
4963
+ SELECT sql
4964
+ FROM sqlite_temp_master
4965
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
4966
+ 
4967
+  (0.1ms) SELECT sql
4968
+ FROM sqlite_master
4969
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
4970
+ UNION ALL
4971
+ SELECT sql
4972
+ FROM sqlite_temp_master
4973
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
4974
+
4975
+  (0.1ms)  SELECT sql
4976
+ FROM sqlite_master
4977
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
4978
+ UNION ALL
4979
+ SELECT sql
4980
+ FROM sqlite_temp_master
4981
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
4982
+ 
4983
+  (0.1ms) SELECT sql
4984
+ FROM sqlite_master
4985
+ WHERE name='index_roles_on_name' AND type='index'
4986
+ UNION ALL
4987
+ SELECT sql
4988
+ FROM sqlite_temp_master
4989
+ WHERE name='index_roles_on_name' AND type='index'
4990
+
4991
+  (0.1ms)  SELECT sql
4992
+ FROM sqlite_master
4993
+ WHERE name='index_users_on_reset_password_token' AND type='index'
4994
+ UNION ALL
4995
+ SELECT sql
4996
+ FROM sqlite_temp_master
4997
+ WHERE name='index_users_on_reset_password_token' AND type='index'
4998
+ 
4999
+  (0.1ms) SELECT sql
5000
+ FROM sqlite_master
5001
+ WHERE name='index_users_on_email' AND type='index'
5002
+ UNION ALL
5003
+ SELECT sql
5004
+ FROM sqlite_temp_master
5005
+ WHERE name='index_users_on_email' AND type='index'
5006
+
5007
+  (0.1ms)  SELECT sql
5008
+ FROM sqlite_master
5009
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
5010
+ UNION ALL
5011
+ SELECT sql
5012
+ FROM sqlite_temp_master
5013
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
5014
+ 
5015
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5016
+  (0.1ms) begin transaction
5017
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5018
+ SQL (0.2ms) 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", "2015-06-24 02:05:01.886547"], ["updated_at", "2015-06-24 02:05:01.886547"]]
5019
+  (103.7ms) commit transaction
5020
+  (0.1ms) begin transaction
5021
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5022
+ 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", "2015-06-24 02:05:02.644553"], ["updated_at", "2015-06-24 02:05:02.644553"]]
5023
+  (87.7ms) commit transaction
5024
+  (0.1ms) begin transaction
5025
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5026
+ 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", "2015-06-24 02:05:04.153013"], ["updated_at", "2015-06-24 02:05:04.153013"]]
5027
+  (78.3ms) commit transaction
5028
+  (0.2ms) begin transaction
5029
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5030
+ SQL (0.4ms) 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", "2015-06-24 02:05:04.716987"], ["updated_at", "2015-06-24 02:05:04.716987"]]
5031
+  (83.7ms) commit transaction
5032
+  (0.2ms) begin transaction
5033
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5034
+ 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", "2015-06-24 02:05:05.439883"], ["updated_at", "2015-06-24 02:05:05.439883"]]
5035
+  (96.2ms) commit transaction
5036
+  (0.0ms) begin transaction
5037
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
5038
+  (83.7ms) commit transaction
5039
+  (0.2ms) begin transaction
5040
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
5041
+  (87.4ms) commit transaction
5042
+  (0.1ms) begin transaction
5043
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
5044
+  (89.3ms) commit transaction
5045
+  (0.1ms) begin transaction
5046
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
5047
+  (96.7ms) commit transaction
5048
+  (0.1ms) begin transaction
5049
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
5050
+  (88.6ms) commit transaction
5051
+  (0.1ms) begin transaction
5052
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
5053
+  (87.7ms) commit transaction
5054
+  (0.2ms) begin transaction
5055
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
5056
+  (87.3ms) commit transaction
5057
+  (0.1ms) begin transaction
5058
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5059
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$wiwZmPbj50pbv2PpuLS8cOz9RtrTn3H2akzsDgU54go0KCZ7oxPJa"], ["name", "Free Subscriber"]]
5060
+  (74.3ms) commit transaction
5061
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5062
+  (0.3ms) begin transaction
5063
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5064
+  (0.1ms) rollback transaction
5065
+  (0.2ms) begin transaction
5066
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5067
+  (0.1ms) rollback transaction
5068
+  (0.1ms) begin transaction
5069
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5070
+  (0.1ms) rollback transaction
5071
+  (0.1ms) begin transaction
5072
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5073
+  (0.1ms) rollback transaction
5074
+  (0.1ms) begin transaction
5075
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5076
+  (0.1ms) rollback transaction
5077
+  (0.0ms) begin transaction
5078
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5079
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
5080
+  (93.4ms) commit transaction
5081
+  (0.2ms) begin transaction
5082
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5083
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
5084
+  (93.4ms) commit transaction
5085
+  (0.2ms) begin transaction
5086
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5087
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 1]]
5088
+  (94.8ms) commit transaction
5089
+  (0.2ms) begin transaction
5090
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5091
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 5]]
5092
+  (85.1ms) commit transaction
5093
+  (0.2ms) begin transaction
5094
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5095
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "ad_free"], ["setting", 1]]
5096
+  (102.0ms) commit transaction
5097
+  (0.2ms) begin transaction
5098
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5099
+ SQL (0.1ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "groups"], ["setting", 999999999]]
5100
+  (94.7ms) commit transaction
5101
+  (0.2ms) begin transaction
5102
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5103
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "setting") VALUES (?, ?) [["feature", "doodads"], ["setting", 999999999]]
5104
+  (93.5ms) commit transaction
5105
+  (0.1ms) begin transaction
5106
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5107
+  (0.1ms) rollback transaction
5108
+  (81.2ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text) 
5109
+  (0.1ms) select sqlite_version(*)
5110
+  (73.8ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5111
+  (131.4ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
5112
+  (131.5ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer) 
5113
+  (98.7ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5114
+  (0.1ms)  SELECT sql
5115
+ FROM sqlite_master
5116
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5117
+ UNION ALL
5118
+ SELECT sql
5119
+ FROM sqlite_temp_master
5120
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5121
+ 
5122
+  (98.4ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5123
+  (74.9ms) 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) 
5124
+  (74.1ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5125
+  (0.2ms)  SELECT sql
5126
+ FROM sqlite_master
5127
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5128
+ UNION ALL
5129
+ SELECT sql
5130
+ FROM sqlite_temp_master
5131
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5132
+ 
5133
+  (73.0ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5134
+  (98.7ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
5135
+  (98.3ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5136
+  (0.1ms)  SELECT sql
5137
+ FROM sqlite_master
5138
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5139
+ UNION ALL
5140
+ SELECT sql
5141
+ FROM sqlite_temp_master
5142
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5143
+ 
5144
+  (82.1ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5145
+  (118.7ms) 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) 
5146
+  (82.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5147
+  (0.1ms)  SELECT sql
5148
+ FROM sqlite_master
5149
+ WHERE name='index_users_on_email' AND type='index'
5150
+ UNION ALL
5151
+ SELECT sql
5152
+ FROM sqlite_temp_master
5153
+ WHERE name='index_users_on_email' AND type='index'
5154
+ 
5155
+  (115.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5156
+  (81.9ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer) 
5157
+  (82.2ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5158
+  (87.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5159
+  (83.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5160
+  (0.2ms) SELECT version FROM "schema_migrations"
5161
+  (73.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5162
+  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5163
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5164
+  (74.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5165
+  (74.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5166
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5167
+  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5168
+  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5169
+  (71.2ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
5170
+  (0.1ms) select sqlite_version(*)
5171
+  (73.6ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5172
+  (81.8ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) 
5173
+  (82.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
5174
+  (83.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5175
+  (0.1ms) SELECT sql
5176
+ FROM sqlite_master
5177
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5178
+ UNION ALL
5179
+ SELECT sql
5180
+ FROM sqlite_temp_master
5181
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5182
+
5183
+  (81.9ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5184
+  (73.5ms) 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)
5185
+  (156.6ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5186
+  (0.2ms) SELECT sql
5187
+ FROM sqlite_master
5188
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5189
+ UNION ALL
5190
+ SELECT sql
5191
+ FROM sqlite_temp_master
5192
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5193
+
5194
+  (72.9ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5195
+  (74.1ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime)
5196
+  (214.1ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5197
+  (0.1ms) SELECT sql
5198
+ FROM sqlite_master
5199
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5200
+ UNION ALL
5201
+ SELECT sql
5202
+ FROM sqlite_temp_master
5203
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5204
+
5205
+  (73.8ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5206
+  (81.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)
5207
+  (82.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5208
+  (0.2ms) SELECT sql
5209
+ FROM sqlite_master
5210
+ WHERE name='index_users_on_email' AND type='index'
5211
+ UNION ALL
5212
+ SELECT sql
5213
+ FROM sqlite_temp_master
5214
+ WHERE name='index_users_on_email' AND type='index'
5215
+
5216
+  (72.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5217
+  (90.7ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
5218
+  (74.9ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5219
+  (82.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
5220
+  (73.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5221
+  (0.2ms) SELECT version FROM "schema_migrations"
5222
+  (73.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5223
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5224
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5225
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5226
+  (99.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5227
+  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5228
+  (82.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5229
+  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5230
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5231
+  (0.1ms) begin transaction
5232
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5233
+ SQL (0.2ms) 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", "2015-06-24 02:07:17.588344"], ["updated_at", "2015-06-24 02:07:17.588344"]]
5234
+  (80.3ms) commit transaction
5235
+  (0.1ms) begin transaction
5236
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5237
+ SQL (0.3ms) 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", "2015-06-24 02:07:18.207089"], ["updated_at", "2015-06-24 02:07:18.207089"]]
5238
+  (80.5ms) commit transaction
5239
+  (0.1ms) begin transaction
5240
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5241
+ 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", "2015-06-24 02:07:18.824315"], ["updated_at", "2015-06-24 02:07:18.824315"]]
5242
+  (76.7ms) commit transaction
5243
+  (0.2ms) begin transaction
5244
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5245
+ 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", "2015-06-24 02:07:19.311625"], ["updated_at", "2015-06-24 02:07:19.311625"]]
5246
+  (73.0ms) commit transaction
5247
+  (0.1ms) begin transaction
5248
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5249
+ SQL (0.3ms) 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", "2015-06-24 02:07:19.779936"], ["updated_at", "2015-06-24 02:07:19.779936"]]
5250
+  (83.2ms) commit transaction
5251
+  (0.1ms) begin transaction
5252
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
5253
+  (161.6ms) commit transaction
5254
+  (0.1ms) begin transaction
5255
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
5256
+  (96.1ms) commit transaction
5257
+  (0.2ms) begin transaction
5258
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
5259
+  (96.0ms) commit transaction
5260
+  (0.2ms) begin transaction
5261
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
5262
+  (104.2ms) commit transaction
5263
+  (0.1ms) begin transaction
5264
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
5265
+  (104.4ms) commit transaction
5266
+  (0.1ms) begin transaction
5267
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
5268
+  (113.0ms) commit transaction
5269
+  (0.2ms) begin transaction
5270
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
5271
+  (104.1ms) commit transaction
5272
+  (0.1ms) begin transaction
5273
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5274
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$HTOg95YFK7e0oYOBi32bOOnm2PQN1F9gJqfRkHVg9wjlCwTyJkTki"], ["name", "Free Subscriber"]]
5275
+  (116.6ms) commit transaction
5276
+  (78.0ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text) 
5277
+  (0.1ms) select sqlite_version(*)
5278
+  (73.8ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5279
+  (81.7ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
5280
+  (82.3ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer) 
5281
+  (98.8ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5282
+  (0.2ms)  SELECT sql
5283
+ FROM sqlite_master
5284
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5285
+ UNION ALL
5286
+ SELECT sql
5287
+ FROM sqlite_temp_master
5288
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5289
+ 
5290
+  (97.5ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5291
+  (90.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) 
5292
+  (83.7ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5293
+  (0.2ms)  SELECT sql
5294
+ FROM sqlite_master
5295
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5296
+ UNION ALL
5297
+ SELECT sql
5298
+ FROM sqlite_temp_master
5299
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5300
+ 
5301
+  (106.0ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5302
+  (115.0ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
5303
+  (115.2ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5304
+  (0.1ms)  SELECT sql
5305
+ FROM sqlite_master
5306
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5307
+ UNION ALL
5308
+ SELECT sql
5309
+ FROM sqlite_temp_master
5310
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5311
+ 
5312
+  (106.6ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5313
+  (120.5ms) 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) 
5314
+  (106.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5315
+  (0.2ms)  SELECT sql
5316
+ FROM sqlite_master
5317
+ WHERE name='index_users_on_email' AND type='index'
5318
+ UNION ALL
5319
+ SELECT sql
5320
+ FROM sqlite_temp_master
5321
+ WHERE name='index_users_on_email' AND type='index'
5322
+ 
5323
+  (147.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5324
+  (98.4ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer) 
5325
+  (90.6ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5326
+  (79.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5327
+  (90.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5328
+  (0.2ms) SELECT version FROM "schema_migrations"
5329
+  (83.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5330
+  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5331
+  (91.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5332
+  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5333
+  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5334
+  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5335
+  (82.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5336
+  (90.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5337
+  (79.6ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
5338
+  (0.1ms) select sqlite_version(*)
5339
+  (81.9ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5340
+  (98.8ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) 
5341
+  (98.1ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
5342
+  (98.5ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5343
+  (0.2ms) SELECT sql
5344
+ FROM sqlite_master
5345
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5346
+ UNION ALL
5347
+ SELECT sql
5348
+ FROM sqlite_temp_master
5349
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5350
+
5351
+  (108.0ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5352
+  (98.5ms) 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)
5353
+  (98.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5354
+  (0.2ms) SELECT sql
5355
+ FROM sqlite_master
5356
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5357
+ UNION ALL
5358
+ SELECT sql
5359
+ FROM sqlite_temp_master
5360
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5361
+
5362
+  (106.5ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5363
+  (106.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)
5364
+  (115.0ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5365
+  (0.2ms) SELECT sql
5366
+ FROM sqlite_master
5367
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5368
+ UNION ALL
5369
+ SELECT sql
5370
+ FROM sqlite_temp_master
5371
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5372
+
5373
+  (98.4ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5374
+  (106.5ms) 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)
5375
+  (115.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5376
+  (0.1ms) SELECT sql
5377
+ FROM sqlite_master
5378
+ WHERE name='index_users_on_email' AND type='index'
5379
+ UNION ALL
5380
+ SELECT sql
5381
+ FROM sqlite_temp_master
5382
+ WHERE name='index_users_on_email' AND type='index'
5383
+
5384
+  (98.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5385
+  (99.2ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
5386
+  (98.3ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5387
+  (100.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
5388
+  (107.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5389
+  (0.2ms) SELECT version FROM "schema_migrations"
5390
+  (106.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5391
+  (107.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5392
+  (115.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5393
+  (107.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5394
+  (124.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5395
+  (107.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5396
+  (107.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5397
+  (107.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5398
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5399
+  (0.2ms) begin transaction
5400
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5401
+ SQL (0.2ms) 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", "2015-06-24 02:08:58.222771"], ["updated_at", "2015-06-24 02:08:58.222771"]]
5402
+  (134.2ms) commit transaction
5403
+  (0.1ms) begin transaction
5404
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5405
+ SQL (0.3ms) 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", "2015-06-24 02:09:09.058493"], ["updated_at", "2015-06-24 02:09:09.058493"]]
5406
+  (138.4ms) commit transaction
5407
+  (0.1ms) begin transaction
5408
+ PaidUp::Plan Exists (0.3ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5409
+ 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", "2015-06-24 02:09:09.928151"], ["updated_at", "2015-06-24 02:09:09.928151"]]
5410
+  (110.1ms) commit transaction
5411
+  (0.1ms) begin transaction
5412
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5413
+ 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", "2015-06-24 02:09:11.510742"], ["updated_at", "2015-06-24 02:09:11.510742"]]
5414
+  (694.9ms) commit transaction
5415
+  (0.2ms) begin transaction
5416
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5417
+ SQL (0.3ms) 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", "2015-06-24 02:09:12.972492"], ["updated_at", "2015-06-24 02:09:12.972492"]]
5418
+  (107.4ms) commit transaction
5419
+  (0.1ms) begin transaction
5420
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
5421
+  (89.5ms) commit transaction
5422
+  (0.2ms) begin transaction
5423
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
5424
+  (87.7ms) commit transaction
5425
+  (0.2ms) begin transaction
5426
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
5427
+  (96.0ms) commit transaction
5428
+  (0.2ms) begin transaction
5429
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
5430
+  (120.9ms) commit transaction
5431
+  (0.2ms) begin transaction
5432
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
5433
+  (104.2ms) commit transaction
5434
+  (0.1ms) begin transaction
5435
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
5436
+  (105.9ms) commit transaction
5437
+  (0.2ms) begin transaction
5438
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
5439
+  (95.8ms) commit transaction
5440
+  (0.1ms) begin transaction
5441
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5442
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$ppROM745/7KL5hHQxFiQT./27qT1chGp3qsRNJCKPeMT5LJqTijpq"], ["name", "Free Subscriber"]]
5443
+  (83.7ms) commit transaction
5444
+  (0.2ms) begin transaction
5445
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1MHKPI8Uhjc2"], ["id", 1]]
5446
+  (99.7ms) commit transaction
5447
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5448
+  (0.1ms) begin transaction
5449
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'no.ads.subscriber@example.com' LIMIT 1
5450
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "no.ads.subscriber@example.com"], ["encrypted_password", "$2a$10$vHmucQdOkLIxRjII/cLlRuwVXE3W0qJRieVaqmtNLvoEBTfGf6oOm"], ["name", "No Ads Subscriber"]]
5451
+  (80.4ms) commit transaction
5452
+  (0.2ms) begin transaction
5453
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1M3OVoMy6Gfw"], ["id", 2]]
5454
+  (80.7ms) commit transaction
5455
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]
5456
+  (0.1ms) begin transaction
5457
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'group.leader.subscriber@example.com' LIMIT 1
5458
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "group.leader.subscriber@example.com"], ["encrypted_password", "$2a$10$.weT8aIJtsAhkIKHTX2OIeC8qQvJ3qcrUItmqVa2JBHQLG9kF4.OS"], ["name", "Group Leader Subscriber"]]
5459
+  (84.0ms) commit transaction
5460
+  (0.2ms) begin transaction
5461
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1MDJeR6UCtig"], ["id", 3]]
5462
+  (92.4ms) commit transaction
5463
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
5464
+  (0.1ms) begin transaction
5465
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'professional.subscriber@example.com' LIMIT 1
5466
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "professional.subscriber@example.com"], ["encrypted_password", "$2a$10$q1qMY4oiK/pKdcJcT0T14eTlZCVYIz34cqt3dbsT8iHS1yuT3uGf."], ["name", "Professional Subscriber"]]
5467
+  (89.4ms) commit transaction
5468
+  (0.2ms) begin transaction
5469
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1NHuEjt3HsoW"], ["id", 4]]
5470
+  (93.5ms) commit transaction
5471
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
5472
+  (0.1ms) begin transaction
5473
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "First Group"], ["created_at", "2015-06-24 02:09:23.404891"], ["updated_at", "2015-06-24 02:09:23.404891"]]
5474
+  (85.5ms) commit transaction
5475
+  (89.4ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text) 
5476
+  (0.1ms) select sqlite_version(*)
5477
+  (73.8ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5478
+  (74.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
5479
+  (74.0ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer) 
5480
+  (74.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5481
+  (0.2ms)  SELECT sql
5482
+ FROM sqlite_master
5483
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5484
+ UNION ALL
5485
+ SELECT sql
5486
+ FROM sqlite_temp_master
5487
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5488
+ 
5489
+  (81.0ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5490
+  (107.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) 
5491
+  (81.8ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5492
+  (0.1ms)  SELECT sql
5493
+ FROM sqlite_master
5494
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5495
+ UNION ALL
5496
+ SELECT sql
5497
+ FROM sqlite_temp_master
5498
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5499
+ 
5500
+  (75.2ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5501
+  (73.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) 
5502
+  (74.1ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5503
+  (0.1ms)  SELECT sql
5504
+ FROM sqlite_master
5505
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5506
+ UNION ALL
5507
+ SELECT sql
5508
+ FROM sqlite_temp_master
5509
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5510
+ 
5511
+  (81.8ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5512
+  (79.7ms) 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) 
5513
+  (73.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5514
+  (0.1ms)  SELECT sql
5515
+ FROM sqlite_master
5516
+ WHERE name='index_users_on_email' AND type='index'
5517
+ UNION ALL
5518
+ SELECT sql
5519
+ FROM sqlite_temp_master
5520
+ WHERE name='index_users_on_email' AND type='index'
5521
+ 
5522
+  (73.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5523
+  (73.7ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer) 
5524
+  (74.1ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5525
+  (87.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5526
+  (74.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5527
+  (0.1ms) SELECT version FROM "schema_migrations"
5528
+  (74.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5529
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5530
+  (76.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5531
+  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5532
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5533
+  (74.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5534
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5535
+  (74.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5536
+  (73.1ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
5537
+  (0.1ms) select sqlite_version(*)
5538
+  (82.1ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5539
+  (98.3ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) 
5540
+  (73.8ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
5541
+  (74.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5542
+  (0.2ms) SELECT sql
5543
+ FROM sqlite_master
5544
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5545
+ UNION ALL
5546
+ SELECT sql
5547
+ FROM sqlite_temp_master
5548
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5549
+
5550
+  (72.9ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5551
+  (98.3ms) 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)
5552
+  (92.4ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5553
+  (0.1ms) SELECT sql
5554
+ FROM sqlite_master
5555
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5556
+ UNION ALL
5557
+ SELECT sql
5558
+ FROM sqlite_temp_master
5559
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5560
+
5561
+  (73.6ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5562
+  (81.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)
5563
+  (74.2ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5564
+  (0.2ms) SELECT sql
5565
+ FROM sqlite_master
5566
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5567
+ UNION ALL
5568
+ SELECT sql
5569
+ FROM sqlite_temp_master
5570
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5571
+
5572
+  (81.3ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5573
+  (90.2ms) 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)
5574
+  (81.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5575
+  (0.1ms) SELECT sql
5576
+ FROM sqlite_master
5577
+ WHERE name='index_users_on_email' AND type='index'
5578
+ UNION ALL
5579
+ SELECT sql
5580
+ FROM sqlite_temp_master
5581
+ WHERE name='index_users_on_email' AND type='index'
5582
+
5583
+  (90.3ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5584
+  (73.7ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
5585
+  (82.3ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5586
+  (73.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
5587
+  (74.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5588
+  (0.2ms) SELECT version FROM "schema_migrations"
5589
+  (75.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5590
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5591
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5592
+  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5593
+  (99.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5594
+  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5595
+  (107.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5596
+  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5597
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5598
+  (0.2ms) begin transaction
5599
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5600
+ SQL (0.2ms) 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", "2015-06-24 02:10:40.741581"], ["updated_at", "2015-06-24 02:10:40.741581"]]
5601
+  (92.3ms) commit transaction
5602
+  (0.2ms) begin transaction
5603
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5604
+ SQL (0.3ms) 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", "2015-06-24 02:10:41.702584"], ["updated_at", "2015-06-24 02:10:41.702584"]]
5605
+  (95.4ms) commit transaction
5606
+  (0.1ms) begin transaction
5607
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5608
+ 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", "2015-06-24 02:10:42.988608"], ["updated_at", "2015-06-24 02:10:42.988608"]]
5609
+  (88.6ms) commit transaction
5610
+  (0.1ms) begin transaction
5611
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5612
+ 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", "2015-06-24 02:10:43.886162"], ["updated_at", "2015-06-24 02:10:43.886162"]]
5613
+  (73.7ms) commit transaction
5614
+  (0.1ms) begin transaction
5615
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5616
+ SQL (0.1ms) 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", "2015-06-24 02:10:44.668027"], ["updated_at", "2015-06-24 02:10:44.668027"]]
5617
+  (126.8ms) commit transaction
5618
+  (0.1ms) begin transaction
5619
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
5620
+  (80.0ms) commit transaction
5621
+  (0.2ms) begin transaction
5622
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
5623
+  (96.1ms) commit transaction
5624
+  (0.2ms) begin transaction
5625
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
5626
+  (96.0ms) commit transaction
5627
+  (0.2ms) begin transaction
5628
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
5629
+  (87.9ms) commit transaction
5630
+  (0.1ms) begin transaction
5631
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
5632
+  (96.0ms) commit transaction
5633
+  (0.2ms) begin transaction
5634
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
5635
+  (72.6ms) commit transaction
5636
+  (0.2ms) begin transaction
5637
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
5638
+  (79.5ms) commit transaction
5639
+  (0.1ms) begin transaction
5640
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5641
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$Da0AV3TRRYv/7ncgf8H7SOopGggXZ2i1iEWR69k2XoztbkqDK4YUu"], ["name", "Free Subscriber"]]
5642
+  (77.1ms) commit transaction
5643
+  (0.2ms) begin transaction
5644
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1O8N5qzqiNk8"], ["id", 1]]
5645
+  (73.2ms) commit transaction
5646
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5647
+  (0.1ms) begin transaction
5648
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'no.ads.subscriber@example.com' LIMIT 1
5649
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "no.ads.subscriber@example.com"], ["encrypted_password", "$2a$10$pJ7che7oPAtGUniHzcdW8.Z.Za89QLqfc6.Zja/UYwbv5ZstuFRaW"], ["name", "No Ads Subscriber"]]
5650
+  (80.1ms) commit transaction
5651
+  (0.1ms) begin transaction
5652
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1ONY8veqFvNV"], ["id", 2]]
5653
+  (77.5ms) commit transaction
5654
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]
5655
+  (0.1ms) begin transaction
5656
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'group.leader.subscriber@example.com' LIMIT 1
5657
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "group.leader.subscriber@example.com"], ["encrypted_password", "$2a$10$sE.ChS2SH8A28boVbRrgye.9WuOQtfaic1oPTd1woguhchuwJYJCi"], ["name", "Group Leader Subscriber"]]
5658
+  (80.9ms) commit transaction
5659
+  (0.2ms) begin transaction
5660
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1OV16UCkYy9a"], ["id", 3]]
5661
+  (95.3ms) commit transaction
5662
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
5663
+  (0.1ms) begin transaction
5664
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'professional.subscriber@example.com' LIMIT 1
5665
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "professional.subscriber@example.com"], ["encrypted_password", "$2a$10$zXNZSyxi1LiOpiWS.KbpDOlCv354aUaaRwvjL4YuUeU3bHFHHjo/K"], ["name", "Professional Subscriber"]]
5666
+  (87.6ms) commit transaction
5667
+  (0.2ms) begin transaction
5668
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1O3wIAUkSWIR"], ["id", 4]]
5669
+  (86.9ms) commit transaction
5670
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
5671
+  (0.1ms) begin transaction
5672
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "First Group"], ["created_at", "2015-06-24 02:10:52.997507"], ["updated_at", "2015-06-24 02:10:52.997507"]]
5673
+  (95.9ms) commit transaction
5674
+  (90.2ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text) 
5675
+  (0.1ms) select sqlite_version(*)
5676
+  (73.9ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5677
+  (82.4ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
5678
+  (81.8ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer) 
5679
+  (75.6ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5680
+  (0.2ms)  SELECT sql
5681
+ FROM sqlite_master
5682
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5683
+ UNION ALL
5684
+ SELECT sql
5685
+ FROM sqlite_temp_master
5686
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5687
+ 
5688
+  (81.2ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5689
+  (82.3ms) 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) 
5690
+  (98.4ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5691
+  (0.1ms)  SELECT sql
5692
+ FROM sqlite_master
5693
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5694
+ UNION ALL
5695
+ SELECT sql
5696
+ FROM sqlite_temp_master
5697
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5698
+ 
5699
+  (98.5ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5700
+  (98.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) 
5701
+  (73.9ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5702
+  (0.1ms)  SELECT sql
5703
+ FROM sqlite_master
5704
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5705
+ UNION ALL
5706
+ SELECT sql
5707
+ FROM sqlite_temp_master
5708
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5709
+ 
5710
+  (73.9ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5711
+  (85.8ms) 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) 
5712
+  (74.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5713
+  (0.2ms)  SELECT sql
5714
+ FROM sqlite_master
5715
+ WHERE name='index_users_on_email' AND type='index'
5716
+ UNION ALL
5717
+ SELECT sql
5718
+ FROM sqlite_temp_master
5719
+ WHERE name='index_users_on_email' AND type='index'
5720
+ 
5721
+  (72.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5722
+  (74.2ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer) 
5723
+  (91.4ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5724
+  (97.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5725
+  (107.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5726
+  (0.2ms) SELECT version FROM "schema_migrations"
5727
+  (107.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5728
+  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5729
+  (74.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5730
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5731
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5732
+  (82.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5733
+  (74.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5734
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5735
+  (320.8ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text)
5736
+  (0.2ms) select sqlite_version(*)
5737
+  (81.5ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5738
+  (90.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime) 
5739
+  (90.5ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer)
5740
+  (90.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5741
+  (0.2ms) SELECT sql
5742
+ FROM sqlite_master
5743
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5744
+ UNION ALL
5745
+ SELECT sql
5746
+ FROM sqlite_temp_master
5747
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5748
+
5749
+  (98.5ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5750
+  (81.8ms) 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)
5751
+  (82.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5752
+  (0.2ms) SELECT sql
5753
+ FROM sqlite_master
5754
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5755
+ UNION ALL
5756
+ SELECT sql
5757
+ FROM sqlite_temp_master
5758
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5759
+
5760
+  (89.4ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5761
+  (115.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime)
5762
+  (82.4ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5763
+  (0.2ms) SELECT sql
5764
+ FROM sqlite_master
5765
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5766
+ UNION ALL
5767
+ SELECT sql
5768
+ FROM sqlite_temp_master
5769
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5770
+
5771
+  (81.4ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5772
+  (99.8ms) 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)
5773
+  (106.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5774
+  (0.1ms) SELECT sql
5775
+ FROM sqlite_master
5776
+ WHERE name='index_users_on_email' AND type='index'
5777
+ UNION ALL
5778
+ SELECT sql
5779
+ FROM sqlite_temp_master
5780
+ WHERE name='index_users_on_email' AND type='index'
5781
+
5782
+  (106.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5783
+  (107.0ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer)
5784
+  (81.9ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5785
+  (82.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
5786
+  (82.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5787
+  (0.2ms) SELECT version FROM "schema_migrations"
5788
+  (82.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5789
+  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5790
+  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5791
+  (82.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5792
+  (82.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5793
+  (92.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5794
+  (107.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5795
+  (99.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5796
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5797
+  (0.2ms) begin transaction
5798
+ PaidUp::Plan Exists (0.1ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Anonymous' LIMIT 1
5799
+ SQL (0.2ms) 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", "2015-06-24 02:11:25.056823"], ["updated_at", "2015-06-24 02:11:25.056823"]]
5800
+  (75.1ms) commit transaction
5801
+  (0.1ms) begin transaction
5802
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Free' LIMIT 1
5803
+ SQL (0.3ms) 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", "2015-06-24 02:11:25.689857"], ["updated_at", "2015-06-24 02:11:25.689857"]]
5804
+  (100.8ms) commit transaction
5805
+  (0.2ms) begin transaction
5806
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'No Ads' LIMIT 1
5807
+ 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", "2015-06-24 02:11:26.573630"], ["updated_at", "2015-06-24 02:11:26.573630"]]
5808
+  (100.2ms) commit transaction
5809
+  (0.1ms) begin transaction
5810
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Group Leader' LIMIT 1
5811
+ 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", "2015-06-24 02:11:27.363537"], ["updated_at", "2015-06-24 02:11:27.363537"]]
5812
+  (77.4ms) commit transaction
5813
+  (0.1ms) begin transaction
5814
+ PaidUp::Plan Exists (0.2ms) SELECT 1 AS one FROM "paid_up_plans" WHERE "paid_up_plans"."title" = 'Professional' LIMIT 1
5815
+ 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", "2015-06-24 02:11:28.243915"], ["updated_at", "2015-06-24 02:11:28.243915"]]
5816
+  (80.4ms) commit transaction
5817
+  (0.0ms) begin transaction
5818
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 3], ["setting", 1]]
5819
+  (73.5ms) commit transaction
5820
+  (0.1ms) begin transaction
5821
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 4], ["setting", 1]]
5822
+  (72.6ms) commit transaction
5823
+  (0.2ms) begin transaction
5824
+ SQL (0.4ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 4], ["setting", 1]]
5825
+  (87.6ms) commit transaction
5826
+  (0.1ms) begin transaction
5827
+ SQL (0.2ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 4], ["setting", 5]]
5828
+  (81.2ms) commit transaction
5829
+  (0.1ms) begin transaction
5830
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "ad_free"], ["plan_id", 5], ["setting", 1]]
5831
+  (80.1ms) commit transaction
5832
+  (0.1ms) begin transaction
5833
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "groups"], ["plan_id", 5], ["setting", 999999999]]
5834
+  (80.4ms) commit transaction
5835
+  (0.1ms) begin transaction
5836
+ SQL (0.3ms) INSERT INTO "paid_up_plan_feature_settings" ("feature", "plan_id", "setting") VALUES (?, ?, ?) [["feature", "doodads"], ["plan_id", 5], ["setting", 999999999]]
5837
+  (87.8ms) commit transaction
5838
+  (0.1ms) begin transaction
5839
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'free.subscriber@example.com' LIMIT 1
5840
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "free.subscriber@example.com"], ["encrypted_password", "$2a$10$febXRfSsOCsivrUTwZ/p.Oz5XG5PaZdv8dlkIoVDAMWo6aMbRYOSq"], ["name", "Free Subscriber"]]
5841
+  (80.5ms) commit transaction
5842
+  (0.2ms) begin transaction
5843
+ SQL (0.2ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1PkiMJBQyomX"], ["id", 1]]
5844
+  (83.6ms) commit transaction
5845
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5846
+  (0.1ms) begin transaction
5847
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'no.ads.subscriber@example.com' LIMIT 1
5848
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "no.ads.subscriber@example.com"], ["encrypted_password", "$2a$10$YCE4.n4EAkYu2V8Wgqq2H.YILj87ZhaeLEoF7RgFmsVihJl8UiJWW"], ["name", "No Ads Subscriber"]]
5849
+  (83.1ms) commit transaction
5850
+  (0.2ms) begin transaction
5851
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1PEj8xl9KzkH"], ["id", 2]]
5852
+  (83.3ms) commit transaction
5853
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]
5854
+  (0.1ms) begin transaction
5855
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'group.leader.subscriber@example.com' LIMIT 1
5856
+ SQL (0.1ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "group.leader.subscriber@example.com"], ["encrypted_password", "$2a$10$evzWxt4TaaIMMxovULTiq.0njHquQSDtr4hqaIT0UHbVGToUxVd/u"], ["name", "Group Leader Subscriber"]]
5857
+  (81.9ms) commit transaction
5858
+  (0.2ms) begin transaction
5859
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1PlsGjMF48ER"], ["id", 3]]
5860
+  (101.1ms) commit transaction
5861
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
5862
+  (0.1ms) begin transaction
5863
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'professional.subscriber@example.com' LIMIT 1
5864
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "name") VALUES (?, ?, ?) [["email", "professional.subscriber@example.com"], ["encrypted_password", "$2a$10$KqVarYHYdR9l2EZR4DdpYOfewumXUJqhWVhESVS6IJcVRc7U2r6Im"], ["name", "Professional Subscriber"]]
5865
+  (97.5ms) commit transaction
5866
+  (0.2ms) begin transaction
5867
+ SQL (0.3ms) UPDATE "users" SET "stripe_id" = ? WHERE "users"."id" = ? [["stripe_id", "cus_6U1P7sp7C3FbJ9"], ["id", 4]]
5868
+  (103.3ms) commit transaction
5869
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
5870
+  (0.0ms) begin transaction
5871
+ SQL (0.2ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "First Group"], ["created_at", "2015-06-24 02:11:38.000092"], ["updated_at", "2015-06-24 02:11:38.000092"]]
5872
+  (74.4ms) commit transaction
5873
+ Role Load (0.3ms) 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]]
5874
+  (0.0ms) begin transaction
5875
+ SQL (0.2ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 1], ["created_at", "2015-06-24 02:11:38.085618"], ["updated_at", "2015-06-24 02:11:38.085618"]]
5876
+  (96.6ms) commit transaction
5877
+ Role Exists (0.4ms) 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]]
5878
+  (0.3ms) SELECT "roles".id FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 3]]
5879
+ Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1 [["id", 1]]
5880
+ 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]]
5881
+  (0.0ms) begin transaction
5882
+ SQL (0.3ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 3], ["role_id", 1]]
5883
+  (84.1ms) commit transaction
5884
+  (0.1ms) begin transaction
5885
+ SQL (0.3ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Second Group"], ["created_at", "2015-06-24 02:11:38.325921"], ["updated_at", "2015-06-24 02:11:38.325921"]]
5886
+  (95.3ms) commit transaction
5887
+ 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", 2]]
5888
+  (0.1ms) begin transaction
5889
+ SQL (0.3ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 2], ["created_at", "2015-06-24 02:11:38.427333"], ["updated_at", "2015-06-24 02:11:38.427333"]]
5890
+  (93.2ms) commit transaction
5891
+ 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", 4], ["id", 2]]
5892
+  (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]]
5893
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1 [["id", 2]]
5894
+ Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = ? [["user_id", 4]]
5895
+  (0.1ms) begin transaction
5896
+ SQL (0.1ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 2]]
5897
+  (83.9ms) commit transaction
5898
+  (0.6ms) begin transaction
5899
+ SQL (0.3ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Third Group"], ["created_at", "2015-06-24 02:11:38.616575"], ["updated_at", "2015-06-24 02:11:38.616575"]]
5900
+  (70.3ms) commit transaction
5901
+ 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", 3]]
5902
+  (0.1ms) begin transaction
5903
+ SQL (0.3ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 3], ["created_at", "2015-06-24 02:11:38.692960"], ["updated_at", "2015-06-24 02:11:38.692960"]]
5904
+  (86.4ms) commit transaction
5905
+ Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (2, 3)
5906
+  (0.1ms) begin transaction
5907
+ SQL (0.2ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 4], ["role_id", 3]]
5908
+  (101.6ms) commit transaction
5909
+  (0.1ms) begin transaction
5910
+ SQL (0.3ms) INSERT INTO "groups" ("title", "created_at", "updated_at") VALUES (?, ?, ?) [["title", "Disabled Group"], ["created_at", "2015-06-24 02:11:38.891324"], ["updated_at", "2015-06-24 02:11:38.891324"]]
5911
+  (86.9ms) commit transaction
5912
+ 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", 4]]
5913
+  (0.2ms) begin transaction
5914
+ SQL (0.3ms) INSERT INTO "roles" ("name", "resource_type", "resource_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "owner"], ["resource_type", "Group"], ["resource_id", 4], ["created_at", "2015-06-24 02:11:38.984339"], ["updated_at", "2015-06-24 02:11:38.984339"]]
5915
+  (77.1ms) commit transaction
5916
+ Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."id" IN (1, 4)
5917
+  (0.1ms) begin transaction
5918
+ SQL (0.1ms) INSERT INTO "users_roles" ("user_id", "role_id") VALUES (?, ?) [["user_id", 3], ["role_id", 4]]
5919
+  (85.9ms) commit transaction
5920
+  (98.9ms) CREATE TABLE "doodads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" varchar, "name" varchar, "description" text) 
5921
+  (0.2ms) select sqlite_version(*)
5922
+  (97.4ms) CREATE INDEX "index_doodads_on_user_id" ON "doodads" ("user_id")
5923
+  (73.7ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "created_at" datetime, "updated_at" datetime)
5924
+  (73.4ms) CREATE TABLE "paid_up_plan_feature_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "plan_id" integer, "feature" varchar, "setting" integer) 
5925
+  (73.3ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_feature" ON "paid_up_plan_feature_settings" ("feature")
5926
+  (0.2ms)  SELECT sql
5927
+ FROM sqlite_master
5928
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5929
+ UNION ALL
5930
+ SELECT sql
5931
+ FROM sqlite_temp_master
5932
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
5933
+ 
5934
+  (74.1ms) CREATE INDEX "index_paid_up_plan_feature_settings_on_plan_id" ON "paid_up_plan_feature_settings" ("plan_id")
5935
+  (73.3ms) 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) 
5936
+  (73.3ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_stripe_id" ON "paid_up_plans" ("stripe_id")
5937
+  (0.2ms)  SELECT sql
5938
+ FROM sqlite_master
5939
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5940
+ UNION ALL
5941
+ SELECT sql
5942
+ FROM sqlite_temp_master
5943
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
5944
+ 
5945
+  (80.8ms) CREATE UNIQUE INDEX "index_paid_up_plans_on_title" ON "paid_up_plans" ("title")
5946
+  (98.7ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "resource_id" integer, "resource_type" varchar, "created_at" datetime, "updated_at" datetime) 
5947
+  (98.7ms) CREATE INDEX "index_roles_on_name_and_resource_type_and_resource_id" ON "roles" ("name", "resource_type", "resource_id")
5948
+  (0.2ms)  SELECT sql
5949
+ FROM sqlite_master
5950
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5951
+ UNION ALL
5952
+ SELECT sql
5953
+ FROM sqlite_temp_master
5954
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
5955
+ 
5956
+  (97.5ms) CREATE INDEX "index_roles_on_name" ON "roles" ("name")
5957
+  (93.5ms) 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) 
5958
+  (73.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
5959
+  (0.1ms)  SELECT sql
5960
+ FROM sqlite_master
5961
+ WHERE name='index_users_on_email' AND type='index'
5962
+ UNION ALL
5963
+ SELECT sql
5964
+ FROM sqlite_temp_master
5965
+ WHERE name='index_users_on_email' AND type='index'
5966
+ 
5967
+  (73.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5968
+  (74.0ms) CREATE TABLE "users_roles" ("user_id" integer, "role_id" integer) 
5969
+  (100.0ms) CREATE INDEX "index_users_roles_on_user_id_and_role_id" ON "users_roles" ("user_id", "role_id")
5970
+  (96.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5971
+  (115.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5972
+  (0.2ms) SELECT version FROM "schema_migrations"
5973
+  (831.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010840')
5974
+  (99.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010838')
5975
+  (99.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010839')
5976
+  (90.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175136')
5977
+  (74.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150517175135')
5978
+  (74.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150406154440')
5979
+  (74.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010837')
5980
+  (74.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150523010827')
5981
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5982
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5983
+  (0.1ms)  SELECT sql
5984
+ FROM sqlite_master
5985
+ WHERE name='index_doodads_on_user_id' AND type='index'
5986
+ UNION ALL
5987
+ SELECT sql
5988
+ FROM sqlite_temp_master
5989
+ WHERE name='index_doodads_on_user_id' AND type='index'
5990
+ 
5991
+  (0.1ms) SELECT sql
5992
+ FROM sqlite_master
5993
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
5994
+ UNION ALL
5995
+ SELECT sql
5996
+ FROM sqlite_temp_master
5997
+ WHERE name='index_paid_up_plan_feature_settings_on_plan_id' AND type='index'
5998
+
5999
+  (0.1ms)  SELECT sql
6000
+ FROM sqlite_master
6001
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6002
+ UNION ALL
6003
+ SELECT sql
6004
+ FROM sqlite_temp_master
6005
+ WHERE name='index_paid_up_plan_feature_settings_on_feature' AND type='index'
6006
+ 
6007
+  (0.1ms) SELECT sql
6008
+ FROM sqlite_master
6009
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6010
+ UNION ALL
6011
+ SELECT sql
6012
+ FROM sqlite_temp_master
6013
+ WHERE name='index_paid_up_plans_on_title' AND type='index'
6014
+
6015
+  (0.1ms)  SELECT sql
6016
+ FROM sqlite_master
6017
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6018
+ UNION ALL
6019
+ SELECT sql
6020
+ FROM sqlite_temp_master
6021
+ WHERE name='index_paid_up_plans_on_stripe_id' AND type='index'
6022
+ 
6023
+  (0.1ms) SELECT sql
6024
+ FROM sqlite_master
6025
+ WHERE name='index_roles_on_name' AND type='index'
6026
+ UNION ALL
6027
+ SELECT sql
6028
+ FROM sqlite_temp_master
6029
+ WHERE name='index_roles_on_name' AND type='index'
6030
+
6031
+  (0.1ms)  SELECT sql
6032
+ FROM sqlite_master
6033
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6034
+ UNION ALL
6035
+ SELECT sql
6036
+ FROM sqlite_temp_master
6037
+ WHERE name='index_roles_on_name_and_resource_type_and_resource_id' AND type='index'
6038
+ 
6039
+  (0.1ms) SELECT sql
6040
+ FROM sqlite_master
6041
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6042
+ UNION ALL
6043
+ SELECT sql
6044
+ FROM sqlite_temp_master
6045
+ WHERE name='index_users_on_reset_password_token' AND type='index'
6046
+
6047
+  (0.1ms)  SELECT sql
6048
+ FROM sqlite_master
6049
+ WHERE name='index_users_on_email' AND type='index'
6050
+ UNION ALL
6051
+ SELECT sql
6052
+ FROM sqlite_temp_master
6053
+ WHERE name='index_users_on_email' AND type='index'
6054
+ 
6055
+  (0.1ms) SELECT sql
6056
+ FROM sqlite_master
6057
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6058
+ UNION ALL
6059
+ SELECT sql
6060
+ FROM sqlite_temp_master
6061
+ WHERE name='index_users_roles_on_user_id_and_role_id' AND type='index'
6062
+