mirror of
https://github.com/django/django.git
synced 2025-01-05 16:06:07 +00:00
1dae4ac177
* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
10 lines
157 B
Python
10 lines
157 B
Python
"""
|
|
Regression tests for initial SQL insertion.
|
|
"""
|
|
|
|
from django.db import models
|
|
|
|
|
|
class Simple(models.Model):
|
|
name = models.CharField(max_length = 50)
|