27 lines
895 B
Python
27 lines
895 B
Python
# Generated by Django 3.2.9 on 2021-11-12 14:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Event',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('modified', models.DateTimeField(auto_now=True)),
|
|
('slug', models.SlugField(blank=True, unique=True)),
|
|
('title', models.TextField(blank=True)),
|
|
('body', models.TextField(blank=True, null=True)),
|
|
('date', models.TextField(blank=True, null=True)),
|
|
('data', models.JSONField(blank=True, default=dict)),
|
|
],
|
|
),
|
|
]
|