0008_profile_template_instance_limit.py 435 Bytes
Newer Older
1 2
# -*- coding: utf-8 -*-
# Generated by Django 1.11.25 on 2020-11-06 13:33
Kohl Krisztofer committed
3

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0007_groupprofile_disk_quota'),
    ]

    operations = [
        migrations.AddField(
            model_name='profile',
            name='template_instance_limit',
            field=models.IntegerField(default=1),
        ),
    ]