added files and other stuff

This commit is contained in:
Alexander Schulz
2024-08-30 17:53:44 +02:00
parent 144263cf8c
commit 4ee5f645e4
136 changed files with 32073 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Generated by Django 5.1 on 2024-08-30 15:31
import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('post', '0007_remove_post_author'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AddField(
model_name='post',
name='author',
field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL),
),
]