timelaps-api/music/models.py
2019-04-18 00:58:59 +02:00

12 lines
306 B
Python

from django.db import models
class Songs(models.Model):
# song title
title = models.CharField(max_length=255, null=False)
# name of artist or group/band
artist = models.CharField(max_length=255, null=False)
def __str__(self):
return "{} - {}".format(self.title, self.artist)