Tryton 6.8: indexes + tests changed

This commit is contained in:
Frederik Jaeckel 2023-06-05 21:28:09 +02:00
parent 4ae07b962f
commit e0e1fd07a7
8 changed files with 14 additions and 32 deletions

View file

@ -22,10 +22,10 @@ class CategoryCashbookRel(ModelSQL):
__name__ = 'cashbook.bookcategory-rel'
category = fields.Many2One(
string='Category', required=True, select=True,
string='Category', required=True,
model_name='cashbook.bookcategory', ondelete='CASCADE')
cashbook = fields.Many2One(
string='Cashbook', required=True, select=True,
string='Cashbook', required=True,
model_name='cashbook.book', ondelete='CASCADE')
# end CategoryCashbookRel