Changed insertFrom to insertTo because it makes more sense 😅

This commit is contained in:
mathias 2021-06-19 10:22:11 +02:00
parent 81e5fdecaa
commit 4e3cd42c60

View File

@ -247,7 +247,7 @@ public class MySQLConnection {
* @param tableName The name of the table you want to insert a object
* @return InsertManager
*/
public InsertManager insertFrom(String tableName) {
public InsertManager insertTo(String tableName) {
return new InsertManager(this, tableName);
}