Skip to content

Commit

Permalink
Added migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
zserhan committed Mar 16, 2022
1 parent 80bd3d6 commit 67306f3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions content_management/migrations/0023_content_display_title.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.0.4 on 2022-03-15 22:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('content_management', '0022_auto_20210416_1708'),
]

operations = [
migrations.AddField(
model_name='content',
name='display_title',
field=models.CharField(default='', max_length=300),
),
]

0 comments on commit 67306f3

Please sign in to comment.