0005_auto_20211119_1017.py 702 Bytes
Newer Older
Kohl Krisztofer committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# Generated by Django 3.2.8 on 2021-11-19 10:17

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('vm', '0004_auto_20211102_1331'),
    ]

    operations = [
        migrations.AlterField(
            model_name='instanceactivity',
            name='succeeded',
            field=models.BooleanField(blank=True, help_text='True, if the activity has finished successfully.', null=True),
        ),
        migrations.AlterField(
            model_name='nodeactivity',
            name='succeeded',
            field=models.BooleanField(blank=True, help_text='True, if the activity has finished successfully.', null=True),
        ),
    ]