mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 20:54:29 +08:00
7 lines
168 B
Python
7 lines
168 B
Python
from django.db import models
|
|
|
|
class Redirect(models.Model):
|
|
site: models.ForeignKey = ...
|
|
old_path: models.CharField = ...
|
|
new_path: models.CharField = ...
|