rtc_backend/apps/badge/migrations/0001_initial.py
repair-agent fe0dcb78c3
All checks were successful
Build and Deploy Backend / build-and-deploy (push) Successful in 7m15s
Add 电子吧唧
2026-03-18 17:38:05 +08:00

36 lines
1.7 KiB
Python

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.CreateModel(
name='BadgeImage',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('prompt', models.TextField(blank=True, default='')),
('style', models.CharField(blank=True, default='', max_length=32)),
('source', models.CharField(choices=[('t2i', '文生图'), ('i2i', '图生图'), ('upload', '用户上传')], default='t2i', max_length=10)),
('image_url', models.URLField(blank=True, default='', max_length=500)),
('reference_image_url', models.URLField(blank=True, default='', max_length=500)),
('strength', models.FloatField(default=0.7)),
('generation_status', models.CharField(choices=[('pending', '待生成'), ('generating', '生成中'), ('completed', '已完成'), ('failed', '失败')], default='pending', max_length=20)),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='badge_images', to=settings.AUTH_USER_MODEL)),
],
options={
'db_table': 'badge_image',
'ordering': ['-created_at'],
},
),
]