Skip to content

Commit 2764508

Browse files
committed
v1.2
1 parent 8e67a6a commit 2764508

21 files changed

+372
-7
lines changed

OBOB

Lines changed: 46 additions & 0 deletions
Large diffs are not rendered by default.
8 Bytes
Binary file not shown.
120 Bytes
Binary file not shown.
-279 Bytes
Binary file not shown.

backend/models.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from flask_sqlalchemy import SQLAlchemy
22
from datetime import datetime
3-
from sqlalchemy import Enum
43

54
db = SQLAlchemy()
65

@@ -103,11 +102,7 @@ class Trabajo(db.Model):
103102
manzana = db.Column(db.String(50))
104103
solar = db.Column(db.String(50))
105104
padron = db.Column(db.String(50))
106-
departamento = db.Column(Enum(
107-
"Rocha", "Artigas", "Canelones", "Cerro Largo", "Colonia", "Durazno", "Flores", "Florida",
108-
"Lavalleja", "Maldonado", "Montevideo", "Paysandu", "Rio negro", "Rivera", "Salto",
109-
"San Jose", "Soriano", "Tacuarembo", "Treinta y Tres", name="departamento"
110-
))
105+
departamento = db.Column(db.String(50))
111106
localidad = db.Column(db.String(50))
112107
cliente_id = db.Column(db.Integer, db.ForeignKey('clientes.id_cliente'))
113108
telefono_cliente = db.Column(db.String(15))

frontend/node_modules/.cache/.eslintcache

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
1.91 MB
Binary file not shown.
-410 KB
Binary file not shown.
-84.7 KB
Binary file not shown.
-63.5 MB
Binary file not shown.

0 commit comments

Comments
 (0)