mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-04-05 08:44:22 +00:00
Add cascade deletion of jobs and corpora on user delete.
This commit is contained in:
parent
bccf661957
commit
388efbbd73
@ -113,8 +113,10 @@ class User(UserMixin, db.Model):
|
|||||||
role_id = db.Column(db.Integer, db.ForeignKey('roles.id'))
|
role_id = db.Column(db.Integer, db.ForeignKey('roles.id'))
|
||||||
username = db.Column(db.String(64), unique=True, index=True)
|
username = db.Column(db.String(64), unique=True, index=True)
|
||||||
# Relationships
|
# Relationships
|
||||||
corpora = db.relationship('Corpus', backref='creator', lazy='dynamic')
|
corpora = db.relationship('Corpus', backref='creator', lazy='dynamic',
|
||||||
jobs = db.relationship('Job', backref='creator', lazy='dynamic')
|
cascade='save-update, merge, delete')
|
||||||
|
jobs = db.relationship('Job', backref='creator', lazy='dynamic',
|
||||||
|
cascade='save-update, merge, delete')
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user