Skip to content

Commit

Permalink
Add migration after schema change
Browse files Browse the repository at this point in the history
Create migration with

    ./manage.py makemigrations
  • Loading branch information
donald committed Aug 13, 2020
1 parent 11f97f1 commit 5f045ce
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions mpicms/personal/migrations/0026_auto_20200813_1342.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1 on 2020-08-13 11:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('personal', '0025_auto_20190902_1149'),
]

operations = [
migrations.AlterField(
model_name='contact',
name='room',
field=models.CharField(blank=True, max_length=50, verbose_name='room'),
),
]

0 comments on commit 5f045ce

Please sign in to comment.