collab: Drop mistakenly-added columns from the usages table (#18835)

This PR drops the `cache_creation_input_tokens_this_month ` and
`cache_read_input_tokens_this_month ` columns from the `usages` table in
the LLM database.

We mistakenly added these in #18834, but these aren't necessary due to
the structure of the `usages` table. We weren't actually using these
columns anywhere.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-10-07 18:21:48 -04:00 committed by GitHub
parent d55f025906
commit 3c91184726
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,3 @@
alter table usages
drop column cache_creation_input_tokens_this_month,
drop column cache_read_input_tokens_this_month;