[FIX]Add ondelete casacde to alias_model_id for mail_alias, otherwise impossible to uninstall project properly

bzr revid: dle@openerp.com-20130110170906-mw0u5d92rv4j2f88
This commit is contained in:
dle@openerp.com 2013-01-10 18:09:06 +01:00
parent 3a37f5e568
commit 34b330c5fa
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class mail_alias(osv.Model):
'alias_name': fields.char('Alias', required=True,
help="The name of the email alias, e.g. 'jobs' "
"if you want to catch emails for <jobs@example.my.openerp.com>",),
'alias_model_id': fields.many2one('ir.model', 'Aliased Model', required=True,
'alias_model_id': fields.many2one('ir.model', 'Aliased Model', required=True, ondelete="cascade",
help="The model (OpenERP Document Kind) to which this alias "
"corresponds. Any incoming email that does not reply to an "
"existing record will cause the creation of a new record "