26 lines
789 B
Python
26 lines
789 B
Python
# Generated by Django 5.2.7 on 2026-03-12 23:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Product',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=200)),
|
|
('description', models.TextField()),
|
|
('price', models.DecimalField(decimal_places=2, max_digits=10)),
|
|
('image', models.ImageField(blank=True, null=True, upload_to='products/')),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|