Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -46,6 +46,8 @@ class ProyectoResumenes(Base): | ... | @@ -46,6 +46,8 @@ class ProyectoResumenes(Base): |
| 46 | class ProyectoClasificadores(Base): | 46 | class ProyectoClasificadores(Base): |
| 47 | __tablename__ = "proyecto_clasificadores" | 47 | __tablename__ = "proyecto_clasificadores" |
| 48 | 48 | ||
| 49 | + id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True) | ||
| 50 | + | ||
| 49 | gestion: Mapped[int] = mapped_column(Integer) | 51 | gestion: Mapped[int] = mapped_column(Integer) |
| 50 | tipo: Mapped[str] = mapped_column(String(16)) | 52 | tipo: Mapped[str] = mapped_column(String(16)) |
| 51 | nivel: Mapped[str] = mapped_column(String(24)) | 53 | nivel: Mapped[str] = mapped_column(String(24)) | ... | ... |
-
Please register or login to post a comment