Files
odoo-stubs/odoo-stubs/modules/migration.pyi
Trinh Anh Ngoc bdede74058 Update stubs
2022-11-19 23:05:09 +07:00

15 lines
397 B
Python

from types import ModuleType
from .graph import Graph, Node
from ..sql_db import Cursor
def load_script(path: str, module_name: str) -> ModuleType: ...
class MigrationManager:
cr: Cursor
graph: Graph
migrations: dict
def __init__(self, cr: Cursor, graph: Graph) -> None: ...
def _get_files(self) -> None: ...
def migrate_module(self, pkg: Node, stage: str) -> None: ...