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

journal name can be blank in Bibliography patent entries

Former-commit-id: 266ba132a332918bcc37d816da1c5776acff2833
parent 0600bfcd
No related branches found
No related tags found
No related merge requests found
9b8dd578a77223c74dea98cb7d82eeb5257d6b10
\ No newline at end of file
11343746b831e499e2e50ab9bd7b1ee44f728fe6
\ No newline at end of file
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2018-07-27 08:16
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ippidb', '0005_auto_20180727_0717'),
]
operations = [
migrations.AlterField(
model_name='bibliography',
name='journal_name',
field=models.CharField(blank=True, max_length=50, null=True, verbose_name='Journal name'),
),
]
......@@ -40,7 +40,7 @@ class Bibliography(AutoFillableModel):
'Bibliographic type', max_length=2, choices=SOURCES, default='PM')
id_source = models.CharField('Bibliographic ID', max_length=25)
title = models.CharField('Title', max_length=300)
journal_name = models.CharField('Journal name', max_length=50, null=True)
journal_name = models.CharField('Journal name', max_length=50, null=True, blank=True)
authors_list = models.CharField('Authors list', max_length=500)
biblio_year = models.PositiveSmallIntegerField('Year')
cytotox = models.BooleanField('Cytotoxicity data', default=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment