mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 00:07:09 +08:00
10 lines
234 B
Python
10 lines
234 B
Python
from django.db.migrations.state import ProjectState
|
|
from django.db.models.fields import Field
|
|
|
|
|
|
def is_referenced_by_foreign_key(
|
|
state: ProjectState,
|
|
model_name_lower: str,
|
|
field: Field,
|
|
field_name: str
|
|
) -> bool: ... |