protobuf cleanup legal only because no one is using this yet
This commit is contained in:
parent
56559d9ee1
commit
4a99fed196
19
table.proto
19
table.proto
|
@ -32,16 +32,15 @@ message BoolRow {
|
|||
}
|
||||
|
||||
message Table { // `autogenpb:marshal`
|
||||
string title = 1;
|
||||
Widget parent = 2;
|
||||
Widget grid = 3;
|
||||
repeated string order = 4;
|
||||
repeated StringRow StringRows = 5;
|
||||
repeated IntRow IntRows = 6;
|
||||
repeated TimeRow TimeRows = 7;
|
||||
repeated BoolRow BoolRows = 8;
|
||||
Widget window = 9; // deprecate this
|
||||
string uuid = 10;
|
||||
string uuid = 1;
|
||||
string title = 2;
|
||||
Widget parent = 3;
|
||||
Widget grid = 4;
|
||||
repeated string order = 5;
|
||||
repeated StringRow StringRows = 6;
|
||||
repeated IntRow IntRows = 7;
|
||||
repeated TimeRow TimeRows = 8;
|
||||
repeated BoolRow BoolRows = 9;
|
||||
}
|
||||
|
||||
message Tables { // `autogenpb:marshal`
|
||||
|
|
Loading…
Reference in New Issue