mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 11:45:31 +01:00
Renamed MONGO -> MONGODB in DatabaseType
This commit is contained in:
parent
2f7b8a6764
commit
49c7d6b646
@ -9,7 +9,7 @@ public interface DatabaseSetup {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the type of database being used.
|
* Gets the type of database being used.
|
||||||
* Currently supported options are FLATFILE and MYSQL.
|
* Currently supported options are FLATFILE, MYSQL and MONGODB.
|
||||||
* Default is FLATFILE.
|
* Default is FLATFILE.
|
||||||
* @return Database type
|
* @return Database type
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@ public interface DatabaseSetup {
|
|||||||
enum DatabaseType {
|
enum DatabaseType {
|
||||||
FLATFILE(new FlatFileDatabase()),
|
FLATFILE(new FlatFileDatabase()),
|
||||||
MYSQL(new MySQLDatabase()),
|
MYSQL(new MySQLDatabase()),
|
||||||
MONGO(new MongoDBDatabase());
|
MONGODB(new MongoDBDatabase());
|
||||||
|
|
||||||
DatabaseSetup database;
|
DatabaseSetup database;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user