-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[!] Fixed the error with double assistant -- backend
- Loading branch information
1 parent
75b65cb
commit 9a3cf69
Showing
6 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
backend/console/migrations/0008_alter_applicant_email_alter_session_applicant.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 5.1.1 on 2024-10-23 23:37 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('console', '0007_alter_identity_avatar'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='applicant', | ||
name='email', | ||
field=models.EmailField(max_length=70), | ||
), | ||
migrations.AlterField( | ||
model_name='session', | ||
name='applicant', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='+', to='console.applicant'), | ||
), | ||
] |
Binary file added
BIN
+1.1 KB
...migrations/__pycache__/0008_alter_applicant_email_alter_session_applicant.cpython-312.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters