-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bfaeb2
commit 226fac3
Showing
2 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 2.2.4 on 2020-05-27 07:40 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dashboard', '0113_merge_20200520_1648'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='bountyevent', | ||
name='event_type', | ||
field=models.CharField(choices=[('accept_worker', 'Accept Worker'), ('cancel_bounty', 'Cancel Bounty'), ('submit_work', 'Submit Work'), ('stop_work', 'Stop Work'), ('express_interest', 'Express Interest'), ('payout_bounty', 'Payout Bounty'), ('expire_bounty', 'Expire Bounty'), ('extend_expiration', 'Extend Expiration'), ('close_bounty', 'Close Bounty'), ('worker_paid', 'Worker Paid')], max_length=50), | ||
), | ||
migrations.AlterField( | ||
model_name='bountyfulfillment', | ||
name='fulfiller_address', | ||
field=models.CharField(blank=True, help_text='address to which amount is credited', max_length=50, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='bountyfulfillment', | ||
name='funder_address', | ||
field=models.CharField(blank=True, help_text='address from which amount is deducted', max_length=50, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='bountyfulfillment', | ||
name='funder_profile', | ||
field=models.ForeignKey(blank=True, help_text="funder's profile", null=True, on_delete=django.db.models.deletion.CASCADE, to='dashboard.Profile'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters