changed lyrics to TextField and updated README

parent c48508cc
# Generated by Django 3.2 on 2023-02-21 05:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('homepage', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='song',
name='lyrics',
field=models.TextField(),
),
]
...@@ -21,4 +21,4 @@ class Song(models.Model): ...@@ -21,4 +21,4 @@ class Song(models.Model):
album = models.ForeignKey(Album, on_delete=models.CASCADE) album = models.ForeignKey(Album, on_delete=models.CASCADE)
song_length = models.IntegerField(default=0) song_length = models.IntegerField(default=0)
music_video = models.BooleanField(default=False) music_video = models.BooleanField(default=False)
lyrics = models.CharField(max_length=3000) lyrics = models.TextField()
\ No newline at end of file \ No newline at end of file
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