File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
manage_breast_screening/notifications Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ # Generated by Django 5.2.6 on 2025-10-02 09:31
2+
3+ from django .db import migrations , models
4+
5+
6+ class Migration (migrations .Migration ):
7+
8+ dependencies = [
9+ ('notifications' , '0018_alter_appointment_status' ),
10+ ]
11+
12+ operations = [
13+ migrations .AlterField (
14+ model_name = 'appointment' ,
15+ name = 'number' ,
16+ field = models .CharField (max_length = 30 , null = True ),
17+ ),
18+ ]
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class Meta:
128128 booked_at = models .DateTimeField (null = True )
129129 cancelled_by = models .CharField (max_length = 50 )
130130 cancelled_at = models .DateTimeField (null = True )
131- number = models .IntegerField ( null = True , default = 1 )
131+ number = models .CharField ( max_length = 30 , null = True )
132132 starts_at = models .DateTimeField (null = False )
133133 created_at = models .DateTimeField (null = False , auto_now_add = True )
134134 updated_at = models .DateTimeField (null = True , auto_now = True )
You can’t perform that action at this time.
0 commit comments