mirror of
				https://github.com/django/django.git
				synced 2025-10-27 07:36:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			327 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			327 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             "Signal",
 | |
|             [
 | |
|                 ("id", models.AutoField(primary_key=True)),
 | |
|             ],
 | |
|         ),
 | |
|     ]
 |