12 lines
306 B
Python
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)
|