Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

bug 1462475: add db migration to cleanup after zones #4924

Merged
merged 1 commit into from
Aug 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 26 additions & 0 deletions kuma/wiki/migrations/0002_remove_document_zone.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-08-06 17:16
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('wiki', '0001_squashed_0036_update_locales'),
]

operations = [
migrations.RemoveField(
model_name='documentzone',
name='document',
),
migrations.RemoveField(
model_name='document',
name='zone_subnav_local_html',
),
migrations.DeleteModel(
name='DocumentZone',
),
]