18 lines
440 B
Python
18 lines
440 B
Python
# Generated by Django 4.1.5 on 2023-01-15 16:10
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('watchlist', '0003_alter_movie_options_alter_movie_suggested_by'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='movie',
|
|
options={'permissions': [('moderate_movies', "Can edit other's movies and mark them as watched")]},
|
|
),
|
|
]
|