feat(workspaces): add thumbnail upload and lifecycle support
This commit is contained in:
@@ -9,6 +9,7 @@ User = get_user_model()
|
||||
class Workspace(BaseModel):
|
||||
name = models.CharField(max_length=255)
|
||||
description = models.TextField(blank=True)
|
||||
thumbnail = models.ImageField(upload_to="profile/workspaces/", blank=True, null=True)
|
||||
owner = models.ForeignKey(
|
||||
User,
|
||||
on_delete=models.PROTECT,
|
||||
|
||||
Reference in New Issue
Block a user