Sign in
chromium
/
external
/
googleappengine
/
python
/
master
/
.
/
lib
/
django-1.3
/
tests
/
regressiontests
/
initial_sql_regress
/
models.py
blob: 6c7db2f362f1d1db4ce2382b0af7af80b24ee6e6 [
file
] [
log
] [
blame
]
"""
Regression tests for initial SQL insertion.
"""
from
django
.
db
import
models
class
Simple
(
models
.
Model
):
name
=
models
.
CharField
(
max_length
=
50
)