Changed datamodel, integrated poll configuration into tenant meta data table

* updated sql scripts to update new collums
* updated coressponding JPA class TenantMetaData

Signed-off-by: Nonnenmacher Fabian <fabian.nonnenmacher@bosch-si.com>
This commit is contained in:
Fabian Nonnenmacher
2016-01-07 12:46:53 +01:00
committed by Nonnenmacher Fabian
parent acc0770d36
commit 1f9c6bfd72
4 changed files with 26 additions and 3 deletions

View File

@@ -13,8 +13,6 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Defines the polling time for the controllers in HH:MM:SS notation.
*
*
*
*/
@ConfigurationProperties(prefix = "hawkbit.controller")
@@ -38,5 +36,4 @@ public class ControllerPollProperties {
public void setPollingOverdueTime(final String pollingOverdue) {
this.pollingOverdueTime = pollingOverdue;
}
}