diff --git a/model/src/main/java/lcsb/mapviewer/model/cache/BigFileEntry.java b/model/src/main/java/lcsb/mapviewer/model/cache/BigFileEntry.java
index 0e5479cd56ea9d067f16bae293e0650ab67d20c2..ee01e60a6ca462173333a95a11b278f54ffa08d0 100644
--- a/model/src/main/java/lcsb/mapviewer/model/cache/BigFileEntry.java
+++ b/model/src/main/java/lcsb/mapviewer/model/cache/BigFileEntry.java
@@ -10,7 +10,7 @@ import javax.persistence.Entity;
 import lcsb.mapviewer.common.IProgressUpdater;
 
 /**
- * Database object representing big file cached in filesystem.
+ * Database object representing big file cached in file system.
  * 
  * @author Piotr Gawron
  *
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/BottomSquareCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/BottomSquareCompartment.java
index 1cd721803472a261122515ef164f57686824425d..be0433ebb7bc991cf55b52560ef85af101f538c9 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/BottomSquareCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/BottomSquareCompartment.java
@@ -14,7 +14,7 @@ import lcsb.mapviewer.model.map.model.Model;
  * 
  */
 @Entity
-@DiscriminatorValue("Bottom square Compartment")
+@DiscriminatorValue("BOTTOM_SQUARE_COMPARTMENT")
 public class BottomSquareCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/Compartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/Compartment.java
index f5e35ab876edb81862ad3213514739bb5931071f..07b4a36208154e513fb0e543683be7d2a11099b6 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/Compartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/Compartment.java
@@ -28,7 +28,7 @@ import lcsb.mapviewer.model.map.species.Species;
  * 
  */
 @Entity
