Skip to content

Commit

Permalink
recreate migration
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Apr 22, 2020
1 parent c697d69 commit 6dc338c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 17 deletions.
17 changes: 0 additions & 17 deletions app/grants/migrations/0055_remove_grant_amount_goal.py

This file was deleted.

28 changes: 28 additions & 0 deletions app/grants/migrations/0056_auto_20200422_1510.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 2.2.4 on 2020-04-22 15:10

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('grants', '0055_auto_20200420_1949'),
]

operations = [
migrations.RemoveField(
model_name='grant',
name='amount_goal',
),
migrations.AlterField(
model_name='clrmatch',
name='payout_contribution',
field=models.ForeignKey(blank=True, help_text='Contribution for the payout', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='clr_match_payouts', to='grants.Contribution'),
),
migrations.AlterField(
model_name='clrmatch',
name='test_payout_contribution',
field=models.ForeignKey(blank=True, help_text='Contribution for the test payout', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='test_clr_match_payouts', to='grants.Contribution'),
),
]

0 comments on commit 6dc338c

Please sign in to comment.