- primarykey 여러개
@Entitiy(primaryKeys = {"id", "memo"})
- ForeignKey
@Entitiy(foreignKeys = {@ForeignKey( entity = Project.class, parentColumns = "id", childColumns = "id", onDelete = ForeignKey.CASCADE)} )
- indexing
@Entity(indices = { @Index(name = "id_index", value= {"id"})} )
- 개체간 관계
- 일대일
- 일대다
view > tool windows > database inspector