Skip to content

Commit b396ac2

Browse files
committed
updated the files
1 parent 439d0f1 commit b396ac2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ black==24.8.0
44
certifi==2025.8.3
55
charset-normalizer==3.4.3
66
click==8.1.8
7-
django==5.2.6
8-
django-cors-headers==4.8.0
7+
django==4.2.24
8+
django-cors-headers==4.4.0
99
django-environ==0.11.2
10-
django-filter==25.1
10+
django-filter==24.3
1111
djangorestframework==3.15.2
12+
djangorestframework-simplejwt==5.3.1
13+
drf-spectacular==0.28.0
1214
idna==3.10
1315
inflection==0.5.1
14-
jsonschema==4.23.0
1516
jsonschema-specifications==2023.12.1
1617
inflection==0.5.1
17-
jsonschema==4.25.1
18-
jsonschema-specifications==2025.9.1
18+
jsonschema==4.23.0
1919
mypy-extensions==1.0.0
2020
packaging==24.2
2121
pathspec==0.12.1
@@ -29,7 +29,7 @@ requests==2.32.4
2929
sqlparse==0.5.3
3030
tomli==2.2.1
3131
typing-extensions==4.13.2
32-
uritemplate==4.2.0
32+
uritemplate==4.1.1
3333
urllib3==2.2.3
3434
django-environ==0.11.2
3535
django-cors-headers

user/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class User(AbstractUser):
3838
role = models.CharField(max_length=10, choices=ROLE)
3939
latitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True)
4040
longitude = models.DecimalField(max_digits=9, decimal_places=6, null=True, blank=True)
41-
till_number = models.CharField(max_length=4, blank=True, null=True)
41+
till_number = models.CharField(max_length=6, blank=True, null=True)
4242
address = models.CharField(max_length=100, blank=True, null=True)
4343
USERNAME_FIELD = 'email'
4444
REQUIRED_FIELDS = []

0 commit comments

Comments
 (0)