mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 12:57:07 +01:00
added views and admin security
This commit is contained in:
25
TealCode/analytics/migrations/0005_auto_20211118_0827.py
Normal file
25
TealCode/analytics/migrations/0005_auto_20211118_0827.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.9 on 2021-11-18 07:27
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0008_alter_topic_output'),
|
||||
('analytics', '0004_auto_20211118_0826'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='view',
|
||||
name='category',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='main.category'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='view',
|
||||
name='topic',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='main.topic'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user