Skip to content
Snippets Groups Projects
Verified Commit 18dd866f authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Delete and re-add Category.subtittle

parent 11ad93ae
No related branches found
No related tags found
No related merge requests found
Pipeline #3269 passed
# Generated by Django 3.2.18 on 2023-04-18 21:51
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('program', '0056_auto_20230418_2229'),
]
operations = [
migrations.RemoveField(
model_name='category',
name='subtitle',
),
]
# Generated by Django 3.2.18 on 2023-04-18 20:39
# Generated by Django 3.2.18 on 2023-04-18 21:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0056_auto_20230418_2229"),
('program', '0057_remove_category_subtitle'),
]
operations = [
migrations.AlterField(
model_name="category",
name="subtitle",
field=models.CharField(blank=True, default="", max_length=32),
migrations.AddField(
model_name='category',
name='subtitle',
field=models.CharField(blank=True, default='', max_length=32),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment