Coverage for crunch/migrations/0011_dataset_locked.py: 100.00%
4 statements
« prev ^ index » next coverage.py v6.5.0, created at 2023-10-01 13:43 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2023-10-01 13:43 +0000
1# Generated by Django 3.2.15 on 2022-09-08 04:10
3from django.db import migrations, models
6class Migration(migrations.Migration):
8 dependencies = [
9 ('crunch', '0010_auto_20220908_0001'),
10 ]
12 operations = [
13 migrations.AddField(
14 model_name='dataset',
15 name='locked',
16 field=models.BooleanField(default=False, help_text='If the dataset is locked then it will not show up in the loop of available datasets.'),
17 ),
18 ]