mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
SQLException fixed
ERROR 2017-01-09 15:35:35,693 java.sql.SQLException: Cannot update class mage.cards.repository.ExpansionInfo because it doesn't have an id field =>[main] ExpansionRepository.update
This commit is contained in:
parent
51e5640c8e
commit
33b9ec52b0
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ public class ExpansionInfo {
|
|||
|
||||
@DatabaseField(unique = true)
|
||||
protected String name;
|
||||
@DatabaseField(unique = true)
|
||||
@DatabaseField(id = true,unique = true)
|
||||
protected String code;
|
||||
@DatabaseField
|
||||
protected String blockName;
|
||||
|
|
Loading…
Reference in a new issue