A očividně nevygeneroval migraci k přepsání stringů u Hlasovani.Body v commitu e933c697
This commit is contained in:
parent
1719e8be9a
commit
cb14e4a91e
1 changed files with 18 additions and 0 deletions
18
prednasky/migrations/0020_alter_hlasovani_body.py
Normal file
18
prednasky/migrations/0020_alter_hlasovani_body.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 4.2.16 on 2025-01-24 20:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('prednasky', '0019_znalost_hlasovanioznalostech'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='hlasovani',
|
||||
name='body',
|
||||
field=models.IntegerField(choices=[(-1, 'rozhodně nechci'), (0, 'je mi to jedno'), (1, 'rozhodně chci')], default=0, verbose_name='Body'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue