aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/resources/migrations/0006_resource_card_description_and_more.py
blob: d343e76dff549ebac6c2ab007a4d5bc94801f475 (plain) (blame)
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 5.0.4 on 2024-05-26 15:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('resources', '0005_rename_feature_slot_1_resource_feature_slot_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='resource',
            name='card_description',
            field=models.TextField(blank=True, help_text="If you enter text here, it will be used in the 'card' description box on the home page. Max 1000 characters.", max_length=1000, null=True),
        ),
        migrations.AlterField(
            model_name='resource',
            name='feature_slot',
            field=models.IntegerField(blank=True, choices=[(1, 1), (2, 2), (3, 3)], null=True, unique=True),
        ),
    ]