Skip to content
Snippets Groups Projects
Commit f305b9e9 authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] gamification: on delete badge user, cascade

Otherwise, this is no more possible to delete users having badges
parent 56f678c8
Branches
Tags
No related merge requests found
......@@ -37,7 +37,7 @@ class gamification_badge_user(osv.Model):
_order = "create_date desc"
_columns = {
'user_id': fields.many2one('res.users', string="User", required=True),
'user_id': fields.many2one('res.users', string="User", required=True, ondelete="cascade"),
'sender_id': fields.many2one('res.users', string="Sender", help="The user who has send the badge"),
'badge_id': fields.many2one('gamification.badge', string='Badge', required=True),
'comment': fields.text('Comment'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment