Skip to content

Commit

Permalink
adding migration for last change
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaloprelatto committed Jul 29, 2020
1 parent 96340c0 commit eb26512
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions api/migrations/0011_donetasks_message.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.0.6 on 2020-07-29 18:30

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('api', '0010_donetasks'),
]

operations = [
migrations.AddField(
model_name='donetasks',
name='message',
field=models.CharField(default='', max_length=255),
preserve_default=False,
),
]

0 comments on commit eb26512

Please sign in to comment.