20 lines
523 B
Python
20 lines
523 B
Python
# Generated by Django 3.2.20 on 2023-09-22 09:31
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def set_feedback_submitted_true(apps, schema_editor):
|
|
FeedbackResponse = apps.get_model("feedback", "FeedbackResponse")
|
|
FeedbackResponse.objects.update(submitted=True)
|
|
FeedbackResponse.objects.update(notification_sent=True)
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("feedback", "0005_auto_20230922_1131"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(set_feedback_submitted_true),
|
|
]
|