19 lines
494 B
Python
19 lines
494 B
Python
|
|
# Generated by Django 6.0 on 2026-05-08 21:42
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('billboard', '0002_brief'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='post',
|
||
|
|
name='kind',
|
||
|
|
field=models.CharField(choices=[('note_unlock', 'Note unlocks'), ('user_post', 'User post'), ('share_invite', 'Share invites')], default='user_post', max_length=32),
|
||
|
|
),
|
||
|
|
]
|