-@DiscriminatorValue("Compartment")
+@DiscriminatorValue("COMPARTMENT")
 public class Compartment extends Element {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/LeftSquareCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/LeftSquareCompartment.java
index 4c72fd99eebfe8cc1381ee03b6f14e9da8332b80..26d4e3530ffd8234e28c74fa8cbbd407dccc1b34 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/LeftSquareCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/LeftSquareCompartment.java
@@ -14,7 +14,7 @@ import lcsb.mapviewer.model.map.model.Model;
  * 
  */
 @Entity
-@DiscriminatorValue("Left square Compartment")
+@DiscriminatorValue("LEFT_SQUARE_COMPARTMENT")
 public class LeftSquareCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/OvalCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/OvalCompartment.java
index 5c259805d6321cb7596fe4d6701536fb0c8fe425..c971d7e18feb66ffbeabcc40ed6af739787d8102 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/OvalCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/OvalCompartment.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  * 
  */
 @Entity
-@DiscriminatorValue("Oval Compartment")
+@DiscriminatorValue("OVAL_COMPARTMENT")
 public class OvalCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/PathwayCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/PathwayCompartment.java
index 7d55c42d8e3ffe71d5b558eb08a0b042e18651d6..9faeecc187da386aadfe4587df7189ba150d8edd 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/PathwayCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/PathwayCompartment.java
@@ -14,7 +14,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  * 
  */
 @Entity
-@DiscriminatorValue("Pathway Compartment")
+@DiscriminatorValue("PATHWAY")
 public class PathwayCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/RightSquareCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/RightSquareCompartment.java
index 50a4b7172adbd0d753e65ecdbd0e3bc67816008f..9e0d72ac372390b0eaac0c5af1d9729ed17d8af9 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/RightSquareCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/RightSquareCompartment.java
@@ -16,7 +16,7 @@ import lcsb.mapviewer.model.map.model.Model;
  * 
  */
 @Entity
-@DiscriminatorValue("Right square Compartment")
+@DiscriminatorValue("RIGHT_SQUARE_COMPARTMENT")
 public class RightSquareCompartment extends Compartment {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/SquareCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/SquareCompartment.java
index 097944a19c420ad7bcc56a5e677afdf9b8bd81a2..c068d2d8c7ae9814befa445996cff411c233eef5 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/SquareCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/SquareCompartment.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  * 
  */
 @Entity
-@DiscriminatorValue("Square Compartment")
+@DiscriminatorValue("SQUARE_COMPARTMENT")
 public class SquareCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/compartment/TopSquareCompartment.java b/model/src/main/java/lcsb/mapviewer/model/map/compartment/TopSquareCompartment.java
index 30244e3a705691a5d958e37ce5ac235a6d8d3718..25a1054fa24ecde393bf1681b3a14553e6a83891 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/compartment/TopSquareCompartment.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/compartment/TopSquareCompartment.java
@@ -15,7 +15,7 @@ import lcsb.mapviewer.model.map.model.Model;
  */
 
 @Entity
-@DiscriminatorValue("Top square Compartment")
+@DiscriminatorValue("TOP_SQUARE_COMPARTMENT")
 public class TopSquareCompartment extends Compartment {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/model/ElementSubmodelConnection.java b/model/src/main/java/lcsb/mapviewer/model/map/model/ElementSubmodelConnection.java
index 40e6caa616f5c2da0dd8764c2f4bde5d45622e94..2b9d98a088a349995c8f53cb14e7eeabe2bcbbca 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/model/ElementSubmodelConnection.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/model/ElementSubmodelConnection.java
@@ -18,7 +18,7 @@ import lcsb.mapviewer.model.map.species.Element;
  * 
  */
 @Entity
-@DiscriminatorValue("ALIAS_SUBMODEL_LINK")
+@DiscriminatorValue("ELEMENT_SUBMODEL_LINK")
 public class ElementSubmodelConnection extends SubmodelConnection implements Serializable {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/AntisenseRna.java b/model/src/main/java/lcsb/mapviewer/model/map/species/AntisenseRna.java
index 006ad5fb82dfa7268d4d17e02d6888ce551d257b..bf985706d3cbfd168ac9ea094c32415f6738b34d 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/AntisenseRna.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/AntisenseRna.java
@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.field.ModificationResidue;
  *
  */
 @Entity
-@DiscriminatorValue("ANTISENSE_RNA_ALIAS")
+@DiscriminatorValue("ANTISENSE_RNA")
 public class AntisenseRna extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Chemical.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Chemical.java
index af54a65bd8c2e4d9db881e92ca27a41b214b3459..064397dd0e4f201a1e0b7e508a80ceaa124d8350 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Chemical.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Chemical.java
@@ -11,7 +11,7 @@ import javax.persistence.Entity;
  *
  */
 @Entity
-@DiscriminatorValue("CHEMICAL_ALIAS")
+@DiscriminatorValue("CHEMICAL")
 public abstract class Chemical extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Complex.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Complex.java
index 02fe380c97eb9a8704efd29914ba8cea898d6442..d41f4423491e8245a473bd76fe71c4afe21c00ee 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Complex.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Complex.java
@@ -24,7 +24,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  * 
  */
 @Entity
-@DiscriminatorValue("Complex")
+@DiscriminatorValue("COMPLEX")
 public class Complex extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Degraded.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Degraded.java
index 7fe315e4f6a3383c40166bad471e57d4036ca827..7280a9a6951a7f82e9754d0b98539e8ff489e00f 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Degraded.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Degraded.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("DEGRADED_ALIAS")
+@DiscriminatorValue("DEGRADED")
 public class Degraded extends Species {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Drug.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Drug.java
index c7808947789c7470b258f45e2cd013b26e3b0821..4dbf6a50e387cb19cc91921a897019ba8d196dee 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Drug.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Drug.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("DRUG_ALIAS")
+@DiscriminatorValue("DRUG")
 public class Drug extends Species {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Element.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Element.java
index 0892af1508457bca8ecf2a27a5eaacc62a232adc..81623b6a082880eea3f8a624f7f5ec4921f50348 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Element.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Element.java
@@ -60,7 +60,7 @@ import lcsb.mapviewer.model.map.model.ModelData;
 @Table(name = "element_table")
 @Inheritance(strategy = InheritanceType.SINGLE_TABLE)
 @DiscriminatorColumn(name = "element_type_db", discriminatorType = DiscriminatorType.STRING)
-@DiscriminatorValue("GENERIC_ALIAS")
+@DiscriminatorValue("GENERIC")
 public abstract class Element implements BioEntity, Serializable, SbmlArgument {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Gene.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Gene.java
index 89e64680b5cebdc9561be8e1375f29238c3fa191..183c684ef1afb87ccc483765b80053b2eb7dd247 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Gene.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Gene.java
@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.field.ModificationResidue;
  *
  */
 @Entity
-@DiscriminatorValue("GENE_ALIAS")
+@DiscriminatorValue("GENE")
 public class Gene extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/GenericProtein.java b/model/src/main/java/lcsb/mapviewer/model/map/species/GenericProtein.java
index ee2b3e1d31b2b997656368a0512a7710e69709eb..47b2e2d0d8baf41b24e499c887b29fd871043746 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/GenericProtein.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/GenericProtein.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("GENERIC_PROTEIN_ALIAS")
+@DiscriminatorValue("GENERIC_PROTEIN")
 public class GenericProtein extends Protein {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Ion.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Ion.java
index 5a5de049d546b11c98bdefaa287b297d46865f4e..570f5e349bafd323c878a441f618be50bda9db05 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Ion.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Ion.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("ION_ALIAS")
+@DiscriminatorValue("ION")
 public class Ion extends Chemical {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/IonChannelProtein.java b/model/src/main/java/lcsb/mapviewer/model/map/species/IonChannelProtein.java
index 1ae27e5584a522d5896dc38afd9b9381ffc3a32c..08c1935a143f9c6b9fcc5ca4699eeb2229808d07 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/IonChannelProtein.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/IonChannelProtein.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("ION_CHANNEL_PROTEIN_ALIAS")
+@DiscriminatorValue("ION_CHANNEL_PROTEIN")
 public class IonChannelProtein extends Protein {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Phenotype.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Phenotype.java
index ef299c5205b0c9412af9daabff01b35f176d2914..a1a215e633c37ad4563f34ff85881d3660ef9e94 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Phenotype.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Phenotype.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("PHENTOYPE_ALIAS")
+@DiscriminatorValue("PHENTOYPE")
 public class Phenotype extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Protein.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Protein.java
index c49a439a52c0f61faef14a7c4ee1cf36f9f59c32..829ca434832eff182470056c23b1f44c7e803dd6 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Protein.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Protein.java
@@ -21,7 +21,7 @@ import lcsb.mapviewer.model.map.species.field.ModificationResidue;
  *
  */
 @Entity
-@DiscriminatorValue("PROTEIN_ALIAS")
+@DiscriminatorValue("PROTEIN")
 public abstract class Protein extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/ReceptorProtein.java b/model/src/main/java/lcsb/mapviewer/model/map/species/ReceptorProtein.java
index 29e356a930115f646bad2104bdaf4e72e28c57f1..0633255ba115a3783bf52c5edc0b83ca8d2c7642 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/ReceptorProtein.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/ReceptorProtein.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("RECEPTOR_PROTEIN_ALIAS")
+@DiscriminatorValue("RECEPTOR_PROTEIN")
 public class ReceptorProtein extends Protein {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Rna.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Rna.java
index 69c46c396d598d23cf6c6e6cf5f9571693dff6ee..b9d6f9233ff13b29478c251c775de23a2c09b3c5 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Rna.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Rna.java
@@ -22,7 +22,7 @@ import lcsb.mapviewer.model.map.species.field.ModificationResidue;
  *
  */
 @Entity
-@DiscriminatorValue("RNA_ALIAS")
+@DiscriminatorValue("RNA")
 public class Rna extends Species {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/SimpleMolecule.java b/model/src/main/java/lcsb/mapviewer/model/map/species/SimpleMolecule.java
index b56ca6cd94d45df6ef1716080c6776f2e1aac8fc..973c05899cd8fdb191e1d22ce1621916060f7773 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/SimpleMolecule.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/SimpleMolecule.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("SIMPLE_MOLECULE_ALIAS")
+@DiscriminatorValue("SIMPLE_MOLECULE")
 public class SimpleMolecule extends Chemical {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Species.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Species.java
index 8990825e015380dd3428ede157d48323dfdfd4f9..7a396ac047e3fdd95710691958f46c6a45acd54f 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Species.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Species.java
@@ -27,7 +27,7 @@ import lcsb.mapviewer.model.map.species.field.UniprotRecord;
  * 
  */
 @Entity
-@DiscriminatorValue("Species")
+@DiscriminatorValue("SPECIES")
 public abstract class Species extends Element {
 
   /**
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/TruncatedProtein.java b/model/src/main/java/lcsb/mapviewer/model/map/species/TruncatedProtein.java
index b9ca0c5e22ea32ffed0aa0aa3fbb03f83e52b516..0ff57f9f42043435f29e17bf202455031b654c56 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/TruncatedProtein.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/TruncatedProtein.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("TRUNCATED_PROTEIN_ALIAS")
+@DiscriminatorValue("TRUNCATED_PROTEIN")
 public class TruncatedProtein extends Protein {
   /**
    * 
diff --git a/model/src/main/java/lcsb/mapviewer/model/map/species/Unknown.java b/model/src/main/java/lcsb/mapviewer/model/map/species/Unknown.java
index 7594ba3575f5ae03bcd8fc686ba264ba5d97bad6..bd9d0542752d253d074e25f178a6d5617892d435 100644
--- a/model/src/main/java/lcsb/mapviewer/model/map/species/Unknown.java
+++ b/model/src/main/java/lcsb/mapviewer/model/map/species/Unknown.java
@@ -12,7 +12,7 @@ import lcsb.mapviewer.common.exception.NotImplementedException;
  *
  */
 @Entity
-@DiscriminatorValue("UNKNOWN_ALIAS")
+@DiscriminatorValue("UNKNOWN")
 public class Unknown extends Species {
 
   /**
diff --git a/persist/src/main/resources/db/migration/12.2.0~alpha.0/V12.2.0.20181030.2__normalization_of_discriminator_value.sql b/persist/src/main/resources/db/migration/12.2.0~alpha.0/V12.2.0.20181030.2__normalization_of_discriminator_value.sql
new file mode 100644
index 0000000000000000000000000000000000000000..181ddb8a1d8f6fb7503976bf6d91a9fd9e6d92bb
--- /dev/null
+++ b/persist/src/main/resources/db/migration/12.2.0~alpha.0/V12.2.0.20181030.2__normalization_of_discriminator_value.sql
@@ -0,0 +1,30 @@
+update element_table set element_type_db = 'BOTTOM_SQUARE_COMPARTMENT' where element_type_db = 'Bottom square Compartment';
+update element_table set element_type_db = 'COMPARTMENT' where element_type_db = 'Compartment';
+update element_table set element_type_db = 'LEFT_SQUARE_COMPARTMENT' where element_type_db = 'Left square Compartment';
+update element_table set element_type_db = 'OVAL_COMPARTMENT' where element_type_db = 'Oval Compartment';
+update element_table set element_type_db = 'PATHWAY' where element_type_db = 'Pathway Compartment';
+update element_table set element_type_db = 'RIGHT_SQUARE_COMPARTMENT' where element_type_db = 'Right square Compartment';
+update element_table set element_type_db = 'SQUARE_COMPARTMENT' where element_type_db = 'Square Compartment';
+update element_table set element_type_db = 'TOP_SQUARE_COMPARTMENT' where element_type_db = 'Top square Compartment';
+
+update submodel_connection_table set submodel_connections_type_db = 'ELEMENT_SUBMODEL_LINK' where submodel_connections_type_db = 'ALIAS_SUBMODEL_LINK';
+
+update element_table set element_type_db = 'ANTISENSE_RNA' where element_type_db = 'ANTISENSE_RNA_ALIAS';
+update element_table set element_type_db = 'CHEMICAL' where element_type_db = 'CHEMICAL_ALIAS';
+update element_table set element_type_db = 'PHENTOYPE' where element_type_db = 'PHENTOYPE_ALIAS';
+update element_table set element_type_db = 'ION_CHANNEL_PROTEIN' where element_type_db = 'ION_CHANNEL_PROTEIN_ALIAS';
+update element_table set element_type_db = 'ION' where element_type_db = 'ION_ALIAS';
+update element_table set element_type_db = 'GENERIC_PROTEIN' where element_type_db = 'GENERIC_PROTEIN_ALIAS';
+update element_table set element_type_db = 'GENE' where element_type_db = 'GENE_ALIAS';
+update element_table set element_type_db = 'GENERIC' where element_type_db = 'GENERIC_ALIAS';
+update element_table set element_type_db = 'DRUG' where element_type_db = 'DRUG_ALIAS';
+update element_table set element_type_db = 'DEGRADED' where element_type_db = 'DEGRADED_ALIAS';
+update element_table set element_type_db = 'COMPLEX' where element_type_db = 'Complex';
+update element_table set element_type_db = 'PROTEIN' where element_type_db = 'PROTEIN_ALIAS';
+update element_table set element_type_db = 'RECEPTOR_PROTEIN' where element_type_db = 'RECEPTOR_PROTEIN_ALIAS';
+update element_table set element_type_db = 'RNA' where element_type_db = 'RNA_ALIAS';
+update element_table set element_type_db = 'SIMPLE_MOLECULE' where element_type_db = 'SIMPLE_MOLECULE_ALIAS';
+update element_table set element_type_db = 'SPECIES' where element_type_db = 'Species';
+update element_table set element_type_db = 'TRUNCATED_PROTEIN' where element_type_db = 'TRUNCATED_PROTEIN_ALIAS';
+update element_table set element_type_db = 'UNKNOWN' where element_type_db = 'UNKNOWN_ALIAS';
+