From 3f867687cc71e42e964051b35f856abf6b1c8f09 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Wed, 21 Jul 2021 12:50:58 +0200 Subject: [PATCH] change Message.code type to uint32 --- proto/caosdb/entity/v1alpha1/main.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/caosdb/entity/v1alpha1/main.proto b/proto/caosdb/entity/v1alpha1/main.proto index 8fb4015..1980707 100644 --- a/proto/caosdb/entity/v1alpha1/main.proto +++ b/proto/caosdb/entity/v1alpha1/main.proto @@ -29,7 +29,7 @@ package caosdb.entity.v1alpha1; // errors. message Message { // The code is a machine-readable identifier. - string code = 1; + uint32 code = 1; // A short description of the message which is indented for human readers. string description = 2; } -- GitLab