File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/org/mintdaniel42/starediscordbot/data Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ private void prepareDatabase() {
54
54
TableUtils .createTableIfNotExists (connectionSource , GroupModel .class );
55
55
TableUtils .createTableIfNotExists (connectionSource , UserModel .class );
56
56
57
- metaDataModelDao .createOrUpdate (new MetaDataModel (MetaDataModel .Version .V2 ));
57
+ metaDataModelDao .createOrUpdate (new MetaDataModel (MetaDataModel .Version .V2_1 ));
58
58
} catch (SQLException e ) {
59
59
log .error (R .Strings .log ("could_not_prepare_database" ), e );
60
60
throw new RuntimeException (e );
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ public class MetaDataModel {
17
17
public enum Version {
18
18
UNKNOWN ("?" ),
19
19
V1 ("Apollo" ),
20
- V2 ("Ares" );
20
+ V2 ("Ares" ),
21
+ V2_1 ("Artemis" );
21
22
22
23
@ NonNull private final String title ;
23
24
}
You can’t perform that action at this time.
0 commit comments