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 edf1c6f70db7c6bd59ef89841f7a268323faf0fe..95fd8c1c0acfab197c94fc2765644e2ef384be17 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
@@ -36,10 +36,15 @@ configuration["READOUT"] = {
                           "GENERAL_PROTOCOL" : {"NAME" : False }
                          };
 
-configuration["READOUT"] = {
+configuration["RESULT"] = {
                           "ANNOTATIONS" : {"QUANTITY" : False, "NAME" : False, "DETAIL" : False }
                          };
 
+configuration["SOLUTION_BUFFERS"] = {
+                          "CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
+                          "SOLUTION_BUFFERS" : {"QUANTITY" : False, "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 67576998d2ef8bff930de379ce59cdaaf713d82d..3b7103f0753955cc55612f06007c398d002e50ac 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
@@ -84,6 +84,17 @@ definitions = {
                                                     "name" : "NAME",
                                                     "detail" : "DETAIL"
                                                     }
+                                    },
+               "SOLUTIONS_BUFFERS" : 
+                                    { 
+                                     "CHEMICALS" : {
+                                                     "concentration" : "QUANTITY",
+                                                     "name" : "NAME"
+                                                     },
+                                     "SOLUTIONS_BUFFERS" : {
+                                                     "concentration" : "QUANTITY",
+                                                     "name" : "NAME"
+                                                     }
                                     }
 };