WIP: Add support for Acme/LetsEncrypt with DNS Provider integration

This commit is contained in:
Curtis Castrapel
2018-04-10 14:28:53 -07:00
parent d66dd543bf
commit b2e6938815
6 changed files with 21 additions and 4 deletions

View File

@ -102,7 +102,7 @@ class Certificate(db.Model):
serial = Column(String(128))
cn = Column(String(128))
deleted = Column(Boolean, index=True)
dns_provider_id = Column(Integer(), nullable=True)
dns_provider = Column(Integer(), nullable=True)
not_before = Column(ArrowType)
not_after = Column(ArrowType)