6 lines
220 B
Python
6 lines
220 B
Python
from django.db import models
|
|
from apps.user.models import User
|
|
|
|
class Author(models.Model):
|
|
user = models.ForeignKey(User, on_delete=models.CASCADE, related_name="authors")
|
|
name = models.CharField(max_length=255) |