Coverage for migrations / 0015_alter_formkitschema_label.py: 0%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-22 07:15 +0000

1# Generated by Django 4.2.4 on 2023-09-07 03:29 

2 

3import uuid 

4 

5from django.db import migrations, models 

6 

7 

8class Migration(migrations.Migration): 

9 dependencies = [ 

10 ("formkit_ninja", "0014_schemalabel_schemadescription"), 

11 ] 

12 

13 operations = [ 

14 migrations.AlterField( 

15 model_name="formkitschema", 

16 name="label", 

17 field=models.CharField( 

18 blank=True, 

19 default=uuid.uuid4, 

20 help_text="Used as a human-readable label", 

21 max_length=1024, 

22 null=True, 

23 unique=True, 

24 ), 

25 ), 

26 ]