Skip to content

Instantly share code, notes, and snippets.

@sebersole
Created October 26, 2015 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebersole/e6fd42fb2d7b79f7ecc4 to your computer and use it in GitHub Desktop.
Save sebersole/e6fd42fb2d7b79f7ecc4 to your computer and use it in GitHub Desktop.
- private int length = DEFAULT_LENGTH;
- private int precision = DEFAULT_PRECISION;
- private int scale = DEFAULT_SCALE;
- private Value value;
- private int typeIndex;
- private String name;
+ private Identifier logicalName;
+ private Identifier physicalName;
+
+ private boolean isIdentity;
+
+ private String sqlType;
+ private Integer jdbcTypeCode;
+ private final Size size = new Size();
+
private boolean nullable = true;
private boolean unique;
- private String sqlType;
- private Integer sqlTypeCode;
- private boolean quoted;
- int uniqueInteger;
private String checkConstraint;
private String comment;
private String defaultValue;
private String customWrite;
private String customRead;
+ int uniqueInteger;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment