Skip to content

Commit d794702

Browse files
Merge pull request #950 from NHSDigital/migrations-fix
Perform migrations that were committed previously.
2 parents c02c858 + 9359a3d commit d794702

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 6.0.1 on 2026-01-28 12:10
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('clinics', '0018_userassignment_roles'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='clinic',
15+
name='type',
16+
field=models.CharField(choices=[('SCREENING', 'Screening')], max_length=50),
17+
),
18+
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0018_userassignment_roles
1+
0019_alter_clinic_type

0 commit comments

Comments
 (0)