1234567891011121314151617181920212223242526272829 |
- # Generated by Django 5.0 on 2023-12-26 05:28
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ("main", "0001_initial"),
- ]
- 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=100)),
- ("photo", models.ImageField(blank=True, upload_to="photos/")),
- ("date", models.DateField(auto_now=True)),
- ],
- ),
- ]
|