"""Reference Agreement Type Model.""" from abacus_common_logic.connectors.database import db from abacus_common_logic.models.base import CRUDMixin class ReferenceAgreementType(db.Model, CRUDMixin): """Reference Agreement Type Model.""" __tablename__ = 'reference_agreement_type' reference_agreement_type_id = db.Column(db.Integer, primary_key=True) agreement_type = db.Column(db.String(180), nullable=False)