forked from beba/foerderbarometer
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
|
|
# Generated by Django 5.2.5 on 2025-10-16 13:15
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('input', '0101_wikimedia_project_categories_and_other'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.CreateModel(
|
||
|
|
name='ProjectDeclined',
|
||
|
|
fields=[
|
||
|
|
],
|
||
|
|
options={
|
||
|
|
'verbose_name': 'Projekt (abgelehnt)',
|
||
|
|
'verbose_name_plural': 'Projekte (abgelehnt)',
|
||
|
|
'proxy': True,
|
||
|
|
'indexes': [],
|
||
|
|
'constraints': [],
|
||
|
|
},
|
||
|
|
bases=('input.project',),
|
||
|
|
),
|
||
|
|
migrations.CreateModel(
|
||
|
|
name='ProjectRequest',
|
||
|
|
fields=[
|
||
|
|
],
|
||
|
|
options={
|
||
|
|
'verbose_name': 'Projekt (beantragt)',
|
||
|
|
'verbose_name_plural': 'Projekte (beantragt)',
|
||
|
|
'proxy': True,
|
||
|
|
'indexes': [],
|
||
|
|
'constraints': [],
|
||
|
|
},
|
||
|
|
bases=('input.project',),
|
||
|
|
),
|
||
|
|
migrations.AlterModelOptions(
|
||
|
|
name='project',
|
||
|
|
options={'verbose_name': 'Projekt', 'verbose_name_plural': 'Projekte'},
|
||
|
|
),
|
||
|
|
]
|