
com.jfirer.jsql.dbstructure.Constraint Maven / Gradle / Ivy
package com.jfirer.jsql.dbstructure;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Constraint
{
String name() default "";
Type type();
enum Type
{
PRIMARY_KEY, UNIQUE_KEY
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy