# Generated by Django 3.2.5 on 2021-08-11 10:11

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0037_auto_20210810_1338'),
    ]

    operations = [
        migrations.CreateModel(
            name='New_Doi',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('doi', models.CharField(max_length=40, verbose_name='DOI to be added')),
                ('comment', models.TextField(blank=True, max_length=5000, null=True, verbose_name='Comments')),
                ('added', models.BooleanField(default=False, help_text='DOI added to publication')),
            ],
        ),
        migrations.AddField(
            model_name='publication',
            name='approved',
            field=models.BooleanField(default=True, help_text='Publication approved? If not, not shown on webpage!'),
        ),
        migrations.AddField(
            model_name='publication',
            name='open_access',
            field=models.BooleanField(default=False, help_text='OpenAccess'),
        ),
    ]
