Fixed multiple problems related to migration to django-preferences.

This commit is contained in:
2018-12-29 23:16:04 +02:00
parent 10fced57e1
commit 2c93e50406
12 changed files with 77 additions and 40 deletions

View File

@ -0,0 +1,25 @@
# Generated by Django 2.1.2 on 2018-12-29 20:35
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('YtManagerApp', '0007_auto_20181029_1638'),
]
operations = [
migrations.RemoveField(
model_name='usersettings',
name='user',
),
migrations.RenameField(
model_name='subscription',
old_name='delete_after_watched',
new_name='automatically_delete_watched',
),
migrations.DeleteModel(
name='UserSettings',
),
]