29 lines
1018 B
Python
29 lines
1018 B
Python
# Generated by Django 2.2.7 on 2019-12-09 17:02
|
|
|
|
import ckeditor_uploader.fields
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Standards',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(default='', max_length=200)),
|
|
('content', ckeditor_uploader.fields.RichTextUploadingField(blank=True, verbose_name='Inhalt')),
|
|
('created_standard_date', models.DateField(blank=True, default=datetime.date.today)),
|
|
('published_on', models.DateField(blank=True, default=datetime.date.today)),
|
|
('last_modified_on', models.DateField(blank=True, default=datetime.date.today)),
|
|
('public', models.BooleanField(default=False)),
|
|
],
|
|
),
|
|
]
|