mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
now multiple client instances are supported
This commit is contained in:
parent
944bebbe16
commit
b456770e9c
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ public enum CardRepository {
|
|||
|
||||
instance;
|
||||
|
||||
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2";
|
||||
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2;AUTO_SERVER=TRUE";
|
||||
private static final String VERSION_ENTITY_NAME = "card";
|
||||
private static final long CARD_DB_VERSION = 33;
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ public enum ExpansionRepository {
|
|||
|
||||
instance;
|
||||
|
||||
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2";
|
||||
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 = 3;
|
||||
|
||||
|
|
Loading…
Reference in a new issue