Skip to content

Commit

Permalink
bug 1746940: add migration to add debug fields to FileUpload
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Sep 6, 2023
1 parent ffc6195 commit 92af4eb
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions tecken/upload/migrations/0022_auto_20230905_2108.py
@@ -0,0 +1,41 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

# Generated by Django 3.2.21 on 2023-09-05 22:45

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("upload", "0021_delete_uploadscreated"),
]

operations = [
migrations.AddField(
model_name="fileupload",
name="code_file",
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name="fileupload",
name="code_id",
field=models.CharField(blank=True, max_length=40, null=True),
),
migrations.AddField(
model_name="fileupload",
name="debug_filename",
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name="fileupload",
name="debug_id",
field=models.CharField(blank=True, max_length=40, null=True),
),
migrations.AddField(
model_name="fileupload",
name="generator",
field=models.CharField(blank=True, max_length=100, null=True),
),
]

0 comments on commit 92af4eb

Please sign in to comment.