mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-11 07:23:33 +01:00
20 lines
451 B
Python
20 lines
451 B
Python
# Generated by Django 5.2.6 on 2025-10-09 17:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("feeds", "0004_mention"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="post",
|
|
name="group",
|
|
field=models.CharField(
|
|
blank=True, help_text="Group name (GROUP property)", max_length=100
|
|
),
|
|
),
|
|
]
|