Files
timelaps-api/music/models.py
bglacial 31d5f7ade4 First commit of the V2.
New base, new info.
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)