25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
|
# Generated by Django 4.2.4 on 2023-08-11 10:28
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import multiselectfield.db.fields
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('evapp', '0003_auto_20220208_0955'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='employee',
|
||
|
name='accounts',
|
||
|
field=multiselectfield.db.fields.MultiSelectField(blank=True, choices=[('OTRSWMDE', 'OTRS Ticketsystem'), ('CIVIC1', 'Civic CRM (allgemein)'), ('CIVIC2', 'Civic CRM (Mailings, impliziert allgemein)'), ('WEB', 'www.wikimedia.de (edit)'), ('BLOG', 'blog.wikimedia.de (edit)'), ('FORUM', 'forum.wikimedia.de')], max_length=10, null=True, verbose_name='Zusätzliche Accounts'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='employee',
|
||
|
name='department',
|
||
|
field=models.CharField(choices=[('COENG', 'Communitys & Engagement'), ('SOFT', 'Softwareentwicklung'), ('CENT', 'Central'), ('KOMAD', 'Kommunikation & Advocacy'), ('VOR', 'Vorstand')], max_length=5, verbose_name='Bereich'),
|
||
|
),
|
||
|
]
|