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

Commit

Permalink
Merge pull request #4924 from escattone/zone-db-migration-1462475
Browse files Browse the repository at this point in the history
bug 1462475: add db migration to cleanup after zones
  • Loading branch information
jwhitlock committed Aug 7, 2018
2 parents 6f682a5 + 5808bb6 commit c504d12
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions kuma/wiki/migrations/0002_remove_document_zone.py
@@ -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',
),
]

0 comments on commit c504d12

Please sign in to comment.