From d223172c1c881d897d3f9bc82ba40fb80a5d8850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Genevi=C3=A8ve=20Bastien?= Date: Mon, 19 Apr 2021 20:47:14 -0400 Subject: [PATCH] Add customEndAtSeconds and uuid fields to Period In transition, those fields are being added to allow to customize when a period should end and the uuid field is useful to save the period in the database. --- include/capnp/line.capnp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/capnp/line.capnp b/include/capnp/line.capnp index 40ec205b..5b60e987 100644 --- a/include/capnp/line.capnp +++ b/include/capnp/line.capnp @@ -29,6 +29,8 @@ struct Period { numberOfUnits @7 :Int16; trips @8 :List(Trip); isFrozen @9 :Int8; + customEndAtSeconds @10 :Int32; + uuid @11 :Text; } struct Schedule {