diff options
| author | Jeff Carr <[email protected]> | 2025-02-18 20:11:19 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-19 17:39:45 -0600 |
| commit | a664750d1a62ea1db43fb08afc528f4e258e8d30 (patch) | |
| tree | 0377fef5455fd58198f52958ca8bf5c3359d6957 | |
| parent | 7134618aa87966357e3267374de028de7ee19c49 (diff) | |
testing tables
| -rw-r--r-- | table.proto | 11 |
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` |
