Skip to content

Commit ee6156f

Browse files
committed
added missing migration
1 parent 3befd40 commit ee6156f

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.4 on 2020-02-05 15:43
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('grants', '0039_merge_20200204_0825'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='grant',
15+
name='cancel_tx_id',
16+
field=models.CharField(blank=True, default='0x0', help_text='The transaction id for endContract.', max_length=255),
17+
),
18+
]
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.4 on 2020-02-05 15:43
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('townsquare', '0006_merge_20200204_0824'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='offer',
15+
name='amount',
16+
field=models.CharField(blank=True, max_length=50),
17+
),
18+
]

0 commit comments

Comments
 (0)