mirror of
				https://github.com/DerTyp7/tealcode-django-python.git
				synced 2025-10-30 20:57:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			612 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			612 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.2.9 on 2021-11-10 07:58
 | |
| 
 | |
| from django.db import migrations, models
 | |
| import django.utils.timezone
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     initial = True
 | |
| 
 | |
|     dependencies = [
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             name='Category',
 | |
|             fields=[
 | |
|                 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
 | |
|                 ('title', models.CharField(max_length=100)),
 | |
|                 ('date_created', models.DateTimeField(default=django.utils.timezone.now)),
 | |
|             ],
 | |
|         ),
 | |
|     ]
 | 
