Created the Song model #2

This commit is contained in:
amazing-username
2019-02-06 19:11:39 -05:00
parent 23368a3cc3
commit b54bcf3368
+6 -1
View File
@@ -1,3 +1,8 @@
from django.db import models from django.db import models
# Create your models here. class Song(models.Models):
title = models.CharField(max_length=70)
albumn = models.CharField(max_length=70)
year = models.IntegerField()
genre = models.CharField(max_length=70)
track_number = models.IntegerField()