Initial commit: OCA Server Auth packages (29 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:06 +02:00
commit 3ed80311c4
1325 changed files with 127292 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# © 2024 Florian Kantelberg - initOS GmbH
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import logging
_logger = logging.getLogger(__name__)
def migrate(cr, version):
# Before the migration the iterations were hardcoded to 4000
_logger.info("Setting iterations for previous records")
cr.execute("UPDATE vault_share SET iterations = 4000 WHERE iterations IS NULL")