Skip to content
Snippets Groups Projects
Commit cf56ca96 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

in bibliography, journal name is null for patents

parent 23401436
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ class Bibliography(models.Model): ...@@ -16,7 +16,7 @@ class Bibliography(models.Model):
source = models.CharField('Bibliographic type', max_length=2, choices=SOURCES) source = models.CharField('Bibliographic type', max_length=2, choices=SOURCES)
id_source = models.CharField('Bibliographic ID', max_length=25) id_source = models.CharField('Bibliographic ID', max_length=25)
title = models.CharField('Title', max_length=300) title = models.CharField('Title', max_length=300)
journal_name = models.CharField('Journal name', max_length=50) journal_name = models.CharField('Journal name', max_length=50, null=True)
authors_list = models.CharField('Authors list', max_length=500) authors_list = models.CharField('Authors list', max_length=500)
biblio_year = models.PositiveSmallIntegerField('Year') biblio_year = models.PositiveSmallIntegerField('Year')
cytotox = models.BooleanField('Cytotoxicity data', default=False) cytotox = models.BooleanField('Cytotoxicity data', default=False)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment