You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
# Generated by Django 4.2.7 on 2026-07-04 15:06 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('ai', '0014_airuntime'), |
|
] |
|
|
|
operations = [ |
|
migrations.CreateModel( |
|
name='MovieHotInfo', |
|
fields=[ |
|
('id', models.AutoField(primary_key=True, serialize=False)), |
|
('movie_zz_code', models.CharField(max_length=50)), |
|
('movie_name', models.CharField(max_length=50)), |
|
('req_date', models.DateField()), |
|
('api_response', models.TextField()), |
|
('wants', models.CharField(max_length=50)), |
|
('hots', models.CharField(max_length=50)), |
|
('day_1', models.CharField(max_length=50)), |
|
('day_2', models.CharField(max_length=50)), |
|
('day_3', models.CharField(max_length=50)), |
|
('day_4', models.CharField(max_length=50)), |
|
('day_5', models.CharField(max_length=50)), |
|
], |
|
options={ |
|
'verbose_name': 'AI影片热度信息', |
|
'verbose_name_plural': 'AI影片热度信息', |
|
'db_table': 'ai_movie_hot', |
|
}, |
|
), |
|
]
|
|
|