Skip to content

Commit

Permalink
recreate migration + missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Feb 27, 2020
1 parent 044ca51 commit 580861b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Generated by Django 2.2.4 on 2019-12-27 11:56
# Generated by Django 2.2.4 on 2020-02-27 14:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0068_auto_20191211_1458'),
('dashboard', '0083_auto_20200215_1517'),
]

operations = [
migrations.AddField(
model_name='bounty',
name='payout_confirmed',
field=models.BooleanField(blank=True, default=False, null=True),
),
migrations.AddField(
model_name='bounty',
name='payout_tx_id',
Expand Down
18 changes: 18 additions & 0 deletions app/inbox/migrations/0003_auto_20200227_1433.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2020-02-27 14:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('inbox', '0002_auto_20190223_2158'),
]

operations = [
migrations.AlterField(
model_name='notification',
name='cta_text',
field=models.CharField(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'), ('killed_grant_contribution', 'Cancelled Grant Contribution'), ('new_milestone', 'New Milestone'), ('update_milestone', 'Updated Milestone'), ('new_kudos', 'New Kudos'), ('new_mention', 'New Mention'), ('new_post_comment', 'New comment'), ('new_like', 'New Like')], max_length=50),
),
]

0 comments on commit 580861b

Please sign in to comment.