Skip to content
Snippets Groups Projects
Commit 00019d48 authored by Pavel Antonov's avatar Pavel Antonov :asterisk:
Browse files

Merge branch 'refactor/PRXS-2570-ChangeSizeFieldType' into 'master'

Изменен тип поля Size для структуры File в сервисе Files

See merge request !36
parents c45f4b15 ac9d0271
No related branches found
No related tags found
1 merge request!36Изменен тип поля Size для структуры File в сервисе Files
...@@ -11,7 +11,7 @@ package files; ...@@ -11,7 +11,7 @@ package files;
message File { message File {
string id = 1; // Уникальный идентификатор файла в хранилище string id = 1; // Уникальный идентификатор файла в хранилище
string name = 2; // Имя файла string name = 2; // Имя файла
int32 size = 3; // Размер файла uint64 size = 3; // Размер файла
string mime_type = 4; // Mime-type файла string mime_type = 4; // Mime-type файла
string url = 5; // Адрес для загрузки файла string url = 5; // Адрес для загрузки файла
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment