From 312755d8c075428c8e6793934b94f3c593f2ad1a Mon Sep 17 00:00:00 2001 From: owocki Date: Sun, 13 Sep 2020 21:02:44 -0600 Subject: [PATCH] adds grant funding info; per lefteris feedback --- .../migrations/0077_grant_funding_info.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/grants/migrations/0077_grant_funding_info.py diff --git a/app/grants/migrations/0077_grant_funding_info.py b/app/grants/migrations/0077_grant_funding_info.py new file mode 100644 index 00000000000..cf90cc9df52 --- /dev/null +++ b/app/grants/migrations/0077_grant_funding_info.py @@ -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), + ), + ]