diff options
Diffstat (limited to 'app/posts/migrations/0030_post_template_name.py')
-rw-r--r-- | app/posts/migrations/0030_post_template_name.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0030_post_template_name.py b/app/posts/migrations/0030_post_template_name.py new file mode 100644 index 0000000..9d52571 --- /dev/null +++ b/app/posts/migrations/0030_post_template_name.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2024-03-10 09:56 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0029_remove_post_short_title_alter_post_post_type'), + ] + + operations = [ + migrations.AddField( + model_name='post', + name='template_name', + field=models.IntegerField(choices=[(0, 'Default'), (1, 'Large Top Image')], default=0), + ), + ] |