From 079a7d39257c344db0816b37e521b0042a50a7c8 Mon Sep 17 00:00:00 2001 From: SDE Date: Sun, 2 Jun 2024 17:10:56 +0300 Subject: [PATCH] 1.1.5 rising and select for routes by subscribe --- ...oruser_used_route_rising_count_and_more.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 SubscribesApp/migrations/0004_subscribeforuser_used_route_rising_count_and_more.py diff --git a/SubscribesApp/migrations/0004_subscribeforuser_used_route_rising_count_and_more.py b/SubscribesApp/migrations/0004_subscribeforuser_used_route_rising_count_and_more.py new file mode 100644 index 0000000..a9d86fa --- /dev/null +++ b/SubscribesApp/migrations/0004_subscribeforuser_used_route_rising_count_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.2.2 on 2024-06-02 12:58 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('SubscribesApp', '0003_alter_subscribe_bg_color_alter_subscribe_text_color'), + ] + + operations = [ + migrations.AddField( + model_name='subscribeforuser', + name='used_route_rising_count', + field=models.IntegerField(default=0, verbose_name='Использовано поднятий объявлений'), + ), + migrations.AddField( + model_name='subscribeforuser', + name='used_route_select_count', + field=models.IntegerField(default=0, verbose_name='Использовано выделений объявлений'), + ), + migrations.AddField( + model_name='subscribeoption', + name='allow_route_rising_count', + field=models.IntegerField(default=0, verbose_name='Количество поднятий объявлений'), + ), + migrations.AddField( + model_name='subscribeoption', + name='allow_route_select_count', + field=models.IntegerField(default=0, verbose_name='Количество выделений объявлений'), + ), + ]