diff --git a/osinaweb/osichat/__pycache__/models.cpython-310.pyc b/osinaweb/osichat/__pycache__/models.cpython-310.pyc index fbf663c3..1eb2f9e3 100644 Binary files a/osinaweb/osichat/__pycache__/models.cpython-310.pyc and b/osinaweb/osichat/__pycache__/models.cpython-310.pyc differ diff --git a/osinaweb/osichat/models.py b/osinaweb/osichat/models.py index 8427f721..5509fdcf 100644 --- a/osinaweb/osichat/models.py +++ b/osinaweb/osichat/models.py @@ -211,9 +211,6 @@ class VisitorLog(models.Model): ) - - - class ChatRoom(models.Model): name = models.CharField(max_length=300) created_by = models.ForeignKey(User, null=True, on_delete=models.SET_NULL, blank=True) @@ -331,10 +328,6 @@ class ChatMessage(models.Model): ) - - - - class ChatMessageAttachment(models.Model): message = models.OneToOneField(ChatMessage, on_delete=models.CASCADE) attachment = models.TextField()