mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
17 lines
370 B
Python
17 lines
370 B
Python
from typing import Any, Optional
|
|
|
|
from django.db import models
|
|
|
|
class Redirect(models.Model):
|
|
id: None
|
|
site_id: int
|
|
site: Any = ...
|
|
old_path: str = ...
|
|
new_path: str = ...
|
|
class Meta:
|
|
verbose_name: Any = ...
|
|
verbose_name_plural: Any = ...
|
|
db_table: str = ...
|
|
unique_together: Any = ...
|
|
ordering: Any = ...
|