Added default values to the table field
This commit is contained in:
parent
7daa494272
commit
5114296b74
@ -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;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user