Skip to content
Snippets Groups Projects
Commit ac9d0271 authored by Semyon Krestyaninov's avatar Semyon Krestyaninov :dog2: Committed by Pavel Antonov
Browse files

fix(files): Изменен тип поля Size с `int32` на `uint64` для структуры File в сервисе Files

#Close #PRXS-2551
parent c45f4b15
Branches
Tags
1 merge request!36Изменен тип поля Size для структуры File в сервисе Files
......@@ -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; // Адрес для загрузки файла
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment