Skip to content

Commit

Permalink
added missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Feb 5, 2020
1 parent 3befd40 commit ee6156f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/grants/migrations/0040_auto_20200205_1543.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2020-02-05 15:43

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('grants', '0039_merge_20200204_0825'),
]

operations = [
migrations.AlterField(
model_name='grant',
name='cancel_tx_id',
field=models.CharField(blank=True, default='0x0', help_text='The transaction id for endContract.', max_length=255),
),
]
18 changes: 18 additions & 0 deletions app/townsquare/migrations/0007_auto_20200205_1543.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2020-02-05 15:43

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('townsquare', '0006_merge_20200204_0824'),
]

operations = [
migrations.AlterField(
model_name='offer',
name='amount',
field=models.CharField(blank=True, max_length=50),
),
]

0 comments on commit ee6156f

Please sign in to comment.