Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java
index 351b0a5064..751a2ca7ec 100644
--- a/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java
+++ b/plugins/org.eclipse.emf.cdo.server.db/src/org/eclipse/emf/cdo/server/internal/db/MappingStrategy.java
@@ -15,7 +15,6 @@ import org.eclipse.emf.cdo.server.db.IDBStore;
import org.eclipse.emf.cdo.server.db.IMapping;
import org.eclipse.emf.cdo.server.db.IMappingStrategy;
-import org.eclipse.net4j.db.DBType;
import org.eclipse.net4j.db.IDBTable;
import java.util.HashMap;
@@ -128,20 +127,5 @@ public abstract class MappingStrategy implements IMappingStrategy
return getType();
}
- protected void initTable(IDBTable table, boolean full)
- {
- table.addField("cdo_id", DBType.BIGINT);
- if (full)
- {
- table.addField("cdo_class", DBType.INTEGER);
- table.addField("cdo_version", DBType.INTEGER);
- table.addField("cdo_created", DBType.BIGINT);
- table.addField("cdo_revised", DBType.BIGINT);
- table.addField("cdo_resource", DBType.BIGINT);
- table.addField("cdo_container", DBType.BIGINT);
- table.addField("cdo_feature", DBType.INTEGER);
- }
- }
-
protected abstract IMapping createMapping(CDOClass cdoClass);
} \ No newline at end of file

Back to the top