whisper-money/database/migrations
Víctor Falcón 8fef50f829
fix(subscriptions): assign the price arm before registration, not after (#792)
Fixes a design flaw in #700, before the experiment has any exposure.

## The problem

#700 drew the arm from `crc32('price:' . $user->id)`, which can only
happen once the user exists. But the landing quotes a price to anonymous
visitors, and `plansFor(null)` had no arm to apply — so **every visitor
saw €3.99**, and half of them were switched to €8.99 after registering.

That biases the result in both directions at once:

- **Against `high`** — it pays a penalty that isn't price sensitivity
but a price that moved after being advertised. Someone who'd have
happily paid €8.99 quoted upfront leaves because they feel baited.
- **In favour of `high`** — its funnel only contains people who already
decided to sign up under a €3.99 promise. In a world where we actually
charge €8.99, the landing says €8.99 and some of them never register at
all. The experiment is blind to that drop-off.

Neither bias is recoverable from the data, and they don't cancel: a
narrow loss for `high` would be uninterpretable.

## The fix

Draw the arm for the **anonymous visitor** on their first page view,
keep it in a year-long cookie, and freeze it onto `users.price_arm` at
registration. The landing quotes what checkout will charge, and the
whole funnel is measured under one price.

| | before | after |
|---|---|---|
| assigned at | registration | first page view |
| source | `crc32('price:' . id) % 2` | random 50/50 draw |
| stored in | nothing (recomputed) | cookie → `users.price_arm` |
| landing shows | always control | the visitor's arm |

Details worth a look in review:

- **The draw is random, not a hash.** There's no stable identifier
before the user exists. This is what forces the column — the arm has to
outlive the cookie.
- **The middleware writes the arm onto the current request**, not just
the response cookie. The cookie only reaches the browser *after* this
response, and the first view is the landing — the one page that most
needs the right price.
- **Checkout reads `users.price_arm` only, never the cookie.** Editing
your cookie after signing up doesn't get you the cheap price. There's a
test that asserts exactly this, with the cookie set to `control` and the
stored arm `high`.
- **No arm = control.** Users from before the experiment, cookies
blocked, arriving at a deep link. `sanitize()` narrows both the cookie
and the column, since a user controls the former.
- **`force_variant` now also stops the draw** — a winner being rolled
out means the split is over.
- **`price_arm` is in `$hidden`.** The frontend has no use for it, and
it needn't be visible in the Inertia payload.

## Exposure

**None.** The experiment started at 14:00 UTC and had **0 signups past
the cutoff** when this was written, so no arm needs reconciling and no
user changes price. This is the last moment this change is free.

## Reading results

The CRC32 expression from #700 is obsolete:

```sql
SELECT COALESCE(price_arm, 'legacy') AS arm, COUNT(*)
FROM users WHERE created_at >= '<started_at>' GROUP BY arm;
```

## Still open

The landing now shows €8.99 to half of anonymous visitors, which means
the experiment can finally affect signup volume itself. That's the point
— but it also means a drop in registrations is a *result*, not a bug,
and shouldn't be rolled back on reflex.

## Tests

19 tests in `PriceExperimentTest`, rewritten around the new mechanism:
the draw, the gate, the forced winner, the cookie→prop path on the first
visit, freezing at registration, and checkout ignoring the cookie.
`Auth`, `SubscriptionTest`, `InertiaSharedDataTest`, `CashflowPageTest`
and `SyncStripePricesCommandTest` all green locally (122 tests). PHPStan
and `crap` clean.
2026-08-13 08:14:37 +00:00
..
0001_01_01_000000_create_users_table.php
0001_01_01_000001_create_cache_table.php
0001_01_01_000002_create_jobs_table.php
2025_08_26_100418_add_two_factor_columns_to_users_table.php
2025_11_07_135255_add_encryption_salt_to_users_table.php
2025_11_07_135256_create_encrypted_messages_table.php
2025_11_07_150038_create_banks_table.php
2025_11_07_150122_create_accounts_table.php
2025_11_07_150613_create_categories_table.php
2025_11_07_150659_create_transactions_table.php
2025_11_07_184056_modify_banks_table_add_user_id_and_simplify_name.php
2025_11_07_185018_change_banks_logo_to_text.php
2025_11_08_140230_change_transactions_id_to_uuid.php
2025_11_08_141344_make_category_id_nullable_in_transactions_table.php
2025_11_08_144530_add_soft_deletes_to_transactions_table.php
2025_11_10_110100_create_automation_rules_table.php
2025_11_15_172640_create_account_balances_table.php
2025_11_15_175636_change_transactions_amount_to_bigint.php
2025_11_15_195739_convert_all_ids_to_uuid.php
2025_11_18_184409_create_user_leads_table.php
2025_11_28_104227_add_source_to_transactions_table.php
2025_11_29_170353_add_type_to_categories_table.php
2025_11_29_170955_fix_account_balances_unique_constraint.php
2025_12_01_101443_add_unique_constraint_to_categories_table.php
2025_12_06_112515_create_customer_columns.php
2025_12_06_112516_create_subscriptions_table.php
2025_12_06_112517_create_subscription_items_table.php
2025_12_06_112518_add_meter_id_to_subscription_items_table.php
2025_12_06_112519_add_meter_event_name_to_subscription_items_table.php
2025_12_10_142006_add_onboarded_at_to_users_table.php
2025_12_12_092647_create_labels_table.php
2025_12_12_092650_create_label_transaction_table.php
2025_12_12_092651_create_automation_rule_labels_table.php
2025_12_12_141955_update_labels_unique_constraint_include_deleted_at.php
2025_12_16_151952_create_user_mail_logs_table.php
2025_12_19_092437_create_budgets_table.php
2025_12_19_092443_create_budget_periods_table.php
2025_12_19_092446_create_budget_transactions_table.php
2025_12_20_154221_create_features_table.php
2025_12_29_063338_add_currency_code_to_users_table.php
2026_01_08_192757_add_email_identifier_to_user_mail_logs.php
2026_01_08_204223_update_user_mail_logs_unique_constraint.php
2026_01_21_151353_add_indexes_for_budget_transaction_assignment.php
2026_01_22_071325_add_processing_historical_to_budget_periods.php
2026_01_22_143232_add_locale_to_users_table.php
2026_02_08_103953_create_user_settings_table.php
2026_02_09_110624_add_encrypted_to_accounts_table.php
2026_02_09_131403_make_description_iv_nullable_on_transactions.php
2026_02_09_144915_create_banking_connections_table.php
2026_02_09_144959_add_banking_connection_fields_to_accounts_table.php
2026_02_09_144959_add_external_transaction_id_to_transactions_table.php
2026_02_10_085759_add_aspsp_logo_to_banking_connections_table.php
2026_02_10_095639_add_raw_data_to_transactions_table.php
2026_02_11_113115_add_pending_accounts_data_to_banking_connections_table.php
2026_02_11_113119_add_linked_at_to_accounts_table.php
2026_02_13_083716_add_original_description_to_transactions_table.php
2026_02_18_084241_add_api_token_to_banking_connections_table.php
2026_02_18_110556_add_api_secret_to_banking_connections_table.php
2026_02_20_074846_create_exchange_rates_table.php
2026_02_22_180317_add_invested_amount_to_account_balances_table.php
2026_02_24_193117_fix_budget_transaction_refund_amounts.php
2026_03_03_114620_add_paywall_seen_at_to_users_table.php
2026_03_04_085843_add_waitlist_columns_to_user_leads_table.php
2026_03_04_094926_add_locale_to_user_leads_table.php
2026_03_12_095411_add_iban_to_accounts_table.php
2026_03_18_112307_add_cashflow_direction_to_categories_table.php
2026_03_19_151039_add_include_loans_in_net_worth_chart_to_user_settings_table.php
2026_03_20_110659_create_real_estate_details_table.php
2026_03_20_132058_make_bank_id_nullable_on_accounts_table.php
2026_03_20_154755_add_include_real_estate_in_net_worth_chart_to_user_settings_table.php
2026_03_25_125717_add_revaluation_percentage_to_real_estate_details_table.php
2026_03_25_132244_create_loan_details_table.php
2026_03_30_123011_add_consecutive_sync_failures_to_banking_connections_table.php
2026_03_30_123011_create_banking_sync_logs_table.php
2026_04_14_120000_add_email_verification_to_user_leads_table.php
2026_04_16_063515_add_bank_transactions_email_cutoff_at_to_banking_connections_table.php
2026_04_16_092644_add_timezone_to_users_table.php
2026_04_22_084113_add_deleted_at_to_users_table.php
2026_04_25_092824_add_launch_columns_to_user_leads_table.php
2026_05_05_070442_add_rate_limited_until_to_banking_connections_table.php
2026_05_05_132023_convert_custom_budgets_to_monthly.php
2026_05_13_085027_add_dedup_fingerprint_to_transactions_table.php
2026_05_25_115100_update_default_saving_and_investment_category_types.php
2026_05_26_061232_add_reinvitation_columns_to_user_leads_table.php
2026_05_27_061513_add_counterparty_names_to_transactions_table.php
2026_05_28_073203_update_categories_unique_constraint_for_soft_deletes.php
2026_05_29_085835_update_saving_and_investment_category_cashflow_direction.php
2026_06_01_085554_create_budget_category_table.php
2026_06_01_085554_create_budget_label_table.php
2026_06_01_085554_migrate_budget_category_label_to_pivots.php
2026_06_02_090000_add_parent_id_to_categories_table.php
2026_06_02_094823_add_notify_on_bank_transactions_synced_to_user_settings_table.php
2026_06_05_120000_create_saved_filters_table.php
2026_06_05_185212_add_state_token_to_banking_connections_table.php
2026_06_08_114044_add_analysis_days_to_saved_filters_table.php
2026_06_09_124010_add_analysis_mode_to_saved_filters_table.php
2026_06_10_083644_add_last_logged_in_at_to_users_table.php
2026_06_10_084055_add_last_active_at_to_users_table.php
2026_06_12_134225_create_ai_consents_table.php
2026_06_12_134523_create_suggestion_runs_table.php
2026_06_12_134524_create_rule_suggestions_table.php
2026_06_13_000000_add_is_catch_all_to_budgets_table.php
2026_06_15_120911_add_ai_categorization_fields_to_transactions_table.php
2026_06_15_120911_add_origin_to_automation_rules_table.php
2026_06_15_120911_create_category_corrections_table.php
2026_06_17_081319_add_ai_suggested_category_to_transactions_table.php
2026_06_17_114601_create_integration_requests_table.php
2026_06_17_114602_create_integration_request_votes_table.php
2026_06_17_120850_add_status_to_integration_requests_table.php
2026_06_17_122001_seed_initial_integration_requests.php
2026_06_17_141827_add_comment_to_integration_requests_table.php
2026_06_18_092830_drop_unique_user_vote_from_integration_request_votes_table.php
2026_06_19_134854_create_stuck_cohort_snapshots_table.php
2026_06_20_105609_align_accounts_encrypted_flag_with_plaintext_names.php
2026_06_20_165235_add_position_to_accounts_table.php
2026_06_26_124609_add_ai_model_to_transactions_table.php
2026_06_27_000000_backfill_xxx_account_currencies.php
2026_06_27_114559_add_refunded_at_to_subscriptions_table.php feat(subscriptions): end the trial experiment and make the trial length per plan (#762) 2026-08-12 10:59:55 +02:00
2026_06_27_154041_add_hidden_on_dashboard_to_accounts_table.php
2026_06_29_161916_add_transactions_last_visited_at_to_users_table.php
2026_07_01_064324_add_ai_consent_prompt_dismissed_at_to_users_table.php
2026_07_02_133321_add_user_source_created_at_index_to_transactions_table.php
2026_07_06_120000_create_spaces_table.php
2026_07_06_120001_create_space_user_table.php
2026_07_06_120002_create_space_invitations_table.php
2026_07_06_120003_add_current_space_id_to_users_table.php
2026_07_06_120004_add_space_id_to_owned_tables.php
2026_07_06_120005_backfill_spaces.php
2026_07_17_125642_create_personal_access_tokens_table.php
2026_07_17_154027_create_oauth_auth_codes_table.php
2026_07_17_154028_create_oauth_access_tokens_table.php
2026_07_17_154029_create_oauth_refresh_tokens_table.php
2026_07_17_154030_create_oauth_clients_table.php
2026_07_17_154031_create_oauth_device_codes_table.php
2026_07_18_104433_create_account_import_configs_table.php
2026_07_18_111320_add_upsell_source_to_subscriptions_table.php
2026_07_24_083854_add_notification_toggles_to_budgets_table.php
2026_07_24_083855_add_budget_notification_defaults_to_user_settings_table.php
2026_07_24_083855_add_limit_notified_flags_to_budget_periods_table.php
2026_07_24_100000_enable_budget_notifications_by_default.php
2026_07_25_102200_disable_budget_new_transaction_notifications.php
2026_08_09_150908_retry_enable_banking_connections_stuck_after_auth_failures.php
2026_08_10_090000_add_ownership_to_accounts_table.php
2026_08_10_144811_create_mcp_tool_calls_table.php
2026_08_11_101501_purge_subscription_experiment_feature_assignments.php feat(subscriptions): end the trial experiment and make the trial length per plan (#762) 2026-08-12 10:59:55 +02:00
2026_08_12_070623_retry_banking_connections_stranded_before_transient_fix.php fix(banking): stop bank connections from silently dropping out of scheduled syncing (#782) 2026-08-12 11:32:36 +02:00
2026_08_12_100000_weigh_budget_transactions_by_account_ownership.php feat(budgets): count shared accounts at the owner's percentage (#786) 2026-08-12 12:47:43 +02:00
2026_08_12_142520_add_price_arm_to_users_table.php fix(subscriptions): assign the price arm before registration, not after (#792) 2026-08-13 08:14:37 +00:00