fix postgresql deployment (fix #350)

This commit is contained in:
Athou
2013-06-27 23:30:16 +02:00
parent f4e726a9de
commit 97f3efbf7c
4 changed files with 49 additions and 8 deletions

View File

@@ -33,6 +33,7 @@ public class ApplicationSettings extends AbstractModel {
private boolean feedbackButton = true;
private String logLevel = Level.INFO.toString();
private boolean imageProxyEnabled;
private int queryTimeout;
@Column(length = 255)
private String announcement;
@@ -182,4 +183,12 @@ public class ApplicationSettings extends AbstractModel {
this.imageProxyEnabled = imageProxyEnabled;
}
public int getQueryTimeout() {
return queryTimeout;
}
public void setQueryTimeout(int queryTimeout) {
this.queryTimeout = queryTimeout;
}
}