summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--table.proto11
1 files changed, 6 insertions, 5 deletions
diff --git a/table.proto b/table.proto
index 3bbb70d..1bfa857 100644
--- a/table.proto
+++ b/table.proto
@@ -31,11 +31,12 @@ message BoolRow {
}
message Table { // `autogenpb:marshal`
- repeated string order = 1;
- repeated StringRow StringRows = 2;
- repeated IntRow IntRows = 3;
- repeated TimeRow TimeRows = 4;
- repeated BoolRow BoolRows = 5;
+ string title = 1;
+ repeated string order = 2;
+ repeated StringRow StringRows = 3;
+ repeated IntRow IntRows = 4;
+ repeated TimeRow TimeRows = 5;
+ repeated BoolRow BoolRows = 6;
}
message Tables { // `autogenpb:marshal`