# Generated by Django 3.2.8 on 2021-11-05 09:50

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('research', '0102_auto_20211105_1043'),
    ]

    operations = [
        migrations.AddField(
            model_name='researchequipment',
            name='techPortalTUD_url',
            field=models.URLField(blank=True, help_text='Link to technology portal of TU Dresden', null=True),
        ),
        migrations.AlterField(
            model_name='researchequipment',
            name='info_url',
            field=models.URLField(blank=True, help_text='Link to webpage of manufacturer for further details', null=True),
        ),
        migrations.AlterField(
            model_name='researchequipment',
            name='price',
            field=models.FloatField(blank=True, help_text='In Euro', null=True),
        ),
    ]
