Skip to content

Commit e234f5f

Browse files
committed
recreate migrations
1 parent 113451d commit e234f5f

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

app/dashboard/migrations/0099_delete_refundfeerequest.py renamed to app/dashboard/migrations/0100_delete_refundfeerequest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Generated by Django 2.2.4 on 2020-04-13 13:13
1+
# Generated by Django 2.2.4 on 2020-04-15 16:03
22

33
from django.db import migrations
44

55

66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('dashboard', '0098_auto_20200413_1223'),
9+
('dashboard', '0099_auto_20200413_1426'),
1010
]
1111

1212
operations = [

app/grants/management/commands/ingest_givingblock_txns.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
from django.core.management.base import BaseCommand
55
from django.utils import timezone
66

7-
from grants.models import Contribution, Subscription, Grant
87
from dashboard.models import Profile
8+
from grants.models import Contribution, Grant, Subscription
9+
910

1011
class Command(BaseCommand):
1112

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

7374
except Exception as e:
74-
print(e)
75+
print(e)

0 commit comments

Comments
 (0)