aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/migrations/0009_alter_resource_feature_slot.py
blob: ca082d4528f658b77beedb6cf9d088263941aa5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 5.0.4 on 2024-05-26 18:17

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('resources', '0008_alter_resource_card_description'),
    ]

    operations = [
        migrations.AlterField(
            model_name='resource',
            name='feature_slot',
            field=models.IntegerField(blank=True, choices=[(1, 1), (2, 2), (3, 3)], default=0, null=True, unique=True),
        ),
    ]