collab: Fix subscription_usage_id column type (#29871)

This PR fixes the type of the `subscription_usage_id` column on the
`SubscriptionUsageMeter` model.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-05-04 09:05:26 -04:00 committed by GitHub
parent 2e3baef299
commit ca1dc821cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@ use crate::llm::db::ModelId;
pub struct Model {
#[sea_orm(primary_key)]
pub id: Uuid,
pub subscription_usage_id: i32,
pub subscription_usage_id: Uuid,
pub model_id: ModelId,
pub mode: CompletionMode,
pub requests: i32,