19 lines
564 B
Python
19 lines
564 B
Python
# Generated by Django 2.2.24 on 2021-11-29 10:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('basicknowledge', '0013_auto_20211110_1140'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='basicknowledge',
|
|
name='old_type',
|
|
field=models.CharField(blank=True, choices=[('language_communication', 'Sprache & Kommunikation'), ('society', 'Gesellschaft'), ('interdisciplinary', 'Überfachliches Instrument')], max_length=100),
|
|
),
|
|
]
|