diff options
author | Rob Austein <sra@hactrn.net> | 2016-04-23 15:02:57 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-04-23 15:02:57 +0000 |
commit | 0a712cef8857c6cfc53c2157ffaf5553d70c6472 (patch) | |
tree | be8ecd049fec672f7e82020a281359b1f36478ad /rpki/rpkidb/migrations/0004_turtle_cleanup.py | |
parent | 772ff8e5a51b11d424b453990c6c9a0a4c03d31c (diff) |
Step one of adding internal support for RPKI roots to rpkid: split
Parent model into base Turtle model and derived Parent model.
svn path=/branches/tk705/; revision=6367
Diffstat (limited to 'rpki/rpkidb/migrations/0004_turtle_cleanup.py')
-rw-r--r-- | rpki/rpkidb/migrations/0004_turtle_cleanup.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/rpki/rpkidb/migrations/0004_turtle_cleanup.py b/rpki/rpkidb/migrations/0004_turtle_cleanup.py new file mode 100644 index 00000000..5d2d78ec --- /dev/null +++ b/rpki/rpkidb/migrations/0004_turtle_cleanup.py @@ -0,0 +1,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', + ), + ] |