🛠️ 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 { public class TableField {
private String name; private String name = "default";
private String type; private String type = SQLType.STRING.getValue();
private int length; private int length = 255;
private boolean allowNull; private boolean allowNull = false;
private String defaultValue; private String defaultValue = "";
private String[] extra; private String[] extra;
/** /**