mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-17 01:07:12 +08:00
18 lines
505 B
Python
18 lines
505 B
Python
from django.core.management.color import Style
|
|
from django.db.backends.sqlite3.base import DatabaseWrapper
|
|
from typing import List
|
|
|
|
|
|
def emit_post_migrate_signal(verbosity: int, interactive: bool, db: str, **kwargs) -> None: ...
|
|
|
|
|
|
def emit_pre_migrate_signal(verbosity: int, interactive: bool, db: str, **kwargs) -> None: ...
|
|
|
|
|
|
def sql_flush(
|
|
style: Style,
|
|
connection: DatabaseWrapper,
|
|
only_django: bool = ...,
|
|
reset_sequences: bool = ...,
|
|
allow_cascade: bool = ...
|
|
) -> List[str]: ... |