rename language column because language is a reserved keyword in hsqldb

This commit is contained in:
Athou
2013-06-16 13:19:42 +02:00
parent b75a180150
commit 76f7978a06
2 changed files with 5 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ public class UserSettings extends AbstractModel {
@Column(nullable = false)
private ViewMode viewMode;
@Column(length = 4)
@Column(name = "user_lang", length = 4)
private String language;
private boolean showRead;