mirror of
https://github.com/django/django.git
synced 2025-07-07 21:35:15 +00:00

Thanks to Bhuvnesh Sharma and Adam Johnson for mentoring this Google Summer of Code 2024 project. Thanks to Sarah Boyce, David Smith, Jacob Walls and Natalia Bidart for reviews.
9 lines
140 B
Python
9 lines
140 B
Python
from django.db import models
|
|
|
|
|
|
class Marker(models.Model):
|
|
pass
|
|
|
|
|
|
class Phone(models.Model):
|
|
name = models.CharField(max_length=50)
|