from hedi
This commit is contained in:
parent
56b9fbadb3
commit
c12222a047
6 changed files with 2 additions and 15 deletions
4
.idea/compiler.xml
generated
4
.idea/compiler.xml
generated
|
@ -6,12 +6,8 @@
|
|||
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||
<outputRelativeToContentRoot value="true" />
|
||||
<module name="organizee" />
|
||||
</profile>
|
||||
</annotationProcessing>
|
||||
<bytecodeTargetLevel>
|
||||
<module name="organizee" target="11" />
|
||||
</bytecodeTargetLevel>
|
||||
</component>
|
||||
<component name="JavacSettings">
|
||||
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
|
||||
|
|
4
.idea/misc.xml
generated
4
.idea/misc.xml
generated
|
@ -1,8 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<<<<<<< HEAD
|
||||
<component name="ProjectRootManager">
|
||||
=======
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="MavenProjectsManager">
|
||||
<option name="originalFiles">
|
||||
|
@ -12,7 +9,6 @@
|
|||
</option>
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="openjdk-17" project-jdk-type="JavaSDK">
|
||||
>>>>>>> 6aab769d68a38febc5aab3691296993cf7462d11
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
4
.idea/vcs.xml
generated
4
.idea/vcs.xml
generated
|
@ -1,10 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<<<<<<< HEAD
|
||||
<mapping directory="" vcs="Git" />
|
||||
=======
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
>>>>>>> 6aab769d68a38febc5aab3691296993cf7462d11
|
||||
</component>
|
||||
</project>
|
2
pom.xml
2
pom.xml
|
@ -51,4 +51,4 @@
|
|||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
</project>
|
|
@ -3,6 +3,7 @@ package fr.organizee.model;
|
|||
import javax.persistence.*;
|
||||
import java.time.LocalDate;
|
||||
|
||||
|
||||
@Entity
|
||||
public class Membre {
|
||||
@Id
|
||||
|
@ -14,7 +15,6 @@ public class Membre {
|
|||
private String email;
|
||||
private String password;
|
||||
private String isAdmin;
|
||||
private String testGit;
|
||||
@ManyToOne(fetch= FetchType.EAGER)
|
||||
@JoinColumn(name="TEAM_ID")
|
||||
private Team team;
|
||||
|
|
|
@ -20,4 +20,3 @@ spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDial
|
|||
# Permet d'exécuter le data.sql
|
||||
# ===============================
|
||||
## spring.datasource.initialization-mode=always
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue