Нет описания

0005_post_feature_image.py 418B

12345678910111213141516171819
  1. # Generated by Django 3.2.5 on 2021-08-01 06:52
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('cms', '0004_post_status'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='post',
  10. name='feature_image',
  11. field=models.ImageField(blank=True, null=True, upload_to='uploads/%Y/%m/%d/'),
  12. ),
  13. ]