35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Generated by Django 4.2.17 on 2025-01-07 10:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Category',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=100)),
|
|
('description', models.TextField()),
|
|
('image', models.ImageField(upload_to='items_categories/')),
|
|
('is_active', models.BooleanField(default=True)),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Item',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=100)),
|
|
('description', models.TextField()),
|
|
('price', models.DecimalField(decimal_places=2, max_digits=5)),
|
|
('image', models.ImageField(upload_to='items/')),
|
|
('is_active', models.BooleanField(default=True)),
|
|
],
|
|
),
|
|
]
|