mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-18 21:14:05 +01:00
19 lines
410 B
Python
19 lines
410 B
Python
# Generated by Django 4.2.4 on 2023-09-15 07:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('polls', '0014_remove_question_down_vote_count_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='question',
|
|
name='trend_score',
|
|
field=models.FloatField(default=0.0),
|
|
),
|
|
]
|