diff --git a/crates/crates_io_database/src/schema.rs b/crates/crates_io_database/src/schema.rs index 743842a7321..db2a6f3ae68 100644 --- a/crates/crates_io_database/src/schema.rs +++ b/crates/crates_io_database/src/schema.rs @@ -1109,10 +1109,10 @@ diesel::table! { keywords -> Array>, /// JSONB representation of the version number for sorting purposes. semver_ord -> Nullable, - /// JSONB data containing JWT claims from the trusted publisher (e.g., GitHub Actions context like repository, run_id, sha) - trustpub_data -> Nullable, /// Source Lines of Code statistics for this version, stored as JSON with language breakdown and totals. linecounts -> Nullable, + /// JSONB data containing JWT claims from the trusted publisher (e.g., GitHub Actions context like repository, run_id, sha) + trustpub_data -> Nullable, } }