Skip to content

Commit

Permalink
Added migration: add defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
cpina committed Dec 1, 2020
1 parent b535226 commit e812314
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions SchemaCollaboration/core/migrations/0007_add_defaults.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.4 on 2020-12-01 15:25

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0006_suggestions_from_django_doctor'),
]

operations = [
migrations.AlterField(
model_name='datapackage',
name='name',
field=models.CharField(blank=True, default='', max_length=500),
),
]

0 comments on commit e812314

Please sign in to comment.