Changed update to updateTo

This commit is contained in:
2021-08-19 21:02:58 +02:00
parent 6b2862a64b
commit 6b82120e17
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ public abstract class SQLTable {
* @return the update manager
*/
public UpdateManager update() {
return connection.update(tableName());
return connection.updateTo(tableName());
}
/**