Commit 6962f769 authored by RJC's avatar RJC

PEP 8 for admin.py

parent 2ce13595
File added
# Generated by Django 3.2 on 2023-02-21 10:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0002_song_song_length'),
]
operations = [
migrations.AddField(
model_name='album',
name='label',
field=models.CharField(max_length=255, null=True),
),
migrations.AddField(
model_name='album',
name='song_count',
field=models.IntegerField(null=True),
),
migrations.AddField(
model_name='artist',
name='bio',
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name='artist',
name='birth_name',
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name='song',
name='lyrics',
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name='song',
name='music_video',
field=models.BooleanField(null=True),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment