1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 4.2.2 on 2023-06-30 12:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('deals', '0010_alter_deal_discount_percent_str'),
]
operations = [
migrations.CreateModel(
name='Brand',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=200)),
],
options={
'ordering': ('name',),
},
),
]
|