24 lines
908 B
Python
24 lines
908 B
Python
|
|
# Generated by Django 6.0 on 2026-05-26 19:44
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('billboard', '0007_brief_room_alter_brief_kind_alter_brief_post'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='brief',
|
||
|
|
name='kind',
|
||
|
|
field=models.CharField(choices=[('note_unlock', 'Note unlock'), ('user_post', 'User post'), ('share_invite', 'Share invite'), ('game_invite', 'Game invite'), ('tax_ledger', 'Tax ledger')], default='user_post', max_length=32),
|
||
|
|
),
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='post',
|
||
|
|
name='kind',
|
||
|
|
field=models.CharField(choices=[('note_unlock', 'Note unlocks'), ('user_post', 'User post'), ('share_invite', 'Share invites'), ('tax_ledger', 'Debits & credits')], default='user_post', max_length=32),
|
||
|
|
),
|
||
|
|
]
|