diff options
author | Rob Austein <sra@hactrn.net> | 2016-04-23 15:03:43 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-04-23 15:03:43 +0000 |
commit | 5c624ffcb9cb6fbecf49ede4740a71f0c8135362 (patch) | |
tree | 379fafaff407b04958e73795791d830428862ab8 /rpki/irdb/migrations | |
parent | 784b20d33070a8450b23d846a0d936a356646739 (diff) |
Remove a whole lotta rootd stuff.
svn path=/branches/tk705/; revision=6377
Diffstat (limited to 'rpki/irdb/migrations')
-rw-r--r-- | rpki/irdb/migrations/0003_remove_rootd.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rpki/irdb/migrations/0003_remove_rootd.py b/rpki/irdb/migrations/0003_remove_rootd.py new file mode 100644 index 00000000..aef4c5ab --- /dev/null +++ b/rpki/irdb/migrations/0003_remove_rootd.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('irdb', '0002_root'), + ] + + operations = [ + migrations.RemoveField( + model_name='rootd', + name='issuer', + ), + migrations.RemoveField( + model_name='rootd', + name='turtle_ptr', + ), + migrations.DeleteModel( + name='Rootd', + ), + ] |