1
Fork 0

Commit migrations

This commit is contained in:
Jake Howard 2016-12-24 19:58:16 +00:00
parent 78dbc49f1a
commit fc9c1f397d
4 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-24 19:30
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('blog', '0003_auto_20161216_1822'),
]
operations = [
migrations.RemoveField(
model_name='blogpage',
name='image',
),
]

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-24 19:30
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('home', '0003_homepage_post_date'),
]
operations = [
migrations.RemoveField(
model_name='homepage',
name='image',
),
]

View file

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-24 19:30
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('pages', '0003_auto_20161216_1822'),
]
operations = [
migrations.RemoveField(
model_name='sectionindexpage',
name='image',
),
migrations.RemoveField(
model_name='simplecontentpage',
name='image',
),
]

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-24 19:30
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('projects', '0003_projectpage_post_date'),
]
operations = [
migrations.RemoveField(
model_name='projectpage',
name='image',
),
]