pr0nstar

XV.II

......@@ -46,6 +46,8 @@ class ProyectoResumenes(Base):
class ProyectoClasificadores(Base):
__tablename__ = "proyecto_clasificadores"
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
gestion: Mapped[int] = mapped_column(Integer)
tipo: Mapped[str] = mapped_column(String(16))
nivel: Mapped[str] = mapped_column(String(24))
......