forked from beba/foerderbarometer
24 lines
579 B
Python
24 lines
579 B
Python
# Generated by Django 3.2.5 on 2021-07-08 05:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('input', '0062_auto_20210707_1314'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='accounts',
|
|
old_name='acc',
|
|
new_name='code',
|
|
),
|
|
migrations.AddField(
|
|
model_name='accounts',
|
|
name='description',
|
|
field=models.CharField(default='NO DESCRIPTION', max_length=30, verbose_name='Beschreibung'),
|
|
),
|
|
]
|