From ddf050e9854b252a8d30151af69ff33319e3e584 Mon Sep 17 00:00:00 2001 From: Semyon Krestyaninov <krestyaninov@perx.ru> Date: Fri, 17 May 2024 09:23:12 +0300 Subject: [PATCH] change the type of the size field for the file struct --- proto/files/files.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/files/files.proto b/proto/files/files.proto index ff3cf8c..2629883 100644 --- a/proto/files/files.proto +++ b/proto/files/files.proto @@ -11,7 +11,7 @@ package files; message File { string id = 1; // Уникальный идентификатор файла в хранилище string name = 2; // Имя файла - int32 size = 3; // Размер файла + uint64 size = 3; // Размер файла string mime_type = 4; // Mime-type файла string url = 5; // Адрес для загрузки файла } -- GitLab