Skip to content

Commit

Permalink
Update migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
zoek1 committed Jun 17, 2020
1 parent 60e8a50 commit a253e1c
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.2.4 on 2020-06-17 02:53
# Generated by Django 2.2.4 on 2020-06-17 15:08

import django.contrib.postgres.fields.jsonb
from django.db import migrations, models
Expand All @@ -9,15 +9,25 @@
class Migration(migrations.Migration):

dependencies = [
('dashboard', '0122_merge_20200612_2059'),
('grants', '0057_auto_20200527_1413'),
('dashboard', '0122_auto_20200615_1510'),
('grants', '0058_auto_20200615_1226'),
]

operations = [
migrations.AlterField(
model_name='contribution',
name='tx_id',
field=models.CharField(blank=True, default='0x0', help_text='The transaction ID of the Contribution.', max_length=255),
),
migrations.AlterField(
model_name='grant',
name='grant_type',
field=models.CharField(choices=[('tech', 'tech'), ('health', 'health'), ('Community', 'media'), ('Crypto for Black Lives', 'change'), ('matic', 'matic')], default='tech', help_text='Grant CLR category', max_length=15),
field=models.CharField(choices=[('tech', 'tech'), ('health', 'health'), ('Community', 'media'), ('change', 'change'), ('matic', 'matic')], default='tech', help_text='Grant CLR category', max_length=15),
),
migrations.AlterField(
model_name='matchpledge',
name='pledge_type',
field=models.CharField(choices=[('tech', 'tech'), ('media', 'media'), ('health', 'health'), ('change', 'change')], default='tech', help_text='CLR pledge type', max_length=15),
),
migrations.CreateModel(
name='CartActivity',
Expand Down

0 comments on commit a253e1c

Please sign in to comment.