Skip to content

Commit

Permalink
Merge branch 'release/0.1.26' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jul 10, 2023
2 parents 3731692 + c08f30d commit b97c61c
Showing 1 changed file with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Generated by Django 4.2.1 on 2023-07-05 02:16

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
(
"edc_protocol_incident",
"0017_alter_historicalprotocolincident_reasons_withdrawn_and_more",
),
]

operations = [
migrations.AlterModelOptions(
name="protocoldeviationviolation",
options={
"default_manager_name": "objects",
"default_permissions": (
"add",
"change",
"delete",
"view",
"export",
"import",
),
"get_latest_by": "modified",
"ordering": ("-modified", "-created"),
"verbose_name": "Protocol Deviation/Violation",
"verbose_name_plural": "Protocol Deviations/Violations",
},
),
migrations.AlterModelOptions(
name="protocolincident",
options={
"default_manager_name": "objects",
"default_permissions": (
"add",
"change",
"delete",
"view",
"export",
"import",
),
"get_latest_by": "modified",
"ordering": ("-modified", "-created"),
"verbose_name": "Protocol Incident",
"verbose_name_plural": "Protocol Incident",
},
),
]

0 comments on commit b97c61c

Please sign in to comment.