event timeline
This commit is contained in:
commit
fc1a929428
53 changed files with 806 additions and 0 deletions
24
app/page/migrations/0001_initial.py
Normal file
24
app/page/migrations/0001_initial.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Generated by Django 3.2.9 on 2021-11-12 15:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Page',
|
||||
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)),
|
||||
('body', models.TextField(blank=True, null=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue