-
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.
- Loading branch information
1 parent
a7b4a4d
commit a5a26fb
Showing
20 changed files
with
62 additions
and
49 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 5.0.6 on 2024-05-27 15:50 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("accounts", "0001_initial"), | ||
("tasks", "0002_task_assigned_to"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="customuser", | ||
name="tasks", | ||
field=models.ManyToManyField( | ||
blank=True, related_name="assigned_to_users", to="tasks.task" | ||
), | ||
), | ||
] |
This file was deleted.
Oops, something went wrong.
Binary file modified
BIN
+184 Bytes
(110%)
backend/accounts/migrations/__pycache__/0001_initial.cpython-312.pyc
Binary file not shown.
Binary file added
BIN
+845 Bytes
backend/accounts/migrations/__pycache__/0002_customuser_tasks.cpython-312.pyc
Binary file not shown.
Binary file removed
BIN
-1.16 KB
backend/accounts/migrations/__pycache__/0002_initial.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
backend/accounts/migrations/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 5.0.6 on 2024-05-27 15:50 | ||
|
||
import django.db.models.deletion | ||
from django.conf import settings | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tasks", "0001_initial"), | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="task", | ||
name="assigned_to", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="assigned_tasks", | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
] |
Binary file modified
BIN
-247 Bytes
(96%)
backend/tasks/migrations/__pycache__/0001_initial.cpython-312.pyc
Binary file not shown.
Binary file added
BIN
+1.15 KB
backend/tasks/migrations/__pycache__/0002_task_assigned_to.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
backend/tasks/migrations/__pycache__/__init__.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