31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Generated by Django 4.2.23 on 2025-08-21 07:44
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('council', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Vote',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=255)),
|
|
('description', models.TextField(blank=True)),
|
|
('date', models.DateField(blank=True, null=True)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('members', models.ManyToManyField(blank=True, related_name='votes', to='council.member')),
|
|
('public_body', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='votes', to='council.publicbody')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Abstimmung',
|
|
'verbose_name_plural': 'Abstimmungen',
|
|
'ordering': ['-date', '-created_at'],
|
|
},
|
|
),
|
|
]
|