8 lines
294 B
Python
8 lines
294 B
Python
from django.db import models
|
|
|
|
|
|
class Message(models.Model):
|
|
id = models.IntegerField(primary_key=True)
|
|
data = models.CharField(db_column='data', max_length=3000)
|
|
time = models.CharField(db_column='time', max_length=3000)
|
|
icon = models.CharField(db_column='icon', max_length=100) |