* Modern Masters set - Fixed wrong release date.

This commit is contained in:
LevelX2 2013-09-26 07:35:29 +02:00
parent 31a2f08efe
commit 2a5c80b393
3 changed files with 6 additions and 4 deletions

View file

@ -55,7 +55,7 @@ public enum CardRepository {
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final String VERSION_ENTITY_NAME = "card";
private static final long CARD_DB_VERSION = 15;
private static final long CARD_DB_VERSION = 17;
private Random random = new Random();
private Dao<CardInfo, Object> cardDao;

View file

@ -23,7 +23,7 @@ public enum ExpansionRepository {
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final String VERSION_ENTITY_NAME = "expansion";
private static final long EXPANSION_DB_VERSION = 2;
private static final long EXPANSION_DB_VERSION = 3;
private Dao<ExpansionInfo, Object> expansionDao;