From bfba2f73d1ad912c82f59c5541888d6a22c04f96 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 21 Feb 2016 06:40:55 +0000 Subject: 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 --- rpki/pubdb/migrations/0002_auto_20160221_0617.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 rpki/pubdb/migrations/0002_auto_20160221_0617.py (limited to 'rpki/pubdb/migrations') 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', + ), + ] -- cgit v1.2.3