From a14e975327f38fc598714d29066638f6793521e0 Mon Sep 17 00:00:00 2001 From: 0xPoe Date: Mon, 6 Oct 2025 22:53:55 +0200 Subject: [PATCH] fix: correct the schema of the versions table --- crates/crates_io_database/src/schema.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, } }