Make the public library browsing page support several features from
[htsworkflow.git] / htsworkflow / frontend / samples / models.py
index a3c27abe7a793b74ae4be15b3d3d325af7767e26..95f6376a5e6ba72afa47262a67dd734ab8a74dbd 100644 (file)
@@ -118,6 +118,8 @@ class Library(models.Model):
   library_id = models.CharField(max_length=30, db_index=True)
   library_name = models.CharField(max_length=100, unique=True)
   library_species = models.ForeignKey(Species)
+  # new field 2008 Mar 5, alter table samples_library add column "hidden" NOT NULL default 0;
+  hidden = models.BooleanField()
   cell_line = models.ForeignKey(Cellline)
   condition = models.ForeignKey(Condition)
   antibody = models.ForeignKey(Antibody,blank=True,null=True)