-
Notifications
You must be signed in to change notification settings - Fork 7
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
8b5ecc8
commit d7d0096
Showing
2 changed files
with
17 additions
and
28 deletions.
There are no files selected for viewing
28 changes: 0 additions & 28 deletions
28
shared/django_apps/reports/migrations/0035_alter_reportsession_storage_path.py
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
shared/django_apps/reports/migrations/0036_alter_reportsession_storage_path.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,17 @@ | ||
# Generated by Django 4.2.16 on 2025-01-09 18:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("reports", "0035_upload_indices_part1"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="reportsession", | ||
name="storage_path", | ||
field=models.TextField(null=True), | ||
), | ||
] |