[DEV] think about the migration
All checks were successful
WEB karideo and rabbit/archidata/pipeline/head This commit looks good

This commit is contained in:
Edouard DUPIN 2023-01-20 21:42:40 +01:00
parent d1dded0694
commit 949fc0b05c
4 changed files with 33 additions and 32 deletions

View File

@ -23,5 +23,22 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="out/maven/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="out/maven/test-classes" path="out/maven/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="out/maven/classes"/>
</classpath>

View File

@ -0,0 +1,10 @@
package org.kar.archidata;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class MigrationSystem {
public MigrationSystem(List<MigrationAction> actions, List<Class<?>> implementationModel) {
}
}

View File

@ -42,35 +42,3 @@ public class UserDB {
}
}

View File

@ -0,0 +1,6 @@
package org.kar.archidata.model;
public class Migration extends GenericTable{
public String migrationId;
}