This commit is contained in:
gsinghpal
2026-04-26 15:05:17 -04:00
parent 160198edb1
commit d9f58b9851
110 changed files with 6210 additions and 1182 deletions

View File

@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# Phase 6 (Sub 11) — drop legacy MRP column from fp_racking_inspection.
import logging
_logger = logging.getLogger(__name__)
def migrate(cr, version):
if not version:
return
cr.execute("ALTER TABLE fp_racking_inspection DROP COLUMN IF EXISTS production_id")
_logger.info("Sub 11: dropped production_id from fp_racking_inspection")