From: Brandon King Date: Fri, 30 Nov 2007 20:56:33 +0000 (+0000) Subject: [project @ Scientific name is no longer a unique field.] X-Git-Tag: 0.1.0~46 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=6eae3f2e3c2d2ab935010126ab11209270b853f8 [project @ Scientific name is no longer a unique field.] --- diff --git a/gaworkflow/frontend/fctracker/models.py b/gaworkflow/frontend/fctracker/models.py index a995462..b214842 100644 --- a/gaworkflow/frontend/fctracker/models.py +++ b/gaworkflow/frontend/fctracker/models.py @@ -5,7 +5,7 @@ from gaworkflow.frontend import settings class Species(models.Model): - scientific_name = models.CharField(max_length=256, unique=True, db_index=True, core=True) + scientific_name = models.CharField(max_length=256, unique=False, db_index=True, core=True) common_name = models.CharField(max_length=256, blank=True) use_genome_build = models.CharField(max_length=100, blank=False, null=False)