mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-20 03:32:07 +02:00
11 lines
269 B
Python
11 lines
269 B
Python
# Copyright 2020 Creu Blanca
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
def pre_init_hook(cr):
|
|
cr.execute(
|
|
"""
|
|
ALTER TABLE hr_attendance
|
|
ADD COLUMN IF NOT EXISTS time_changed_manually BOOLEAN
|
|
"""
|
|
)
|