Files
Simple_Drawing/pages/models.py
2021-09-07 23:12:03 +08:00

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)