blob: d1a65dd85b0ff6000ba002e64a48bba830c9f88c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-02 09:30
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0011_auto_20161102_0925'),
]
operations = [
migrations.RemoveField(
model_name='homepagecurrator',
name='featured',
),
migrations.RemoveField(
model_name='homepagecurrator',
name='images',
),
migrations.RemoveField(
model_name='homepagecurrator',
name='popular',
),
migrations.DeleteModel(
name='HomepageCurrator',
),
]
|