blob: e2c0ce1678716c61c41e9269b1433ba485f53012 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pubdb', '0002_auto_20160221_0617'),
]
operations = [
migrations.RemoveField(
model_name='delta',
name='xml',
),
]
|