| 12345678910111213141516171819 |
- # Generated by Django 3.2.5 on 2021-08-01 06:52
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('cms', '0004_post_status'),
- ]
- operations = [
- migrations.AddField(
- model_name='post',
- name='feature_image',
- field=models.ImageField(blank=True, null=True, upload_to='uploads/%Y/%m/%d/'),
- ),
- ]
|