diff options
author | Rob Austein <sra@hactrn.net> | 2016-02-21 17:47:02 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-02-21 17:47:02 +0000 |
commit | 46a436e68903b0d87ead095448a55adc4061de6f (patch) | |
tree | 01befd77e8abae920ddfebcd394aa0bfd6bb9d6d /rpki/pubdb/migrations | |
parent | bfba2f73d1ad912c82f59c5541888d6a22c04f96 (diff) |
Don't really need delta XML in SQL either, just need the hash.
svn path=/branches/tk705/; revision=6278
Diffstat (limited to 'rpki/pubdb/migrations')
-rw-r--r-- | rpki/pubdb/migrations/0003_remove_delta_xml.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/rpki/pubdb/migrations/0003_remove_delta_xml.py b/rpki/pubdb/migrations/0003_remove_delta_xml.py new file mode 100644 index 00000000..e2c0ce16 --- /dev/null +++ b/rpki/pubdb/migrations/0003_remove_delta_xml.py @@ -0,0 +1,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', + ), + ] |