source detail page

This commit is contained in:
meeb
2020-11-28 14:41:17 +11:00
parent 22d040bc8f
commit b347959083
13 changed files with 268 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2020-11-27 08:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sync', '0002_auto_20201126_0504'),
]
operations = [
migrations.AlterField(
model_name='source',
name='key',
field=models.CharField(db_index=True, help_text='Source key, such as exact YouTube channel name or playlist ID', max_length=100, unique=True, verbose_name='key'),
),
]

View File

@@ -0,0 +1,17 @@
# Generated by Django 3.1.3 on 2020-11-28 03:11
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('sync', '0003_auto_20201127_0838'),
]
operations = [
migrations.RemoveField(
model_name='source',
name='url',
),
]