6 lines
230 B
Python
6 lines
230 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) |