Django
The web framework for perfectionists with deadlines.
Overview
Download
Documentation
News
Community
Code
Issues
About
♥ Donate
Issues
GitHub Login
DjangoProject Login
Preferences
API
View Tickets
Reports
Timeline
Wiki
Search
Context Navigation
Back to Ticket #1796
Ticket #1796
: models.py
File models.py,
182 bytes
(added by
curtis.thompson@…
,
18 years ago
)
Simple Model
Line
1
from
django.db
import
models
2
3
# Create your models here.
4
5
class
mymodel
(
models
.
Model
):
6
name
=
models
.
CharField
(
maxlength
=
40
)
7
submodel
=
models
.
ManyToManyField
(
"self"
)
Download in other formats:
Original Format
Back to Top