39161-vm/backend/core/migrations/0001_initial.py
Flatlogic Bot d8fd7aae82 version 2
2026-03-13 01:41:36 +00:00

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)),
],
),
]