mirror of
				https://github.com/DerTyp7/tealcode-django-python.git
				synced 2025-10-30 20:57:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			897 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			897 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.2.9 on 2021-11-17 14:19
 | |
| 
 | |
| from django.db import migrations, models
 | |
| import django.db.models.deletion
 | |
| import django.utils.timezone
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     initial = True
 | |
| 
 | |
|     dependencies = [
 | |
|         ('main', '0008_alter_topic_output'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             name='View',
 | |
|             fields=[
 | |
|                 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
 | |
|                 ('ip', models.CharField(max_length=200)),
 | |
|                 ('date', models.DateTimeField(default=django.utils.timezone.now)),
 | |
|                 ('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='main.category')),
 | |
|                 ('topic', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='main.topic')),
 | |
|             ],
 | |
|         ),
 | |
|     ]
 | 
