Fixed 3 more wrong card names and changed the db version to 4 to refresh the db after all the change of card names.

This commit is contained in:
LevelX2 2013-04-08 18:10:51 +02:00
parent f644ffe041
commit db4616f821
4 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ public enum CardRepository {
instance;
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
private static final long DB_VERSION = 3;
private static final long DB_VERSION = 4;
private Random random = new Random();
private Dao<CardInfo, Object> cardDao;