Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ section-order = [
]

[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "settings.test"
DJANGO_SETTINGS_MODULE = "settings.base"
django_find_project = false
pythonpath = ["."]
addopts = "--import-mode=importlib"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.2.7 on 2026-06-10 21:35

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('quickstart', '0001_initial'),
]

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer to type hint, but fine

operations = [
migrations.AlterField(
model_name='task',
name='description',
field=models.TextField(default='No description given'),
),
migrations.AlterField(
model_name='task',
name='name',
field=models.TextField(),
),
]
14 changes: 14 additions & 0 deletions backend/quickstart/migrations/0003_merge_20260728_2227.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 6.0.6 on 2026-07-28 22:27

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('quickstart', '0002_alter_task_description_alter_task_name'),
('quickstart', '0002_pet'),
]

operations = [
]