diff options
author | Rob Austein <sra@hactrn.net> | 2016-02-21 06:40:55 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-02-21 06:40:55 +0000 |
commit | bfba2f73d1ad912c82f59c5541888d6a22c04f96 (patch) | |
tree | 9bd9ef1a545550fb8916f2913256062c715b3074 /rpki/pubdb/migrations/0002_auto_20160221_0617.py | |
parent | f0ca030449bd5878bf3a272b129e0d644480e9c5 (diff) |
We don't really need to store the full XML snapshot in SQL. We don't
really need to store the delta XML either, but that code's a bit more
complicated, so leave it alone for the moment.
svn path=/branches/tk705/; revision=6277
Diffstat (limited to 'rpki/pubdb/migrations/0002_auto_20160221_0617.py')
-rw-r--r-- | rpki/pubdb/migrations/0002_auto_20160221_0617.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/rpki/pubdb/migrations/0002_auto_20160221_0617.py b/rpki/pubdb/migrations/0002_auto_20160221_0617.py new file mode 100644 index 00000000..a83ad3d3 --- /dev/null +++ b/rpki/pubdb/migrations/0002_auto_20160221_0617.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pubdb', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='session', + name='hash', + ), + migrations.RemoveField( + model_name='session', + name='snapshot', + ), + ] |