diff options
author | Rob Austein <sra@hactrn.net> | 2015-11-11 17:43:45 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-11-11 17:43:45 +0000 |
commit | 9e39b0dd9cec1d164c1b8977a9edb6b8011230a7 (patch) | |
tree | 91c773eae8d073cd16aab1576c6279dec9d70386 /rpki/rpkidb/migrations | |
parent | 586d58333430510647e9584804d786a425c9f803 (diff) |
Refactor a few of the ridiculously long rpkidb model methods into
rpkid_task code. Combine and simplify CRL and manifest generation.
svn path=/branches/tk705/; revision=6164
Diffstat (limited to 'rpki/rpkidb/migrations')
-rw-r--r-- | rpki/rpkidb/migrations/0002_remove_cadetail_latest_manifest_cert.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/rpki/rpkidb/migrations/0002_remove_cadetail_latest_manifest_cert.py b/rpki/rpkidb/migrations/0002_remove_cadetail_latest_manifest_cert.py new file mode 100644 index 00000000..a96f1805 --- /dev/null +++ b/rpki/rpkidb/migrations/0002_remove_cadetail_latest_manifest_cert.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('rpkidb', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='cadetail', + name='latest_manifest_cert', + ), + ] |