diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-25 23:41:42 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-25 23:41:42 +0000 |
commit | 924f08b8f22239f688920e554fcd37ef924e4d29 (patch) | |
tree | 4fdca5bdb53ec3167ce1a8304386622f7f348e08 /rpki/pubdb/migrations | |
parent | 2c749a18db7886b7c9931f2b98eac6f099d304d2 (diff) |
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
Diffstat (limited to 'rpki/pubdb/migrations')
-rw-r--r-- | rpki/pubdb/migrations/0003_auto_20151025_1757.py | 19 |
1 files changed, 19 insertions, 0 deletions
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(), + ), + ] |