19 lines
431 B
Python
19 lines
431 B
Python
|
# Generated by Django 4.0.3 on 2022-07-13 01:56
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('myapi', '0004_film_imdb_id_film_tmdb_id_alter_film_movie_format'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='film',
|
||
|
name='facebook_event_link',
|
||
|
field=models.URLField(blank=True, null=True),
|
||
|
),
|
||
|
]
|