Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Gabriel Weisse
/
presupuestov1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
pr0nstar
2026-04-21 15:40:59 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d3b54dc10e60ed961b02c7d382f7638771bdff0a
d3b54dc1
1 parent
88f66b0b
XVI.III
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
models/project.py
models/project.py
View file @
d3b54dc
...
...
@@ -45,7 +45,14 @@ class ProyectoResumenes(Base):
class
ProyectoClasificadores
(
Base
):
__tablename__
=
"proyecto_clasificadores"
__table_args__
=
(
Index
(
"idx_proyecto_clasificadores_gestion"
,
"gestion"
),
Index
(
"idx_proyecto_clasificadores_nivel"
,
"nivel"
),
Index
(
"idx_proyecto_clasificadores_tipo"
,
"tipo"
),
Index
(
"idx_proyecto_clasificadores_programa_proyecto"
,
"programa_proyecto"
),
Index
(
"idx_proyecto_clasificadores_comp"
,
"tipo"
,
"programa_proyecto"
,
"gestion"
),
{
"schema"
:
"web"
},
)
id
:
Mapped
[
int
]
=
mapped_column
(
Integer
,
primary_key
=
True
,
autoincrement
=
True
)
gestion
:
Mapped
[
int
]
=
mapped_column
(
Integer
)
...
...
Please
register
or
login
to post a comment