Skip to content

Commit

Permalink
Adds migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-Mc committed Jan 27, 2021
1 parent b16ae5f commit 71ea6d0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions physionet-django/user/migrations/0032_auto_20210127_1311.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 2.2.13 on 2021-01-27 18:11

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('user', '0031_credentialreview'),
]

operations = [
migrations.AddField(
model_name='credentialapplication',
name='internal_comments',
field=models.CharField(blank=True, default='', max_length=500),
),
migrations.AddField(
model_name='credentialreview',
name='internal_comments',
field=models.CharField(blank=True, default='', max_length=500, null=True),
),
]

0 comments on commit 71ea6d0

Please sign in to comment.