- Update food, outfits, props, home-decor pages and components - Add permissions page and sidebar updates - Update API client and all API modules (auth, food, dances, etc.) - Add card model migrations for optional fields - Update Django views, serializers, and authentication - Add affinity level migrations and user app updates - Add project documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Generated by Django 5.2.12 on 2026-03-19 06:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('card', '0009_alter_songattributes_bpm'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='propattributes',
|
|
name='durability',
|
|
field=models.CharField(blank=True, default='', max_length=50, verbose_name='耐久度'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='propattributes',
|
|
name='material',
|
|
field=models.CharField(blank=True, default='', max_length=100, verbose_name='材质'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='propattributes',
|
|
name='prop_type',
|
|
field=models.CharField(blank=True, default='', max_length=50, verbose_name='道具类型'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='propattributes',
|
|
name='size',
|
|
field=models.CharField(blank=True, default='', max_length=50, verbose_name='尺寸'),
|
|
),
|
|
]
|