24 lines
651 B
Python
24 lines
651 B
Python
# Generated by Django 3.0 on 2020-09-25 07:13
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Message',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('content', models.TextField(blank=True, default='', verbose_name='Inhalt')),
|
|
('created_date', models.DateTimeField(blank=True, default=django.utils.timezone.now)),
|
|
],
|
|
),
|
|
]
|