1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Generated by Django 4.2.2 on 2023-06-29 17:07 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('deals', '0004_alter_deal_discount_percent'), ] operations = [ migrations.AddField( model_name='deal', name='discount_percent_num', field=models.FloatField(null=True), ), ]