diff options
Diffstat (limited to 'libbrep/build.xml')
-rw-r--r-- | libbrep/build.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libbrep/build.xml b/libbrep/build.xml index 0ca362a..6a2301b 100644 --- a/libbrep/build.xml +++ b/libbrep/build.xml @@ -1,4 +1,22 @@ <changelog xmlns="http://www.codesynthesis.com/xmlns/odb/changelog" database="pgsql" schema-name="build" version="1"> + <changeset version="15"> + <alter-table name="build"> + <add-column name="soft_timestamp" type="BIGINT" null="false"/> + <add-column name="hard_timestamp" type="BIGINT" null="false"/> + <add-column name="controller_checksum" type="TEXT" null="false"/> + <add-column name="machine_checksum" type="TEXT" null="false"/> + <add-column name="agent_checksum" type="TEXT" null="true"/> + <add-column name="worker_checksum" type="TEXT" null="true"/> + <add-column name="dependency_checksum" type="TEXT" null="true"/> + <drop-column name="completion_timestamp"/> + </alter-table> + <alter-table name="build_delay"> + <add-column name="report_soft_timestamp" type="BIGINT" null="false"/> + <add-column name="report_hard_timestamp" type="BIGINT" null="false"/> + <drop-column name="report_timestamp"/> + </alter-table> + </changeset> + <changeset version="14"/> <changeset version="13"> |