From 924f08b8f22239f688920e554fcd37ef924e4d29 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 25 Oct 2015 23:41:42 +0000 Subject: All SKI operations on issued certificates are really g(SKI) operations, so simplify code and schema by removing gratuitous transformations to and from binary format. svn path=/branches/tk705/; revision=6150 --- rpki/pubdb/migrations/0003_auto_20151025_1757.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 rpki/pubdb/migrations/0003_auto_20151025_1757.py (limited to 'rpki/pubdb/migrations/0003_auto_20151025_1757.py') diff --git a/rpki/pubdb/migrations/0003_auto_20151025_1757.py b/rpki/pubdb/migrations/0003_auto_20151025_1757.py new file mode 100644 index 00000000..f92cc419 --- /dev/null +++ b/rpki/pubdb/migrations/0003_auto_20151025_1757.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('pubdb', '0002_auto_20151023_2151'), + ] + + operations = [ + migrations.AlterField( + model_name='publishedobject', + name='der', + field=models.BinaryField(), + ), + ] -- cgit v1.2.3