initial commit

This commit is contained in:
Maxim Kurnikov
2018-07-29 18:12:23 +03:00
commit a9f215bf64
311 changed files with 13433 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
from django.core.management.base import CommandParser
from django.db.backends.sqlite3.base import DatabaseWrapper
from django.db.migrations.loader import MigrationLoader
from typing import List
class Command:
def _validate_app_names(self, loader: MigrationLoader, app_names: List[str]) -> None: ...
def add_arguments(self, parser: CommandParser) -> None: ...
def handle(self, *args, **options) -> None: ...
def show_list(
self,
connection: DatabaseWrapper,
app_names: List[str] = ...
) -> None: ...
def show_plan(
self,
connection: DatabaseWrapper,
app_names: List[str] = ...
) -> None: ...