You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
533 B
17 lines
533 B
from django.db import models |
|
|
|
|
|
class Musician(models.Model): |
|
first_name = models.CharField(max_length=50) |
|
last_name = models.CharField(max_length=50) |
|
instrument = models.CharField(max_length=100) |
|
|
|
def __str__(self): |
|
return self.first_name |
|
|
|
|
|
class Album(models.Model): |
|
artist = models.ForeignKey(Musician, on_delete=models.CASCADE, related_name='album_musician', null=True, blank=True) |
|
name = models.CharField(max_length=100) |
|
release_date = models.DateField() |
|
num_stars = models.IntegerField()
|
|
|