diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
index 95776f71b9349a2e010b31562356bd49137c9658..0fc50a64e4d972df1bbc0db405815393c89a59ca 100644
--- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
+++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
@@ -14,6 +14,18 @@ configuration["GENERAL_PROTOCOL"] = {
                           "GENERAL_PROTOCOL" : {"NAME" : False }
                          };
 
+configuration["MEDIA"] = {
+                          "CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
+                          "SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False },
+                          "MEDIA" : {"QUANTITY" : False, "NAME" : False }
+                         };
+
+configuration["PCR"] = {
+                          "CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
+                          "SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False },
+                          "ENZYMES" : {"NAME" : False }
+                         };
+
 #Global Variables
 annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>"
 server = CommonServiceProvider.getCommonServer()
diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
index 653ec3203fb5f35b6958509c22744374e85fd4a4..aeff2ca799744cf7b24275a618b06921ff2bdf9a 100644
--- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
+++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
@@ -26,6 +26,35 @@ definitions = {
                                      "GENERAL_PROTOCOL" : {
                                                     "name" : "NAME"
                                                     }
+                                    },
+               "MEDIA" : 
+                                    { 
+                                     "CHEMICALS" : {
+                                                    "concentration" : "QUANTITY",
+                                                    "name" : "NAME"
+                                                    },
+                                     "SOLUTIONS_BUFFERS" : {
+                                                    "concentration" : "QUANTITY",
+                                                    "name" : "NAME"
+                                                    },
+                                     "MEDIA" : {
+                                                    "concentration" : "QUANTITY",
+                                                    "name" : "NAME"
+                                                    }
+                                    },
+               "PCR" : 
+                                    { 
+                                     "CHEMICALS" : {
+                                                    "quantity" : "QUANTITY",
+                                                    "name" : "NAME"
+                                                    },
+                                     "SOLUTIONS_BUFFERS" : {
+                                                    "quantity" : "QUANTITY",
+                                                    "name" : "NAME"
+                                                    },
+                                     "ENZYMES" : {
+                                                    "name" : "NAME"
+                                                    }
                                     }
 };