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

View File

@ -2,11 +2,11 @@ package de.gnmyt.SQLToolkit.types;
public class TableField {
private String name;
private String type;
private int length;
private boolean allowNull;
private String defaultValue;
private String name = "default";
private String type = SQLType.STRING.getValue();
private int length = 255;
private boolean allowNull = false;
private String defaultValue = "";
private String[] extra;
/**