Added colorRole schema to FSDB

This commit is contained in:
Salmonllama 2020-08-19 15:12:19 -04:00
parent 8731061a26
commit ff5961d79a

View File

@ -21,7 +21,7 @@ public class FSDB {
return connections.get(key); return connections.get(key);
} }
System.out.println(String.format("Specified connection %s has not been set.", key)); System.out.printf("Specified connection %s has not been set.%n", key);
return null; return null;
} }
@ -39,6 +39,7 @@ public class FSDB {
private static void prepareTables() { private static void prepareTables() {
try { try {
get().query(Outfit.schema()); get().query(Outfit.schema());
get().query(ColorRole.schema());
get().query(GalleryChannel.schema()); get().query(GalleryChannel.schema());
get().query(ServerConfig.schema()); get().query(ServerConfig.schema());
get().query(ServerBlacklist.schema()); get().query(ServerBlacklist.schema());