Add basic django-meta support to entries too

This commit is contained in:
Danielle McLean 2017-10-25 14:04:22 +11:00
parent eaf84459ff
commit 0d520c0fd8
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
3 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-10-25 03:03
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('entries', '0002_syndication'),
]
operations = [
migrations.RemoveField(
model_name='entry',
name='summary',
),
]