mock create drawing

This commit is contained in:
XIE7654
2025-07-21 22:22:32 +08:00
parent 816668530c
commit 71d5053b9c
19 changed files with 504 additions and 43 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.2.1 on 2025-07-21 13:24
from django.conf import settings
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("ai", "0005_image"),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.RenameModel(
old_name="Image",
new_name="Drawing",
),
migrations.AlterModelTable(
name="drawing",
table="ai_drawing",
),
]