Commit migrations
This commit is contained in:
parent
78dbc49f1a
commit
fc9c1f397d
4 changed files with 80 additions and 0 deletions
19
project/blog/migrations/0004_remove_blogpage_image.py
Normal file
19
project/blog/migrations/0004_remove_blogpage_image.py
Normal 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',
|
||||
),
|
||||
]
|
19
project/home/migrations/0004_remove_homepage_image.py
Normal file
19
project/home/migrations/0004_remove_homepage_image.py
Normal 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',
|
||||
),
|
||||
]
|
23
project/pages/migrations/0004_auto_20161224_1930.py
Normal file
23
project/pages/migrations/0004_auto_20161224_1930.py
Normal 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',
|
||||
),
|
||||
]
|
19
project/projects/migrations/0004_remove_projectpage_image.py
Normal file
19
project/projects/migrations/0004_remove_projectpage_image.py
Normal 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',
|
||||
),
|
||||
]
|
Reference in a new issue