mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
12 lines
409 B
Python
12 lines
409 B
Python
from typing import Any, Optional, Tuple
|
|
|
|
from django.db.backends.base.creation import BaseDatabaseCreation
|
|
|
|
|
|
class DatabaseCreation(BaseDatabaseCreation):
|
|
connection: django.db.backends.sqlite3.base.DatabaseWrapper
|
|
@staticmethod
|
|
def is_in_memory_db(database_name: str) -> bool: ...
|
|
def get_test_db_clone_settings(self, suffix: Any): ...
|
|
def test_db_signature(self) -> Tuple[str, str]: ...
|