37051-vm/core/migrations/0002_post_intent.py
Flatlogic Bot bfe98de2d1 faded
2025-12-18 23:08:12 +00:00

19 lines
387 B
Python

# Generated by Django 5.2.7 on 2025-12-18 18:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='post',
name='intent',
field=models.CharField(default='Neutral', max_length=50),
),
]