🛠️ 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 f29731cdd2 - Show all commits

View File

@ -28,7 +28,7 @@ public class TableFactory {
* @return this class
*/
public TableFactory register(SQLTable table) {
connection.update(table.generateSQL());
table.create();
REGISTERED_TABLES.put(table.getClass(), table);
return this;
}