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