2016-11-21 11:28:11 -08:00
|
|
|
"""
|
|
|
|
.. module: lemur.logs.models
|
|
|
|
:platform: unix
|
|
|
|
:synopsis: This module contains all of the models related private key audit log.
|
2018-05-29 10:18:16 -07:00
|
|
|
:copyright: (c) 2018 by Netflix Inc., see AUTHORS for more
|
2016-11-21 11:28:11 -08:00
|
|
|
:license: Apache, see LICENSE for more details.
|
|
|
|
|
|
|
|
.. moduleauthor:: Kevin Glisson <kglisson@netflix.com>
|
|
|
|
"""
|
|
|
|
from sqlalchemy import Column, Integer, ForeignKey, PassiveDefault, func, Enum
|
|
|
|
|
|
|
|
from sqlalchemy_utils.types.arrow import ArrowType
|
|
|
|
|
|
|
|
from lemur.database import db
|
|
|
|
|
|
|
|
|
|
|
|
class Log(db.Model):
|
2019-05-16 07:57:02 -07:00
|
|
|
__tablename__ = "logs"
|
2016-11-21 11:28:11 -08:00
|
|
|
id = Column(Integer, primary_key=True)
|
2019-05-16 07:57:02 -07:00
|
|
|
certificate_id = Column(Integer, ForeignKey("certificates.id"))
|
|
|
|
log_type = Column(
|
|
|
|
Enum(
|
|
|
|
"key_view",
|
|
|
|
"create_cert",
|
|
|
|
"update_cert",
|
|
|
|
"revoke_cert",
|
|
|
|
"delete_cert",
|
|
|
|
name="log_type",
|
|
|
|
),
|
|
|
|
nullable=False,
|
|
|
|
)
|
2016-11-21 11:28:11 -08:00
|
|
|
logged_at = Column(ArrowType(), PassiveDefault(func.now()), nullable=False)
|
2019-05-16 07:57:02 -07:00
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), nullable=False)
|