From b21d3ed9c2aa105b46b3d9bf5ae9e028ac38d0e6 Mon Sep 17 00:00:00 2001 From: Dan Lipert Date: Thu, 25 Apr 2019 01:12:50 +0900 Subject: [PATCH] add missing migration --- .../migrations/0031_auto_20190424_1611.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/dashboard/migrations/0031_auto_20190424_1611.py diff --git a/app/dashboard/migrations/0031_auto_20190424_1611.py b/app/dashboard/migrations/0031_auto_20190424_1611.py new file mode 100644 index 00000000000..629fe120d4e --- /dev/null +++ b/app/dashboard/migrations/0031_auto_20190424_1611.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-04-24 16:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dashboard', '0030_profile_fee_percentage'), + ] + + operations = [ + migrations.AlterField( + model_name='activity', + name='activity_type', + field=models.CharField(blank=True, choices=[('new_bounty', 'New Bounty'), ('start_work', 'Work Started'), ('stop_work', 'Work Stopped'), ('work_submitted', 'Work Submitted'), ('work_done', 'Work Done'), ('worker_approved', 'Worker Approved'), ('worker_rejected', 'Worker Rejected'), ('worker_applied', 'Worker Applied'), ('increased_bounty', 'Increased Funding'), ('killed_bounty', 'Canceled Bounty'), ('new_tip', 'New Tip'), ('receive_tip', 'Tip Received'), ('bounty_abandonment_escalation_to_mods', 'Escalated for Abandonment of Bounty'), ('bounty_abandonment_warning', 'Warning for Abandonment of Bounty'), ('bounty_removed_slashed_by_staff', 'Dinged and Removed from Bounty by Staff'), ('bounty_removed_by_staff', 'Removed from Bounty by Staff'), ('bounty_removed_by_funder', 'Removed from Bounty by Funder'), ('new_crowdfund', 'New Crowdfund Contribution'), ('new_grant', 'New Grant'), ('update_grant', 'Updated Grant'), ('killed_grant', 'Cancelled Grant'), ('new_grant_contribution', 'Contributed to Grant'), ('new_grant_subscription', 'Subscribed to Grant'), ('killed_grant_contribution', 'Cancelled Grant Contribution'), ('new_milestone', 'New Milestone'), ('update_milestone', 'Updated Milestone'), ('new_kudos', 'New Kudos')], db_index=True, max_length=50), + ), + ]