Skip to content

Commit

Permalink
fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu committed Mar 12, 2020
1 parent 1ff39b7 commit 3c14067
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 35 deletions.
18 changes: 0 additions & 18 deletions app/dashboard/migrations/0086_auto_20200301_1309.py

This file was deleted.

14 changes: 0 additions & 14 deletions app/dashboard/migrations/0088_merge_20200309_1756.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Generated by Django 2.2.4 on 2020-02-28 16:46
# Generated by Django 2.2.4 on 2020-03-12 00:08

from django.db import migrations, models
import economy.models


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0084_auto_20200227_1433'),
('dashboard', '0089_merge_20200310_1649'),
]

operations = [
Expand All @@ -21,7 +22,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='bountyfulfillment',
name='payout_amount',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True),
field=models.DecimalField(blank=True, decimal_places=4, max_digits=50, null=True),
),
migrations.AddField(
model_name='bountyfulfillment',
Expand All @@ -38,4 +39,9 @@ class Migration(migrations.Migration):
name='token_name',
field=models.CharField(blank=True, max_length=10),
),
migrations.AlterField(
model_name='profile',
name='last_calc_date',
field=models.DateTimeField(default=economy.models.get_0_time),
),
]

0 comments on commit 3c14067

Please sign in to comment.