0001_initial.py 1021 B

123456789101112131415161718192021222324252627
  1. # Generated by Django 5.2.7 on 2025-10-17 10:21
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name='Product',
  10. fields=[
  11. ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  12. ('item_id', models.CharField(max_length=100, unique=True)),
  13. ('product_name', models.CharField(max_length=255)),
  14. ('product_long_description', models.TextField(blank=True, null=True)),
  15. ('product_short_description', models.TextField(blank=True, null=True)),
  16. ('product_type', models.CharField(blank=True, max_length=100, null=True)),
  17. ('image_path', models.CharField(blank=True, max_length=500, null=True)),
  18. ('image', models.ImageField(blank=True, null=True, upload_to='products/')),
  19. ],
  20. ),
  21. ]