~edwargix/git.sr.ht

8c445ecb04282194985fa537dc3c437b32a3e1a0 — Conrad Hoffmann 2 years ago ad42bf4
Supply missing ENUM type name
1 files changed, 1 insertions(+), 1 deletions(-)

M gitsrht/types/__init__.py
M gitsrht/types/__init__.py => gitsrht/types/__init__.py +1 -1
@@ 118,7 118,7 @@ class Repository(Base):
    visibility = sa.Column(postgresql.ENUM(RepoVisibility), nullable=False)
    readme = sa.Column(sa.Unicode)
    clone_status = sa.Column(postgresql.ENUM(
        'NONE', 'IN_PROGRESS', 'COMPLETE', 'ERROR'), nullable=False)
        'NONE', 'IN_PROGRESS', 'COMPLETE', 'ERROR', name='clone_status'), nullable=False)
    clone_error = sa.Column(sa.Unicode)

    @declared_attr