Skip to content

Commit

Permalink
adds grant funding info; per lefteris feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Sep 14, 2020
1 parent f6283ab commit 312755d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/grants/migrations/0077_grant_funding_info.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2020-09-14 02:59

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('grants', '0076_matchpledge_data'),
]

operations = [
migrations.AddField(
model_name='grant',
name='funding_info',
field=models.CharField(default='', help_text='Is this grant VC funded?', max_length=255),
),
]

0 comments on commit 312755d

Please sign in to comment.