blob: 5d2d78ec6c750cde0345e0ca22a21abc5cfcda09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rpkidb', '0003_turtle_data'),
]
operations = [
migrations.RemoveField(
model_name='parent',
name='old_parent_handle',
),
migrations.RemoveField(
model_name='parent',
name='old_repository',
),
migrations.RemoveField(
model_name='parent',
name='old_tenant',
),
]
|