24 lines
628 B
Python
24 lines
628 B
Python
# Generated by Django 3.1.7 on 2021-06-29 16:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Message',
|
|
fields=[
|
|
('id', models.IntegerField(primary_key=True, serialize=False)),
|
|
('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)),
|
|
],
|
|
),
|
|
]
|