mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			157 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 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)
 | 
						|
 |