Skip to content

Commit

Permalink
recreate migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Apr 15, 2020
1 parent 113451d commit e234f5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 2.2.4 on 2020-04-13 13:13
# Generated by Django 2.2.4 on 2020-04-15 16:03

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0098_auto_20200413_1223'),
('dashboard', '0099_auto_20200413_1426'),
]

operations = [
Expand Down
5 changes: 3 additions & 2 deletions app/grants/management/commands/ingest_givingblock_txns.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
from django.core.management.base import BaseCommand
from django.utils import timezone

from grants.models import Contribution, Subscription, Grant
from dashboard.models import Profile
from grants.models import Contribution, Grant, Subscription


class Command(BaseCommand):

Expand Down Expand Up @@ -71,4 +72,4 @@ def handle(self, *args, **kwargs):
print(f"ingested {subscription.pk} / {contrib.pk}")

except Exception as e:
print(e)
print(e)

0 comments on commit e234f5f

Please sign in to comment.