19 lines
615 B
Python
19 lines
615 B
Python
# Generated by Django 5.1.5 on 2025-05-23 09:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('daren_detail', '0002_remove_creatorprofile_pricing_max_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='privatecreatorrelation',
|
|
name='status',
|
|
field=models.CharField(choices=[('active', '活跃'), ('archived', '已归档'), ('favorite', '收藏'), ('public_removed', '公有库已移除')], default='active', max_length=20, verbose_name='状态'),
|
|
),
|
|
]
|