Commit 198d04f3 authored by Migs Atienza's avatar Migs Atienza

Updated Models + Migrated

parent 952bc7ea
# Generated by Django 4.1.6 on 2023-02-21 13:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0002_album_label_album_song_count_artist_bio_and_more'),
]
operations = [
migrations.AlterField(
model_name='song',
name='lyrics',
field=models.TextField(default='', max_length=2500),
),
]
......@@ -23,5 +23,5 @@ class Song(models.Model):
album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.TimeField()
music_video = models.BooleanField(default=False)
lyrics = models.CharField(max_length=2500, default="")
lyrics = models.TextField(max_length=2500, default="")
# Create your models here.
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