mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Prepare hotfix release
This commit is contained in:
parent
7d6a618793
commit
d9fb1d3706
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ public enum CardRepository {
|
|||
// raise this if db structure was changed
|
||||
private static final long CARD_DB_VERSION = 51;
|
||||
// raise this if new cards were added to the server
|
||||
private static final long CARD_CONTENT_VERSION = 218;
|
||||
private static final long CARD_CONTENT_VERSION = 219;
|
||||
private Dao<CardInfo, Object> cardDao;
|
||||
private Set<String> classNames;
|
||||
private RepositoryEventSource eventSource = new RepositoryEventSource();
|
||||
|
|
|
@ -30,7 +30,7 @@ public enum ExpansionRepository {
|
|||
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2;AUTO_SERVER=TRUE";
|
||||
private static final String VERSION_ENTITY_NAME = "expansion";
|
||||
private static final long EXPANSION_DB_VERSION = 5;
|
||||
private static final long EXPANSION_CONTENT_VERSION = 17;
|
||||
private static final long EXPANSION_CONTENT_VERSION = 18;
|
||||
|
||||
private Dao<ExpansionInfo, Object> expansionDao;
|
||||
private RepositoryEventSource eventSource = new RepositoryEventSource();
|
||||
|
|
Loading…
Reference in a new issue