2018-10-13 20:01:45 +00:00
|
|
|
# Generated by Django 2.1.2 on 2018-10-11 00:19
|
2018-10-04 11:36:11 +00:00
|
|
|
|
2018-10-13 20:01:45 +00:00
|
|
|
from django.conf import settings
|
2018-10-04 11:36:11 +00:00
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
dependencies = [
|
2018-10-13 20:01:45 +00:00
|
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
2018-10-04 11:36:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2018-10-13 20:01:45 +00:00
|
|
|
migrations.CreateModel(
|
|
|
|
name='Channel',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
('channel_id', models.TextField(unique=True)),
|
|
|
|
('username', models.TextField(null=True, unique=True)),
|
|
|
|
('custom_url', models.TextField(null=True, unique=True)),
|
|
|
|
('name', models.TextField()),
|
|
|
|
('description', models.TextField()),
|
|
|
|
('icon_default', models.TextField()),
|
|
|
|
('icon_best', models.TextField()),
|
|
|
|
('upload_playlist_id', models.TextField()),
|
|
|
|
],
|
|
|
|
),
|
2018-10-04 11:36:11 +00:00
|
|
|
migrations.CreateModel(
|
|
|
|
name='Subscription',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
('name', models.TextField()),
|
2018-10-13 20:01:45 +00:00
|
|
|
('playlist_id', models.TextField(unique=True)),
|
|
|
|
('description', models.TextField()),
|
|
|
|
('icon_default', models.TextField()),
|
|
|
|
('icon_best', models.TextField()),
|
|
|
|
('auto_download', models.BooleanField(null=True)),
|
|
|
|
('download_limit', models.IntegerField(null=True)),
|
|
|
|
('download_order', models.TextField(null=True)),
|
|
|
|
('manager_delete_after_watched', models.BooleanField(null=True)),
|
|
|
|
('channel', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='YtManagerApp.Channel')),
|
2018-10-04 11:36:11 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='SubscriptionFolder',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
('name', models.TextField()),
|
2018-10-13 20:01:45 +00:00
|
|
|
('parent', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='YtManagerApp.SubscriptionFolder')),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='UserSettings',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
('mark_deleted_as_watched', models.BooleanField(null=True)),
|
|
|
|
('delete_watched', models.BooleanField(null=True)),
|
|
|
|
('auto_download', models.BooleanField(null=True)),
|
|
|
|
('download_global_limit', models.IntegerField(null=True)),
|
|
|
|
('download_subscription_limit', models.IntegerField(null=True)),
|
|
|
|
('download_order', models.TextField(null=True)),
|
|
|
|
('download_path', models.TextField(null=True)),
|
|
|
|
('download_file_pattern', models.TextField(null=True)),
|
|
|
|
('download_format', models.TextField(null=True)),
|
|
|
|
('download_subtitles', models.BooleanField(null=True)),
|
|
|
|
('download_autogenerated_subtitles', models.BooleanField(null=True)),
|
|
|
|
('download_subtitles_all', models.BooleanField(null=True)),
|
|
|
|
('download_subtitles_langs', models.TextField(null=True)),
|
|
|
|
('download_subtitles_format', models.TextField(null=True)),
|
|
|
|
('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='Video',
|
|
|
|
fields=[
|
|
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
|
('video_id', models.TextField()),
|
|
|
|
('name', models.TextField()),
|
|
|
|
('description', models.TextField()),
|
|
|
|
('watched', models.BooleanField(default=False)),
|
|
|
|
('downloaded_path', models.TextField(blank=True, null=True)),
|
|
|
|
('playlist_index', models.IntegerField()),
|
|
|
|
('publish_date', models.DateTimeField()),
|
|
|
|
('icon_default', models.TextField()),
|
|
|
|
('icon_best', models.TextField()),
|
|
|
|
('subscription', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='YtManagerApp.Subscription')),
|
2018-10-04 11:36:11 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='subscription',
|
|
|
|
name='parent_folder',
|
2018-10-13 20:01:45 +00:00
|
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='YtManagerApp.SubscriptionFolder'),
|
|
|
|
),
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='subscription',
|
|
|
|
name='user',
|
|
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL),
|
2018-10-04 11:36:11 +00:00
|
|
|
),
|
|
|
|
]
|