add field index

This commit is contained in:
chrislu
2024-04-27 23:30:06 -07:00
parent 72b50980f4
commit 111a4e1126
2 changed files with 83 additions and 82 deletions

View File

@@ -14,8 +14,8 @@ message RecordType {
message Field {
string name = 1;
Type type = 2;
int32 index = 3;
int32 field_index = 2;
Type type = 3;
bool is_repeated = 4;
bool is_required = 5;
}