From da32c934e77e49f5677d5be6acaffc7bd86d16eb Mon Sep 17 00:00:00 2001 From: rogersun Date: Thu, 9 Jul 2026 18:34:54 +0800 Subject: [PATCH] =?UTF-8?q?ai=E6=8E=92=E7=89=87=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=96=B0=E7=89=87=E6=8E=A8=E8=8D=90=E6=8E=92=E7=89=87=E6=95=B0?= =?UTF-8?q?=E9=87=8F=E7=9A=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ai/migrations/0021_newmoviesuggestion.py | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ai/migrations/0021_newmoviesuggestion.py diff --git a/ai/migrations/0021_newmoviesuggestion.py b/ai/migrations/0021_newmoviesuggestion.py new file mode 100644 index 0000000..4be7db0 --- /dev/null +++ b/ai/migrations/0021_newmoviesuggestion.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.7 on 2026-07-09 10:12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ai', '0020_moviehotinfo_show_type'), + ] + + operations = [ + migrations.CreateModel( + name='NewMovieSuggestion', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('movie_zz_code', models.CharField(max_length=50)), + ('movie_name', models.CharField(max_length=50)), + ('suggestion', models.CharField(max_length=50)), + ('delete_flag', models.BooleanField(default=False)), + ], + options={ + 'verbose_name': '新片推荐排片数', + 'verbose_name_plural': '新片推荐排片数', + 'db_table': 'ai_new_movie_suggestion', + }, + ), + ]