All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.risedragon.mysql.data.ColumnAnnotation Maven / Gradle / Ivy

The newest version!
package com.github.risedragon.mysql.data;

import com.github.risedragon.mysql.SqlType;

public class ColumnAnnotation {

	public String name; // Using field name as default;

	public String comment;

	public SqlType type;

	public Integer length;

	public Integer decimals;

	public Boolean notNull;

	public Boolean unique;

	public Boolean autoIncrement; // require primaryKey > 0

	public Boolean key;

	public String defaultValue; // default value as string
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy