Pull Request #1847
Remove legacy_plan_id column from subscriptions
Drops the legacy_plan_id column from the subscriptions table. Removes the corresponding write in SubscriptionService.
Schema change
db/V024__remove_legacy_plan_id.sqlnew file ยท +5 additions
1
+ -- Remove legacy_plan_id from subscriptions table.
2
+ -- This column was used by the old plan migration tool
3
+ -- and is no longer referenced anywhere in the codebase.
4
+
5
+ ALTER TABLE subscriptions DROP COLUMN legacy_plan_id;
Review comments ยท db/V024__remove_legacy_plan_id.sql