Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Marta Miranda
/
boletin_api
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Enzo Yair
2023-09-12 12:48:40 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
30ee69b53fe8e82565144cbfac586dceae5f1f52
30ee69b5
1 parent
6a8bf2d1
migraciones
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
project/apps/edicto/migrations/0013_alter_edicto_estado.py
project/apps/edicto/migrations/0013_alter_edicto_estado.py
0 → 100644
View file @
30ee69b
# Generated by Django 4.1.9 on 2023-09-12 15:47
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'edicto'
,
'0012_migracion_dato_uuid'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'edicto'
,
name
=
'estado'
,
field
=
models
.
CharField
(
choices
=
[(
'iniciado'
,
'iniciado'
),
(
'pendiente_revision'
,
'pendiente_revision'
),
(
'pendiente_de_pago'
,
'pendiente_de_pago'
),
(
'pendiente_pago_revision'
,
'pendiente_pago_revision'
),
(
'publicado'
,
'publicado'
),
(
'aprobado'
,
'aprobado'
),
(
'rechazado'
,
'rechazado'
)],
default
=
'inciado'
,
max_length
=
150
),
),
]
...
...
Please
register
or
login
to post a comment