Skip to content

Commit

Permalink
fixed migration order
Browse files Browse the repository at this point in the history
  • Loading branch information
hemant10yadav committed Dec 10, 2024
1 parent cc92e79 commit d005800
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Generated by Django 4.2.5 on 2024-11-19 05:20
# Generated by Django 4.2.5 on 2024-12-10 05:31

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("opportunity", "0060_completedwork_payment_date"),
("opportunity", "0062_opportunityaccess_invited_date"),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion commcare_connect/opportunity/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def render_view_profile(self, record):
"opportunity:user_invite_delete",
args=(self.org_slug, record.opportunity.id, record.id),
)
resend_invite_url = invite_delete_url = reverse(
resend_invite_url = reverse(
"opportunity:resend_user_invite",
args=(self.org_slug, record.opportunity.id, record.id),
)
Expand Down

0 comments on commit d005800

Please sign in to comment.