Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/crates_io_database/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1109,10 +1109,10 @@ diesel::table! {
keywords -> Array<Nullable<Text>>,
/// JSONB representation of the version number for sorting purposes.
semver_ord -> Nullable<Jsonb>,
/// JSONB data containing JWT claims from the trusted publisher (e.g., GitHub Actions context like repository, run_id, sha)
trustpub_data -> Nullable<Jsonb>,
/// Source Lines of Code statistics for this version, stored as JSON with language breakdown and totals.
linecounts -> Nullable<Jsonb>,
/// JSONB data containing JWT claims from the trusted publisher (e.g., GitHub Actions context like repository, run_id, sha)
trustpub_data -> Nullable<Jsonb>,
}
}

Expand Down