mirror of
				https://github.com/django/django.git
				synced 2025-10-26 07:06:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             "Signal",
 | |
|             [
 | |
|                 ("id", models.AutoField(primary_key=True)),
 | |
|             ],
 | |
|         ),
 | |
|     ]
 |