mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
b31a1b9926
This is BACKWARDS INCOMPATIBLE CHANGE for anyone relying on SQL-injected initial data in a test case. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15239 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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)
|
|
|