mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
15 lines
397 B
Python
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: ...
|