20 lines
780 B
Python
20 lines
780 B
Python
|
# Generated by Django 4.2.4 on 2023-08-17 11:08
|
||
|
|
||
|
from django.db import migrations
|
||
|
import multiselectfield.db.fields
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('evapp', '0004_alter_employee_accounts_alter_employee_department'),
|
||
|
]
|
||
|
|
||
|
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=40, null=True, verbose_name='Zusätzliche Accounts'),
|
||
|
),
|
||
|
]
|