aboutsummaryrefslogtreecommitdiff
path: root/rpki/rcynicdb
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-01-13 05:17:50 +0000
committerRob Austein <sra@hactrn.net>2016-01-13 05:17:50 +0000
commit5dac4badb7c67a3698628ca80320623f423e2f4d (patch)
tree17b59c897a3f55e2bb3e55e201ff94c05882a79a /rpki/rcynicdb
parente7f0dc6d3596548e8d530afd747aaca4775a15fe (diff)
Checkpoint of first cut at RRDP client code. RRDP client code not yet
tested, and final_cleanup() needs work to avoid trashing RRDP state. svn path=/branches/tk705/; revision=6222
Diffstat (limited to 'rpki/rcynicdb')
-rw-r--r--rpki/rcynicdb/models.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/rpki/rcynicdb/models.py b/rpki/rcynicdb/models.py
index 80badcff..c5eb983a 100644
--- a/rpki/rcynicdb/models.py
+++ b/rpki/rcynicdb/models.py
@@ -51,12 +51,8 @@ class Authenticated(models.Model):
# applying all necessary deltas (with consistency checks all along the
# way) to get from one to the other; we don't commit the endpoint (or
# anything created during the process) until and unless it all works.
-#
-# Not sure we want uuid field, drop if not useful.
-# Not sure we want timestamp, 1:1 relationship with retrieval may suffice.
class RRDPSnapshot(models.Model):
- timestamp = models.DateTimeField()
uuid = models.UUIDField()
serial = models.BigIntegerField()
retrieved = models.OneToOneField(Retrieval)