🛠️ Code cleanup & added many new features #1

Merged
gnmyt merged 121 commits from features/code-cleanup into master 2021-09-02 13:34:00 +00:00
Showing only changes of commit 0605b4fcd9 - Show all commits

View File

@ -88,10 +88,8 @@ public class TableGenerator {
/**
* Creates the table you wanted
*
* @return this class
*/
public TableGenerator create() {
public void create() {
StringBuilder sb = new StringBuilder();
sb.append("CREATE TABLE IF NOT EXISTS ").append(tableName).append(" ( ");
@ -105,7 +103,6 @@ public class TableGenerator {
sb.append(" ) ENGINE = InnoDB;");
connection.update(sb.toString());
return this;
}
}