Added control_lane column to Flowcell.
[htsworkflow.git] / docs / upgrade_v0.2.6_to_v0.3.py
index 7a755f6f8df1836cad5488ba87192cb420fc8259..92df026703f6c90c6066329b2c57cf36e2f10498 100644 (file)
@@ -86,6 +86,9 @@ WHERE id=%(id)d;"""
             
     c.execute('DROP TABLE experiments_flowcell_temp;')
     
+    #Add control_lane column
+    c.execute('ALTER TABLE experiments_flowcell ADD COLUMN "control_lane" integer NULL;')
+    
     conn.commit()
 
 if __name__ == "__main__":