22 lines
606 B
Python
22 lines
606 B
Python
# Generated by Django 2.2.7 on 2020-01-13 10:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0005_auto_20191125_1421'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Content',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('text', models.CharField(blank=True, max_length=5000, null=True)),
|
|
('content_type', models.CharField(max_length=100)),
|
|
],
|
|
),
|
|
]
|