First Commit
This commit is contained in:
commit
ce0758fbbb
496 changed files with 52062 additions and 0 deletions
18
posts/migrations/0004_post_forum_link.py
Executable file
18
posts/migrations/0004_post_forum_link.py
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 4.2.16 on 2024-10-23 11:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("posts", "0003_alter_category_options_alter_post_options_post_slug"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="post",
|
||||
name="forum_link",
|
||||
field=models.CharField(blank=True, max_length=200, null=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue