added support for movie search
This commit is contained in:
parent
3117bac8a9
commit
29f0e73c0b
18 changed files with 198 additions and 32 deletions
18
movie_manager/migrations/0007_alter_movie_critic_score.py
Normal file
18
movie_manager/migrations/0007_alter_movie_critic_score.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.1.4 on 2025-04-12 04:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('movie_manager', '0006_remove_showing_slug_schedule_slug'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='movie',
|
||||
name='critic_score',
|
||||
field=models.CharField(blank=True, max_length=500, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue