summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/migrations/0004_profile_can_be_null.py
blob: 5ff11037ef3577efc0d450eed6534056c2e05b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-


from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('Reporting', '0003_expand_hash_key'),
    ]

    operations = [
        migrations.AlterField(
            model_name='interaction',
            name='profile',
            field=models.ForeignKey(related_name='+', to='Reporting.Group', null=True),
            preserve_default=True,
        ),
    ]