Fixed outdated db version

This commit is contained in:
Oleg Agafonov 2021-11-17 15:59:35 +04:00
parent a177027b7b
commit f911a42903

View file

@ -34,7 +34,7 @@ public enum CardRepository {
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2;AUTO_SERVER=TRUE";
private static final String VERSION_ENTITY_NAME = "card";
// raise this if db structure was changed
private static final long CARD_DB_VERSION = 53;
private static final long CARD_DB_VERSION = 54;
// raise this if new cards were added to the server
private static final long CARD_CONTENT_VERSION = 241;
private Dao<CardInfo, Object> cardDao;