mirror of
https://github.com/django/django.git
synced 2025-03-13 02:40:47 +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.
10 lines
140 B
Python
10 lines
140 B
Python
from django.db import models
|
|
|
|
|
|
class Marker(models.Model):
|
|
pass
|
|
|
|
|
|
class Phone(models.Model):
|
|
name = models.CharField(max_length=50)
|