0002_product.py 817 B

1234567891011121314151617181920212223242526272829
  1. # Generated by Django 5.0 on 2023-12-26 05:28
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ("main", "0001_initial"),
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name="Product",
  10. fields=[
  11. (
  12. "id",
  13. models.BigAutoField(
  14. auto_created=True,
  15. primary_key=True,
  16. serialize=False,
  17. verbose_name="ID",
  18. ),
  19. ),
  20. ("name", models.CharField(max_length=100)),
  21. ("photo", models.ImageField(blank=True, upload_to="photos/")),
  22. ("date", models.DateField(auto_now=True)),
  23. ],
  24. ),
  25. ]