forked from ScoDoc/ScoDoc
acronymes de longueur illimitée...
This commit is contained in:
parent
c6fc46e0e2
commit
b0362be18b
@ -17,7 +17,7 @@ class NotesFormation(db.Model):
|
||||
formation_id = db.synonym("id")
|
||||
dept_id = db.Column(db.Integer, db.ForeignKey("departement.id"), index=True)
|
||||
|
||||
acronyme = db.Column(db.String(SHORT_STR_LEN), nullable=False)
|
||||
acronyme = db.Column(db.Text(), nullable=False)
|
||||
titre = db.Column(db.Text(), nullable=False)
|
||||
titre_officiel = db.Column(db.Text(), nullable=False)
|
||||
version = db.Column(db.Integer, default=1, server_default="1")
|
||||
@ -41,7 +41,7 @@ class NotesUE(db.Model):
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
ue_id = db.synonym("id")
|
||||
formation_id = db.Column(db.Integer, db.ForeignKey("notes_formations.id"))
|
||||
acronyme = db.Column(db.String(SHORT_STR_LEN), nullable=False)
|
||||
acronyme = db.Column(db.Text()), nullable=False)
|
||||
numero = db.Column(db.Integer) # ordre de présentation
|
||||
titre = db.Column(db.Text())
|
||||
# Type d'UE: 0 normal ("fondamentale"), 1 "sport", 2 "projet et stage (LP)",
|
||||
|
Loading…
Reference in New Issue
Block a user