blob: a08a1d7f439ffdff692293604cd7a283cb8a34ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Generated by Django 2.1.7 on 2019-05-05 15:53
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('blog', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='entry',
options={'get_latest_by': 'pub_date', 'ordering': ('-pub_date',), 'verbose_name_plural': 'Entry'},
),
migrations.RemoveField(
model_name='entry',
name='featured_image',
),
]
|