21 lines
522 B
Python
21 lines
522 B
Python
# Generated by Django 3.0 on 2021-03-26 11:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('adm', '0006_auto_20210219_1025'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AGBLog',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('entry', models.CharField(default='', max_length=5000)),
|
|
],
|
|
),
|
|
]
|