Home
Download
Documentation
Weblog
Community
Code
Code
Search:
Login
Register
Settings
Wiki
Timeline
Browse Source
Reports
View Tickets
New Ticket
Roadmap
Search
Ticket #1796
: models.py
File models.py, 182 bytes (added by curtis.thompson@gmail.com, 2 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