blob: 62437d383173546bf892fb93214e886e50dbc0cf (
plain)
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 19:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('deals', '0007_rename_discount_percent_num_deal_discount_percent'),
]
operations = [
migrations.AlterField(
model_name='deal',
name='deal_price',
field=models.CharField(max_length=20, null=True),
),
]
|