File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
django-stubs/db/migrations Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 11from collections .abc import Sequence
2+ from typing import ClassVar
23
34from django .db .backends .base .schema import BaseDatabaseSchemaEditor
45from django .db .migrations .operations .base import Operation
56from django .db .migrations .state import ProjectState
67from typing_extensions import Self
78
89class Migration :
9- operations : Sequence [Operation ]
10- dependencies : Sequence [tuple [str , str ]]
11- run_before : Sequence [tuple [str , str ]]
12- replaces : Sequence [tuple [str , str ]]
13- initial : bool | None
14- atomic : bool
10+ operations : ClassVar [ Sequence [Operation ] ]
11+ dependencies : ClassVar [ Sequence [tuple [str , str ] ]]
12+ run_before : ClassVar [ Sequence [tuple [str , str ] ]]
13+ replaces : ClassVar [ Sequence [tuple [str , str ] ]]
14+ initial : ClassVar [ bool | None ]
15+ atomic : ClassVar [ bool ]
1516 name : str
1617 app_label : str
1718 def __init__ (self , name : str , app_label : str ) -> None : ...
You can’t perform that action at this time.
0 commit comments