collab: Drop legacy subscription usage and meter tables (#29876)

This PR adds a migration to drop the `subscription_usages` and
`subscription_usage_meters` tables from the database.

We're now using `subscription_usages_v2` and
`subscription_usage_meters_v2` everywhere.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-05-04 10:42:40 -04:00 committed by GitHub
parent 4d51602e7b
commit 427101b634
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,2 @@
drop table subscription_usage_meters;
drop table subscription_usages;