Skip to content

Commit

Permalink
fmd-984 - update migrations
Browse files Browse the repository at this point in the history
Signed-off-by: Helder Ribeiro <[email protected]>
  • Loading branch information
hjribeiro-moj committed Nov 18, 2024
1 parent 1e13694 commit fdae5e1
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
27 changes: 27 additions & 0 deletions feedback/migrations/0003_alter_issue_reason.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 5.1.3 on 2024-11-14 14:56

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("feedback", "0002_remove_issue_user_email_issue_created_by"),
]

operations = [
migrations.AlterField(
model_name="issue",
name="reason",
field=models.CharField(
choices=[
("Link is broken", "Broken Link"),
("Data Custodian is incorrect", "Incorrect Custodian"),
("Contact is outdated", "Outdated Contact"),
("Other", "Other"),
],
max_length=50,
verbose_name="What is wrong with this page?",
),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Generated by Django 5.1.3 on 2024-11-18 11:23

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("feedback", "0003_alter_issue_reason"),
]

operations = [
migrations.RenameField(
model_name="issue",
old_name="data_owner_email",
new_name="data_custodian_email",
),
migrations.AlterField(
model_name="issue",
name="reason",
field=models.CharField(
choices=[
("Link is broken", "Broken Link"),
("Data custodian is incorrect", "Incorrect Custodian"),
("Contact is outdated", "Outdated Contact"),
("Other", "Other"),
],
max_length=50,
verbose_name="What is wrong with this page?",
),
),
]

0 comments on commit fdae5e1

Please sign in to comment.