# Generated by Django 5.0.4 on 2024-05-26 15:42 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('resources', '0007_alter_resource_feature_slot'), ] operations = [ migrations.AlterField( model_name='resource', name='card_description', field=models.TextField(blank=True, default='', 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), ), ]