Browse Source

[FIX] beesdoo_shift : Error when saving a temporary exempt

Add beesdoo_shift_temporary_exemption_id_seq.
9.0-hide-countdown-date-unsuscribed
Elouan Le Bars 5 years ago
committed by Rémy Taymans
parent
commit
b1c535a607
  1. 2
      beesdoo_shift/__openerp__.py
  2. 16
      beesdoo_shift/migrations/9.0.1.2.3/post-migrate.py

2
beesdoo_shift/__openerp__.py

@ -13,7 +13,7 @@
'website': "https://github.com/beescoop/Obeesdoo",
'category': 'Cooperative management',
'version': '9.0.1.2.1',
'version': '9.0.1.2.3',
'depends': ['beesdoo_base'],

16
beesdoo_shift/migrations/9.0.1.2.3/post-migrate.py

@ -0,0 +1,16 @@
# coding: utf-8
def migrate(cr, version):
"""Fix bug occuring when trying to save a temporary exempt
(missing sequence in database). """
cr.execute(
"""
CREATE SEQUENCE IF NOT EXISTS beesdoo_website_shift_config_settings_id_seq
"""
)
cr.execute(
"""
CREATE SEQUENCE IF NOT EXISTS beesdoo_shift_temporary_exemption_id_seq
"""
)
Loading…
Cancel
Save