🛠️ Code cleanup & added many new features #1
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user