|
|
@@ -1,5 +1,6 @@
|
|
|
package fr.jaquin.bdlg.planner.persistence;
|
|
|
|
|
|
+import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.GeneratedValue;
|
|
|
import javax.persistence.GenerationType;
|
|
|
@@ -14,6 +15,7 @@ public class Questionnaire {
|
|
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
|
|
private Long id;
|
|
|
|
|
|
+ @Column(length = 36)
|
|
|
private String uuid;
|
|
|
@Lob
|
|
|
private String introduction;
|